From: Volker E Date: Wed, 3 Apr 2019 02:47:19 +0000 (-0700) Subject: Remove `.background-size()` mixin usage X-Git-Tag: 1.34.0-rc.0~2180^2 X-Git-Url: http://git.cyclocoop.org/data/%7BGarradin/WEBSITE%7D?a=commitdiff_plain;h=af58d5a79aa9cce59bd44f5629b8e56baefa8814;p=lhc%2Fweb%2Fwiklou.git Remove `.background-size()` mixin usage Removing deprecated LESS `.background-size()` mixin calls. Bug: T219956 Change-Id: I48a939eae125802778d0a8822961bef826970f46 --- diff --git a/resources/src/mediawiki.ui/components/checkbox.less b/resources/src/mediawiki.ui/components/checkbox.less index 08612d03ea..92b4b8a0ef 100644 --- a/resources/src/mediawiki.ui/components/checkbox.less +++ b/resources/src/mediawiki.ui/components/checkbox.less @@ -74,7 +74,7 @@ background-origin: border-box; background-position: center center; background-repeat: no-repeat; - .background-size( 0, 0 ); + background-size: 0 0; .box-sizing( border-box ); position: absolute; // Ensure alignment of checkbox to middle of the text in long labels, see T85241 @@ -90,7 +90,7 @@ // Apply a checkmark on the pseudo `:before` element when the input is checked &:checked + label:before { .background-image-svg( 'images/checkbox-checked.svg', 'images/checkbox-checked.png' ); - .background-size( 90%, 90% ); + background-size: 90% 90%; } &:enabled {