From 7c5ab68b46b43f4b6d7de1aa4b4190a33e1f952e Mon Sep 17 00:00:00 2001
From: Hadi Nategh <hn@stylite.de>
Date: Mon, 5 Oct 2015 09:38:57 +0000
Subject: [PATCH] Do not stop completely the transition on mail as it conflicts
 with blueimp gallery plugin (expose)

---
 mail/templates/pixelegg/app.css  | 12 +++++++-----
 mail/templates/pixelegg/app.less | 12 +++++++-----
 2 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/mail/templates/pixelegg/app.css b/mail/templates/pixelegg/app.css
index 3558647cc7..baa069b8ce 100755
--- a/mail/templates/pixelegg/app.css
+++ b/mail/templates/pixelegg/app.css
@@ -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;
 }
diff --git a/mail/templates/pixelegg/app.less b/mail/templates/pixelegg/app.less
index d6339d5ce4..e6dd58c1de 100755
--- a/mail/templates/pixelegg/app.less
+++ b/mail/templates/pixelegg/app.less
@@ -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;
 }
\ No newline at end of file