mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-23 23:33:54 +00:00
fd046f3258
None of these files need access to the skin local variables. Use skin variables instead Change-Id: Iaf1591fdfc5487e6f05f020893864eb2097af708
16 lines
426 B
Plaintext
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 )';
|
|
}
|
|
}
|
|
}
|