diff --git a/mail/templates/pixelegg/app.css b/mail/templates/pixelegg/app.css index ceb4088b3f..5684868881 100755 --- a/mail/templates/pixelegg/app.css +++ b/mail/templates/pixelegg/app.css @@ -2594,10 +2594,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; } diff --git a/mail/templates/pixelegg/app.less b/mail/templates/pixelegg/app.less index 4160b9f14a..5793ef9f31 100755 --- a/mail/templates/pixelegg/app.less +++ b/mail/templates/pixelegg/app.less @@ -1724,10 +1724,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; } \ No newline at end of file