From 423d0a90b5aa67c58dbde4dd018c2ede8fa80b93 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Thu, 1 Oct 2015 08:32:40 +0000 Subject: [PATCH] No transition delay for mail, fixes the splitter right panel overflows the left panel --- mail/templates/pixelegg/app.css | 8 ++++++++ mail/templates/pixelegg/app.less | 10 +++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/mail/templates/pixelegg/app.css b/mail/templates/pixelegg/app.css index e1c806715d..ceb4088b3f 100755 --- a/mail/templates/pixelegg/app.css +++ b/mail/templates/pixelegg/app.css @@ -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; +} diff --git a/mail/templates/pixelegg/app.less b/mail/templates/pixelegg/app.less index dbd8103be6..4160b9f14a 100755 --- a/mail/templates/pixelegg/app.less +++ b/mail/templates/pixelegg/app.less @@ -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; +} \ No newline at end of file