mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-11 16:58:14 +00:00
Merge "styles: Remove obsolete vendor prefixed properties"
This commit is contained in:
commit
ebe316d3f3
|
@ -37,7 +37,6 @@
|
|||
|
||||
.mwe-popups-translate( @x, @y ) {
|
||||
-webkit-transform: translate( @x, @y );
|
||||
-moz-transform: translate( @x, @y );
|
||||
-ms-transform: translate( @x, @y );
|
||||
transform: translate( @x, @y );
|
||||
}
|
||||
|
@ -48,10 +47,6 @@
|
|||
.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 {
|
||||
.mwe-popups-fade-in-up-frames;
|
||||
}
|
||||
|
@ -60,10 +55,6 @@
|
|||
.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 {
|
||||
.mwe-popups-fade-in-down-frames;
|
||||
}
|
||||
|
@ -72,10 +63,6 @@
|
|||
.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 {
|
||||
.mwe-popups-fade-out-down-frames;
|
||||
}
|
||||
|
@ -84,10 +71,6 @@
|
|||
.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 {
|
||||
.mwe-popups-fade-out-up-frames;
|
||||
}
|
||||
|
|
|
@ -113,8 +113,6 @@
|
|||
/* @noflip */
|
||||
background-image: -webkit-linear-gradient( to right, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% );
|
||||
/* @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% );
|
||||
}
|
||||
|
||||
|
@ -124,8 +122,6 @@
|
|||
/* @noflip */
|
||||
background-image: -webkit-linear-gradient( to left, rgba( 255, 255, 255, 0 ), rgba( 255, 255, 255, 1 ) 50% );
|
||||
/* @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% );
|
||||
}
|
||||
/* stylelint-enable function-linear-gradient-no-nonstandard-direction */
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
height: @lineHeight;
|
||||
background-color: transparent;
|
||||
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 ) );
|
||||
opacity: 0;
|
||||
pointer-events: none; // Allows clicking "through" the element
|
||||
|
|
Loading…
Reference in a new issue