Remove unnecessary calc operation in .less file
authorThalia <thalia.e.chan@googlemail.com>
Fri, 4 Jan 2019 18:20:09 +0000 (18:20 +0000)
committerThalia <thalia.e.chan@googlemail.com>
Fri, 4 Jan 2019 18:20:09 +0000 (18:20 +0000)
Change-Id: I3db79e58e6d590da0fc2b168d784e1f666c2337b

resources/src/mediawiki.special/block.less

index 1748635..c4f0a5e 100644 (file)
@@ -11,9 +11,6 @@
        margin-left: @ooui-spacing-radio-label;
 
        .oo-ui-widget {
-               // Support:; IE 8 and browsers which don't support `calc()`
-               max-width: 48em;
-               // Support: IE 9+ and all modern browsers;
-               max-width: calc( 50em - @ooui-spacing-radio-label );
+               max-width: 50em - @ooui-spacing-radio-label;
        }
 }