1
0
mirror of https://github.com/moparisthebest/mail synced 2025-01-11 05:28:00 -05:00

[WO-264] fix css transition flickering in editor

This commit is contained in:
Tankred Hase 2014-04-22 11:54:08 +02:00
parent 0031d27abd
commit c6c53a67dc

View File

@ -21,6 +21,7 @@
height: 100%;
padding: $lightbox-padding;
background: #fff;
backface-visibility: hidden;
header {
text-align: center;
position: relative;
@ -77,11 +78,9 @@
// effect
.lightbox-effect .lightbox-body {
transform: scale(0.7);
opacity: 0;
transition: all 0.3s;
}
.lightbox-overlay.show .lightbox-effect .lightbox-body {
transform: scale(1);
opacity: 1;
}