2017-07-12 15:12:40 +00:00
|
|
|
/*
|
|
|
|
A file for css that optimises the Minerva skin on larger devices.
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import 'minerva.variables';
|
|
|
|
@import 'minerva.mixins';
|
|
|
|
@paddingVertical: 1.4em;
|
|
|
|
|
2018-02-05 19:17:54 +00:00
|
|
|
@media screen and ( min-width: @width-breakpoint-tablet ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
.client-js {
|
|
|
|
#searchIcon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
.branding-box {
|
|
|
|
width: @brandingBoxWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-box {
|
|
|
|
display: table-cell;
|
|
|
|
width: auto;
|
|
|
|
|
|
|
|
.search {
|
|
|
|
width: @searchBoxWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toc-mobile {
|
|
|
|
// Reset the rule for mobile mode (but not for .client-nojs)
|
|
|
|
display: block;
|
|
|
|
visibility: visible;
|
|
|
|
position: relative;
|
|
|
|
font-size: 1.3em;
|
|
|
|
float: left;
|
|
|
|
clear: left;
|
|
|
|
margin: 1em 0;
|
|
|
|
border: solid 1px transparent;
|
|
|
|
|
|
|
|
> h2 {
|
|
|
|
visibility: hidden;
|
|
|
|
font-family: @fontFamily;
|
|
|
|
font-size: @tocFontSize;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: 0;
|
|
|
|
padding: @paddingVertical / 2 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content_block {
|
|
|
|
width: auto;
|
|
|
|
clear: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Have a class that identifies all of these selectors
|
|
|
|
.pre-content,
|
2017-11-29 19:53:30 +00:00
|
|
|
// Form only pages e.g. Special:MobileOptions
|
|
|
|
#mw-content-text > form,
|
2017-07-12 15:12:40 +00:00
|
|
|
.content,
|
|
|
|
.post-content {
|
|
|
|
max-width: @contentMaxWidthTablet;
|
|
|
|
margin: 0 @contentPaddingTablet;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
2017-07-27 20:50:49 +00:00
|
|
|
width: 320px;
|
|
|
|
|
|
|
|
&.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override rules in common.less
|
|
|
|
table {
|
|
|
|
display: table;
|
|
|
|
width: auto !important;
|
|
|
|
caption {
|
2017-08-24 17:59:21 +00:00
|
|
|
background: inherit; // T170344
|
2017-07-12 15:12:40 +00:00
|
|
|
display: table-caption;
|
|
|
|
}
|
|
|
|
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 ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
.banner-container,
|
|
|
|
// FIXME: Generic header class needed me-thinks!
|
|
|
|
.header,
|
|
|
|
.page-header-bar,
|
|
|
|
.content-header,
|
|
|
|
.overlay-header,
|
|
|
|
// FIXME: Generic content class needed?
|
|
|
|
.content,
|
|
|
|
.overlay-content,
|
|
|
|
.content-unstyled,
|
|
|
|
.pre-content,
|
|
|
|
.post-content,
|
2017-11-29 19:53:30 +00:00
|
|
|
// Form only pages e.g. Special:MobileOptions
|
|
|
|
#mw-content-text > form,
|
2017-07-12 15:12:40 +00:00
|
|
|
// FIXME: remove need for id selector
|
|
|
|
#mw-mf-page-center .pointer-overlay {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
max-width: @contentMaxWidthTablet;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
// Make sure the main menu and secondary button icon images are aligned
|
|
|
|
// with the content.
|
|
|
|
max-width: @contentMaxWidthTablet + 2 * @iconGutterWidth;
|
|
|
|
}
|
|
|
|
}
|