forked from extern/egroupware
No transition delay for mail, fixes the splitter right panel overflows the left panel
This commit is contained in:
parent
c4861e1194
commit
9d7a566966
@ -2616,3 +2616,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;
|
||||
}
|
||||
|
@ -1725,4 +1725,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