forked from extern/egroupware
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 {
|
||||
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 {
|
||||
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…
Reference in New Issue
Block a user