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:
Kosta Harlan 2021-08-19 16:47:15 +02:00 committed by Jdlrobson
parent 3f0322e16c
commit d21f8d2bb7
2 changed files with 2 additions and 2 deletions

View file

@ -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 {

View file

@ -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 {