No transition delay for mail, fixes the splitter right panel overflows the left panel

This commit is contained in:
Hadi Nategh 2015-10-01 08:27:44 +00:00
parent c4861e1194
commit 9d7a566966
2 changed files with 17 additions and 1 deletions

View File

@ -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;
}

View File

@ -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;
}