mediawiki-skins-Vector/skinStyles/mediawiki.special.search.interwikiwidget.less
Jon Robson fd046f3258 Use skin variables instead of local variables where possible
None of these files need access to the skin local variables. Use
skin variables instead

Change-Id: Iaf1591fdfc5487e6f05f020893864eb2097af708
2023-10-05 15:34:50 -07:00

16 lines
426 B
Plaintext

/**
* Adjusts column ratio of the search page when sidebar is closed
*/
@import 'mediawiki.skin.variables.less';
.vector-feature-main-menu-pinned-disabled .mw-searchresults-has-iw {
@media only screen and ( min-width: @width-breakpoint-desktop ) {
#mw-interwiki-results {
display: inline-block;
width: ~'calc( 100% / 12 * 3 )';
margin-left: ~'calc( 100% / 12 )';
margin-right: ~'calc( 100% / 12 )';
}
}
}