2017-07-12 15:12:40 +00:00
|
|
|
/*
|
|
|
|
A file for css that optimises the Minerva skin on larger devices.
|
|
|
|
*/
|
|
|
|
|
2021-04-29 01:01:54 +00:00
|
|
|
@import '../../../../minerva.less/minerva.variables.less';
|
|
|
|
@import '../../../../minerva.less/minerva.mixins.less';
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-02-05 19:17:54 +00:00
|
|
|
@media screen and ( min-width: @width-breakpoint-tablet ) {
|
2019-11-26 05:02:40 +00:00
|
|
|
.client-js #searchIcon { // stylelint-disable-line selector-max-id
|
|
|
|
display: none;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 20:10:00 +00:00
|
|
|
.minerva-header {
|
2017-07-12 15:12:40 +00:00
|
|
|
.branding-box {
|
|
|
|
width: @brandingBoxWidth;
|
|
|
|
}
|
2021-10-07 17:40:45 +00:00
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2021-10-07 17:40:45 +00:00
|
|
|
.search-overlay,
|
|
|
|
.minerva-header {
|
2017-07-12 15:12:40 +00:00
|
|
|
.search-box {
|
|
|
|
display: table-cell;
|
|
|
|
width: auto;
|
|
|
|
|
|
|
|
.search {
|
|
|
|
width: @searchBoxWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-disable selector-max-id
|
2017-07-12 15:12:40 +00:00
|
|
|
// FIXME: Have a class that identifies all of these selectors
|
|
|
|
.pre-content,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* Form only pages e.g. Special:MobileOptions */
|
2017-11-29 19:53:30 +00:00
|
|
|
#mw-content-text > form,
|
2017-07-12 15:12:40 +00:00
|
|
|
.content,
|
|
|
|
.post-content {
|
|
|
|
max-width: @contentMaxWidthTablet;
|
|
|
|
margin: 0 @contentPaddingTablet;
|
|
|
|
}
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-enable selector-max-id
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
.content {
|
|
|
|
// Classes added by thumbnails
|
|
|
|
// e.g. [[File:Scholars mate animation.gif|frame|left|"[[Scholar's mate]]"]]
|
|
|
|
// We use @noflip because we still want .tleft to be on the left and
|
|
|
|
// .tright to be on the right in RTL languages.
|
2017-07-27 20:50:49 +00:00
|
|
|
figure,
|
2017-07-12 15:12:40 +00:00
|
|
|
.thumb {
|
2018-05-01 19:10:08 +00:00
|
|
|
max-width: @width-breakpoint-tablet - @contentMargin;
|
2017-07-27 20:50:49 +00:00
|
|
|
|
|
|
|
&.mw-halign-left,
|
2017-07-12 15:12:40 +00:00
|
|
|
&.tleft {
|
|
|
|
/* @noflip */
|
|
|
|
float: left;
|
|
|
|
/* @noflip */
|
|
|
|
clear: left;
|
|
|
|
/* @noflip */
|
|
|
|
margin-right: 1.4em;
|
|
|
|
}
|
|
|
|
|
2017-07-27 20:50:49 +00:00
|
|
|
&.mw-default-size,
|
|
|
|
&.mw-halign-right,
|
2017-07-12 15:12:40 +00:00
|
|
|
&.tright {
|
|
|
|
/* @noflip */
|
|
|
|
float: right;
|
|
|
|
/* @noflip */
|
|
|
|
clear: right;
|
|
|
|
/* @noflip */
|
|
|
|
margin-left: 1.4em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
caption {
|
2017-08-24 17:59:21 +00:00
|
|
|
background: inherit; // T170344
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2018-12-12 23:20:10 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
tbody {
|
|
|
|
display: table-row-group;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.last-modified-bar {
|
|
|
|
background-color: transparent;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-28 14:23:45 +00:00
|
|
|
@media screen and ( min-width: @width-breakpoint-desktop ) {
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-disable-next-line selector-max-id
|
2017-07-12 15:12:40 +00:00
|
|
|
.banner-container,
|
2021-07-16 20:10:00 +00:00
|
|
|
.minerva-header,
|
2017-07-12 15:12:40 +00:00
|
|
|
.page-header-bar,
|
|
|
|
.overlay-header,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* FIXME: Generic content class needed? */
|
2017-07-12 15:12:40 +00:00
|
|
|
.content,
|
|
|
|
.overlay-content,
|
|
|
|
.content-unstyled,
|
|
|
|
.pre-content,
|
|
|
|
.post-content,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* Form only pages e.g. Special:MobileOptions */
|
2020-02-03 08:15:44 +00:00
|
|
|
#mw-content-text > form {
|
2017-07-12 15:12:40 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2018-10-26 06:33:28 +00:00
|
|
|
width: 90%;
|
2018-10-31 18:20:53 +00:00
|
|
|
max-width: @contentMaxWidthTablet;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 20:10:00 +00:00
|
|
|
.minerva-header {
|
2017-07-12 15:12:40 +00:00
|
|
|
// Make sure the main menu and secondary button icon images are aligned
|
|
|
|
// with the content.
|
|
|
|
max-width: @contentMaxWidthTablet + 2 * @iconGutterWidth;
|
|
|
|
}
|
|
|
|
}
|