mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 20:34:52 +00:00
FIX: use prefixes for CSS transform
This commit is contained in:
parent
7ca092da17
commit
0ce93f3b29
@ -647,13 +647,14 @@ button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.mfp-zoom-in {
|
.mfp-zoom-in {
|
||||||
/* start state */
|
/* start state */
|
||||||
.mfp-content {
|
.mfp-content {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: all 0.2s ease-in-out;
|
transition: all 0.2s ease-in-out;
|
||||||
transform: scale(0.8);
|
-webkit-transform: scale(0.8);
|
||||||
|
-ms-transform: scale(0.8);
|
||||||
|
transform: scale(0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.mfp-bg {
|
&.mfp-bg {
|
||||||
@ -665,7 +666,9 @@ button {
|
|||||||
&.mfp-ready {
|
&.mfp-ready {
|
||||||
.mfp-content {
|
.mfp-content {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: scale(1);
|
-webkit-transform: scale(1);
|
||||||
|
-ms-transform: scale(1);
|
||||||
|
transform: scale(1);
|
||||||
}
|
}
|
||||||
&.mfp-bg {
|
&.mfp-bg {
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
@ -676,7 +679,9 @@ button {
|
|||||||
&.mfp-removing {
|
&.mfp-removing {
|
||||||
|
|
||||||
.mfp-content {
|
.mfp-content {
|
||||||
transform: scale(0.8);
|
-webkit-transform: scale(0.8);
|
||||||
|
-ms-transform: scale(0.8);
|
||||||
|
transform: scale(0.8);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
&.mfp-bg {
|
&.mfp-bg {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user