mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 01:09:20 +00:00
64141c1f4a
- [x] Add skin specific styles Bug: T323843 Change-Id: I69fe0e4df2ec13fea2b4a5bc76881505b8bd8cf3
16 lines
431 B
Plaintext
16 lines
431 B
Plaintext
/**
|
|
* Adjusts column ratio of the search page when sidebar is closed
|
|
*/
|
|
@import '../resources/common/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 )';
|
|
}
|
|
}
|
|
}
|