mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-18 20:51:23 +01:00
Do not stop completely the transition on mail as it conflicts with blueimp gallery plugin (expose)
This commit is contained in:
parent
968dcb8336
commit
022c273860
@ -2594,10 +2594,12 @@ div.mailComposeHeaderSection > table {
|
|||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
/* transition delay breaks splitter resize, because it doesn't get the right height
|
/* 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 {
|
:hover {
|
||||||
-webkit-transition: all 0s ease-out;
|
-webkit-transition: all 0.1s ease-out;
|
||||||
-moz-transition: all 0s ease-out;
|
-moz-transition: all 0.1s ease-out;
|
||||||
-o-transition: all 0s ease-out;
|
-o-transition: all 0.1s ease-out;
|
||||||
transition: all 0s ease-out;
|
transition: all 0.1s ease-out;
|
||||||
}
|
}
|
||||||
|
@ -1724,10 +1724,12 @@ div.mailComposeHeaderSection > table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* transition delay breaks splitter resize, because it doesn't get the right height
|
/* 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 {
|
:hover {
|
||||||
-webkit-transition: all 0s ease-out;
|
-webkit-transition: all 0.1s ease-out;
|
||||||
-moz-transition: all 0s ease-out;
|
-moz-transition: all 0.1s ease-out;
|
||||||
-o-transition: all 0s ease-out;
|
-o-transition: all 0.1s ease-out;
|
||||||
transition: all 0s ease-out;
|
transition: all 0.1s ease-out;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user