mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-24 20:01:36 +02:00
No transition delay for mail, fixes the splitter right panel overflows the left panel
This commit is contained in:
parent
ce637ac759
commit
423d0a90b5
@ -2593,3 +2593,11 @@ div.mailDisplayHeaders div.mail_extraEmails.visible {
|
|||||||
div.mailComposeHeaderSection > table {
|
div.mailComposeHeaderSection > table {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
|
/* transition delay breaks splitter resize, because it doesn't get the right height
|
||||||
|
in a right time. So we reduce the delay to 0 to fix the timing issue.*/
|
||||||
|
:hover {
|
||||||
|
-webkit-transition: all 0s ease-out;
|
||||||
|
-moz-transition: all 0s ease-out;
|
||||||
|
-o-transition: all 0s ease-out;
|
||||||
|
transition: all 0s ease-out;
|
||||||
|
}
|
||||||
|
@ -1722,4 +1722,12 @@ div.mailDisplayHeaders div.mail_extraEmails.visible {
|
|||||||
div.mailComposeHeaderSection > table {
|
div.mailComposeHeaderSection > table {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
//
|
|
||||||
|
/* transition delay breaks splitter resize, because it doesn't get the right height
|
||||||
|
in a right time. So we reduce the delay to 0 to fix the timing issue.*/
|
||||||
|
:hover {
|
||||||
|
-webkit-transition: all 0s ease-out;
|
||||||
|
-moz-transition: all 0s ease-out;
|
||||||
|
-o-transition: all 0s ease-out;
|
||||||
|
transition: all 0s ease-out;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user