2019-08-08 20:01:03 +00:00
|
|
|
@import '../../minerva.less/minerva.variables.less';
|
|
|
|
@import '../../minerva.less/minerva.mixins.less';
|
|
|
|
@import 'mediawiki.mixins.less';
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
/* stylelint-disable no-descending-specificity */
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
// Ensure overlays take up full screen
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2019-03-05 03:34:55 +00:00
|
|
|
html {
|
2019-12-06 05:46:50 +00:00
|
|
|
font-size: @font-size-root;
|
2019-03-05 03:34:55 +00:00
|
|
|
// Support Safari: Prevent font scaling in landscape
|
2022-05-07 00:57:25 +00:00
|
|
|
// stylelint-disable-next-line plugin/no-unsupported-browser-features
|
2019-03-05 03:34:55 +00:00
|
|
|
-webkit-text-size-adjust: none;
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
body {
|
2020-06-12 04:23:50 +00:00
|
|
|
background-color: @background-color-base;
|
2019-03-05 03:34:55 +00:00
|
|
|
color: @colorGray2;
|
|
|
|
// Support All Browsers: Remove `margin` (normalized)
|
|
|
|
margin: 0;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 03:49:32 +00:00
|
|
|
main {
|
|
|
|
// Support IE 9-11: Apply correct `display` (normalized), see T207618.
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:34:22 +00:00
|
|
|
.mw-body {
|
2017-07-12 15:12:40 +00:00
|
|
|
// avoid margin collapsing (see T147956)
|
2017-08-10 17:44:48 +00:00
|
|
|
border-top: 1px solid transparent;
|
2017-07-12 15:12:40 +00:00
|
|
|
padding-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay-enabled,
|
2019-11-26 05:34:22 +00:00
|
|
|
.mw-body {
|
2020-06-12 04:23:50 +00:00
|
|
|
background-color: @background-color-base;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2020-04-27 19:14:47 +00:00
|
|
|
// If footer has last modified list item (Desktop MinervaNeue ?useformat=desktop&useskin=minerva),
|
|
|
|
// hide it (T173545).
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-disable-next-line selector-max-id
|
2019-10-04 15:05:37 +00:00
|
|
|
.navigation-drawer--loading,
|
2017-08-25 15:35:23 +00:00
|
|
|
#footer-info-lastmod {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-04-01 15:23:00 +00:00
|
|
|
// Override rule in MobileFrontend (
|
|
|
|
// (ul.footer-info li in resources/mobile.init.styles.less)
|
|
|
|
// to show copyright.
|
2021-10-26 23:05:37 +00:00
|
|
|
// stylelint-disable-next-line selector-max-id
|
|
|
|
#footer-info-copyright {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-10-28 21:48:05 +00:00
|
|
|
// JavaScript overlay and server side rendered header
|
2021-09-29 14:16:36 +00:00
|
|
|
.overlay-header,
|
2021-07-16 20:10:00 +00:00
|
|
|
.minerva-header {
|
2021-10-28 21:48:05 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-07-12 15:12:40 +00:00
|
|
|
width: 100%;
|
|
|
|
border-spacing: 0;
|
|
|
|
border-collapse: collapse;
|
2019-02-06 13:48:03 +00:00
|
|
|
height: @siteHeaderHeight;
|
2017-07-12 15:12:40 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
// When banners are present we want to easily distinguish between them and the header so add border
|
|
|
|
border-top: 1px solid @colorGray12;
|
|
|
|
margin-top: @headerMarginTop;
|
2017-07-31 17:12:59 +00:00
|
|
|
}
|
|
|
|
|
2022-02-22 16:38:16 +00:00
|
|
|
//
|
|
|
|
// Search
|
|
|
|
//
|
|
|
|
.minerva-search-form {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
flex-grow: 1;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
> button {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-28 21:48:05 +00:00
|
|
|
// Search input
|
|
|
|
// Used in minerva header and search overlay header
|
2018-12-12 23:20:10 +00:00
|
|
|
.search-box .search {
|
2021-02-23 22:59:38 +00:00
|
|
|
@size-icon-search: unit( 18 / @font-size-browser, em );
|
|
|
|
@size-icon-search-gutter: unit( 8 / @font-size-browser, em );
|
|
|
|
@size-modifier-border: unit( 1 / @font-size-browser, em );
|
2019-03-12 21:55:40 +00:00
|
|
|
@padding-vertical-search: 8px - @border-width-base;
|
2021-02-23 22:59:38 +00:00
|
|
|
@padding-start-search-icon: @size-icon-search + ( 2 * @size-icon-search-gutter ) - @size-modifier-border;
|
2019-03-12 21:00:00 +00:00
|
|
|
background-color: #fff; // Support Fennec, Opera Mini: Remove default background, see T38490.
|
2021-02-23 22:59:38 +00:00
|
|
|
background-position: left @size-icon-search-gutter center;
|
2018-12-12 23:20:10 +00:00
|
|
|
background-repeat: no-repeat;
|
2021-02-23 22:59:38 +00:00
|
|
|
background-size: @size-icon-search;
|
2019-03-12 21:00:00 +00:00
|
|
|
// Support Safari: Get rid of rounded corners.
|
2022-05-07 00:57:25 +00:00
|
|
|
// stylelint-disable-next-line plugin/no-unsupported-browser-features
|
2019-03-12 21:00:00 +00:00
|
|
|
-webkit-appearance: none;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 0;
|
2019-09-24 17:23:01 +00:00
|
|
|
height: 2.25em;
|
2019-03-12 21:55:40 +00:00
|
|
|
border: @border-width-base solid #fff;
|
2020-06-12 04:30:50 +00:00
|
|
|
border-radius: @border-radius-base;
|
2019-03-12 21:55:40 +00:00
|
|
|
padding: @padding-vertical-search 0 @padding-vertical-search @padding-start-search-icon;
|
2018-12-12 23:20:10 +00:00
|
|
|
box-shadow: 0 1px 1px rgba( 0, 0, 0, 0.05 );
|
2021-10-28 21:48:05 +00:00
|
|
|
// Keyboard focus is taken care of below at `.search:focus`.
|
2019-03-12 21:00:00 +00:00
|
|
|
outline: 0;
|
2022-05-16 16:55:54 +00:00
|
|
|
transition: border-color @transition-duration-medium, box-shadow @transition-duration-medium;
|
2019-03-12 21:55:40 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
// [T139928] Hide all pseudo-elements added to search inputs in WebKit.
|
|
|
|
&::-webkit-search-decoration,
|
|
|
|
&::-webkit-search-cancel-button,
|
|
|
|
&::-webkit-search-results-button,
|
|
|
|
&::-webkit-search-results-decoration {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-28 21:48:05 +00:00
|
|
|
// Provide focus styles only in non-JS and overlay to prevent double transition.
|
|
|
|
.client-nojs .search-box .search:focus,
|
|
|
|
.search-overlay .search-box .search:focus {
|
|
|
|
border-color: @colorProgressive;
|
|
|
|
box-shadow: inset 0 0 0 1px @colorProgressive, 0 1px 1px rgba( 0, 0, 0, 0.05 );
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
.content {
|
|
|
|
h2 {
|
|
|
|
// Clear table of contents and any other floated elements in desktop Minerva.
|
2018-04-24 11:51:48 +00:00
|
|
|
clear: left;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2017-11-01 18:28:06 +00:00
|
|
|
.collapsible-heading .edit-page {
|
2017-07-12 15:12:40 +00:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2017-11-01 18:28:06 +00:00
|
|
|
.collapsible-heading.open-block {
|
2017-07-12 15:12:40 +00:00
|
|
|
// Restrict to child so that child section edit links do not get revealed.
|
|
|
|
.edit-page {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-01 18:28:06 +00:00
|
|
|
.mw-parser-output > h2,
|
2017-07-12 15:12:40 +00:00
|
|
|
.section-heading {
|
2017-08-10 17:44:48 +00:00
|
|
|
border-bottom: 1px solid @colorGray14;
|
2017-07-12 15:12:40 +00:00
|
|
|
margin-bottom: @headingMargin;
|
|
|
|
}
|
|
|
|
|
2021-05-27 21:10:06 +00:00
|
|
|
.mw-parser-output {
|
2022-04-12 16:45:02 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
display: flex;
|
2021-05-27 21:10:06 +00:00
|
|
|
|
|
|
|
.mw-headline {
|
2022-04-12 16:45:02 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 0;
|
|
|
|
margin-left: 0;
|
2021-05-27 21:10:06 +00:00
|
|
|
}
|
2020-01-30 05:35:34 +00:00
|
|
|
|
2022-04-12 16:45:02 +00:00
|
|
|
.mw-editsection {
|
|
|
|
align-self: center;
|
|
|
|
// Negative margins to prevent the edit icon from affecting the height of the heading
|
|
|
|
margin-top: -1em;
|
|
|
|
margin-bottom: -1em;
|
|
|
|
|
|
|
|
.mw-ui-icon-element {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2021-05-27 21:10:06 +00:00
|
|
|
}
|
2020-01-30 05:35:34 +00:00
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-disable selector-max-id
|
2017-07-12 15:12:40 +00:00
|
|
|
#page-secondary-actions {
|
|
|
|
a {
|
|
|
|
margin: 10px 2px 2px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// It may be better to express these in a single class
|
|
|
|
// or think about using extend or a mixin to stay with semantic selectors
|
|
|
|
// https://css-tricks.com/the-extend-concept/
|
|
|
|
#bodyContent .panel .content,
|
|
|
|
.overlay .content-header,
|
|
|
|
.overlay .panel,
|
|
|
|
.page-list.side-list .list-thumb,
|
|
|
|
.page-list li,
|
|
|
|
.topic-title-list li,
|
|
|
|
.site-link-list li,
|
|
|
|
.drawer,
|
2021-10-04 22:51:47 +00:00
|
|
|
/*Specificity needed to override content styles in core. */
|
|
|
|
.content h2.list-header,
|
2019-09-13 20:24:30 +00:00
|
|
|
.list-header,
|
2017-07-12 15:12:40 +00:00
|
|
|
.mw-revision {
|
|
|
|
padding-left: @contentPadding;
|
|
|
|
padding-right: @contentPadding;
|
|
|
|
}
|
|
|
|
|
|
|
|
.talk-overlay .comment .comment-content,
|
|
|
|
.image-list,
|
2021-10-25 20:40:47 +00:00
|
|
|
.minerva-anon-talk-message,
|
2017-07-12 15:12:40 +00:00
|
|
|
.pre-content,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* Form only pages e.g Special:MobileOptions */
|
2018-04-02 21:26:06 +00:00
|
|
|
#mw-content-text > form > .oo-ui-fieldLayout > .oo-ui-fieldLayout-body,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* Save button on Special:MobileOptions */
|
2017-12-01 18:52:02 +00:00
|
|
|
#mw-content-text > form > .oo-ui-widget,
|
2017-07-12 15:12:40 +00:00
|
|
|
.content,
|
|
|
|
.post-content {
|
|
|
|
margin: 0 @contentMargin;
|
|
|
|
}
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-enable selector-max-id
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2019-07-30 16:56:58 +00:00
|
|
|
// T217197
|
|
|
|
.minerva__subtitle {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
2019-08-01 16:47:13 +00:00
|
|
|
|
|
|
|
&:empty {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-07-30 16:56:58 +00:00
|
|
|
}
|
|
|
|
|
2018-02-05 19:17:54 +00:00
|
|
|
@media all and ( min-width: @width-breakpoint-tablet ) {
|
2018-12-12 23:20:10 +00:00
|
|
|
/* FIXME: this should be one generic class name */
|
|
|
|
/* SpecialMobileEditWatchlist */
|
2017-07-12 15:12:40 +00:00
|
|
|
.page-summary-list,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* Talk overlay */
|
2017-07-12 15:12:40 +00:00
|
|
|
.topic-title-list,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* structured languages, mobile pagelists */
|
2017-07-12 15:12:40 +00:00
|
|
|
.site-link-list,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* overlays */
|
2017-07-12 15:12:40 +00:00
|
|
|
.overlay .panel,
|
2018-12-12 23:20:10 +00:00
|
|
|
/* language overlay / MobileSpecialPageFeed */
|
2017-07-12 15:12:40 +00:00
|
|
|
.list-header {
|
|
|
|
padding-left: @contentPaddingTablet;
|
|
|
|
padding-right: @contentPaddingTablet;
|
|
|
|
}
|
|
|
|
}
|
2020-02-28 20:28:59 +00:00
|
|
|
/* stylelint-enable no-descending-specificity */
|