mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 01:10:07 +00:00
Remove uses of .box-shadow() mixin
The .box-shadow() LESS mixin is now obsolete as box-shadow is supported without any vendor prefix fallbacks, and planned to be removed by the next MediaWiki release. Bug: T283352 Change-Id: I3a4f5299b1d6b12e4dbfa68864613f5923957607
This commit is contained in:
parent
3f0322e16c
commit
d21f8d2bb7
|
@ -30,7 +30,7 @@
|
|||
}
|
||||
|
||||
&:focus {
|
||||
.box-shadow( ~'0 0 0 1px #fff, 0 0 0 3px #36c' );
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #36c;
|
||||
opacity: 1;
|
||||
|
||||
&:after {
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
cursor: default;
|
||||
padding: @bundle-group-padding;
|
||||
background-color: #f8f9fa;
|
||||
.box-shadow( inset 0 2px 0 0 rgba( 0, 0, 0, 0.05 ); );
|
||||
box-shadow: inset 0 2px 0 0 rgba( 0, 0, 0, 0.05 );
|
||||
}
|
||||
|
||||
.mw-echo-ui-subGroupListWidget-header {
|
||||
|
|
Loading…
Reference in a new issue