Do not stop completely the transition on mail as it conflicts with blueimp gallery plugin (expose)

This commit is contained in:
Hadi Nategh 2015-10-05 09:38:57 +00:00
parent 3060ed0915
commit 7c5ab68b46
2 changed files with 14 additions and 10 deletions

View File

@ -2617,10 +2617,12 @@ 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.*/
in a right time. So we reduce the delay to 0.1 to fix the timing issue.
The delay should not be set to 0 or none because it wil conflict with blueimp gallery plugin (Expose).
*/
:hover {
-webkit-transition: all 0s ease-out;
-moz-transition: all 0s ease-out;
-o-transition: all 0s ease-out;
transition: all 0s ease-out;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}

View File

@ -1727,10 +1727,12 @@ div.mailComposeHeaderSection > table {
}
/* 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.*/
in a right time. So we reduce the delay to 0.1 to fix the timing issue.
The delay should not be set to 0 or none because it wil conflict with blueimp gallery plugin (Expose).
*/
:hover {
-webkit-transition: all 0s ease-out;
-moz-transition: all 0s ease-out;
-o-transition: all 0s ease-out;
transition: all 0s ease-out;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}