Merge "styles: Remove obsolete vendor prefixed properties"

This commit is contained in:
jenkins-bot 2021-03-29 20:06:25 +00:00 committed by Gerrit Code Review
commit ebe316d3f3
3 changed files with 0 additions and 22 deletions

View file

@ -37,7 +37,6 @@
.mwe-popups-translate( @x, @y ) { .mwe-popups-translate( @x, @y ) {
-webkit-transform: translate( @x, @y ); -webkit-transform: translate( @x, @y );
-moz-transform: translate( @x, @y );
-ms-transform: translate( @x, @y ); -ms-transform: translate( @x, @y );
transform: translate( @x, @y ); transform: translate( @x, @y );
} }
@ -48,10 +47,6 @@
.mwe-popups-fade-in-up-frames; .mwe-popups-fade-in-up-frames;
} }
@-moz-keyframes mwe-popups-fade-in-up {
.mwe-popups-fade-in-up-frames;
}
@keyframes mwe-popups-fade-in-up { @keyframes mwe-popups-fade-in-up {
.mwe-popups-fade-in-up-frames; .mwe-popups-fade-in-up-frames;
} }
@ -60,10 +55,6 @@
.mwe-popups-fade-in-down-frames; .mwe-popups-fade-in-down-frames;
} }
@-moz-keyframes mwe-popups-fade-in-down {
.mwe-popups-fade-in-down-frames;
}
@keyframes mwe-popups-fade-in-down { @keyframes mwe-popups-fade-in-down {
.mwe-popups-fade-in-down-frames; .mwe-popups-fade-in-down-frames;
} }
@ -72,10 +63,6 @@
.mwe-popups-fade-out-down-frames; .mwe-popups-fade-out-down-frames;
} }
@-moz-keyframes mwe-popups-fade-out-down {
.mwe-popups-fade-out-down-frames;
}
@keyframes mwe-popups-fade-out-down { @keyframes mwe-popups-fade-out-down {
.mwe-popups-fade-out-down-frames; .mwe-popups-fade-out-down-frames;
} }
@ -84,10 +71,6 @@
.mwe-popups-fade-out-up-frames; .mwe-popups-fade-out-up-frames;
} }
@-moz-keyframes mwe-popups-fade-out-up {
.mwe-popups-fade-out-up-frames;
}
@keyframes mwe-popups-fade-out-up { @keyframes mwe-popups-fade-out-up {
.mwe-popups-fade-out-up-frames; .mwe-popups-fade-out-up-frames;
} }

View file

@ -113,8 +113,6 @@
/* @noflip */ /* @noflip */
background-image: -webkit-linear-gradient( to right, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% ); background-image: -webkit-linear-gradient( to right, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% );
/* @noflip */ /* @noflip */
background-image: -moz-linear-gradient( to right, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% );
/* @noflip */
background-image: linear-gradient( to right, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% ); background-image: linear-gradient( to right, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% );
} }
@ -124,8 +122,6 @@
/* @noflip */ /* @noflip */
background-image: -webkit-linear-gradient( to left, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% ); background-image: -webkit-linear-gradient( to left, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% );
/* @noflip */ /* @noflip */
background-image: -moz-linear-gradient( to left, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% );
/* @noflip */
background-image: linear-gradient( to left, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% ); background-image: linear-gradient( to left, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% );
} }
/* stylelint-enable function-linear-gradient-no-nonstandard-direction */ /* stylelint-enable function-linear-gradient-no-nonstandard-direction */

View file

@ -61,7 +61,6 @@
height: @lineHeight; height: @lineHeight;
background-color: transparent; background-color: transparent;
background-image: -webkit-linear-gradient( top, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) ); background-image: -webkit-linear-gradient( top, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) );
background-image: -moz-linear-gradient( top, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) );
background-image: linear-gradient( rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) ); background-image: linear-gradient( rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) );
opacity: 0; opacity: 0;
pointer-events: none; // Allows clicking "through" the element pointer-events: none; // Allows clicking "through" the element