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:32:40 +00:00
parent ce637ac759
commit 423d0a90b5
2 changed files with 17 additions and 1 deletions

View File

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

View File

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