mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-03 02:06:43 +00:00
8dad1703af
The link change overrides link colors in last modified, talk button and main menu. This approach was obviously flawed. Rather than enter a specificity war let's instead limit the styles to links which do not have an href. Volker you were right... * Revert "Last modified links should not be progressive blue" This reverts commitbc045b78a2
. * Revert "Do not style links without href attribute" This reverts commitdaa6ad5145
. * Apply a not selector for links Certain links (including links inside navboxes) render links to themselves - for example the navbox on the San Francisco article (provided it is not removed by wgMFRemovableClasses) These links should be visually distinguished from normal links. The not selector has support from IE9 onwards and given our browser matrix and the low impact of if this fallback fails this is a perfectly acceptable usecase. Bug: T181472 Change-Id: I61b05e3c223f2ba5314aecdf26b8a0ee8caa6524
57 lines
1 KiB
Plaintext
57 lines
1 KiB
Plaintext
@import 'minerva.variables';
|
|
@import 'minerva.mixins';
|
|
|
|
.printfooter {
|
|
display: block;
|
|
padding-top: 108px;
|
|
font-size: 30px;
|
|
}
|
|
|
|
#mw-mf-page-center > footer {
|
|
border-top: solid 4px #000;
|
|
padding-top: 23px;
|
|
background: #fff !important;
|
|
|
|
.mw-ui-icon:before {
|
|
display: none !important;
|
|
}
|
|
|
|
.last-modified-bar {
|
|
background: none !important;
|
|
border: 0 !important;
|
|
}
|
|
|
|
.last-modifier-tagline {
|
|
font-size: 36px;
|
|
padding-top: 0 !important;
|
|
padding-bottom: 16px !important;
|
|
}
|
|
|
|
.last-modified-bar,
|
|
.last-modified-bar a {
|
|
font-weight: bold !important;
|
|
color: #000 !important;
|
|
}
|
|
|
|
.post-content {
|
|
margin-top: 15px !important;
|
|
// FIXME: There is a print style in skins.minerva.base.styles
|
|
// that sets display: none; When promoting to stable the !important here
|
|
// should be dropped and skins.minerva.base.styles moved into here.
|
|
display: block !important;
|
|
|
|
// ... and add these instead.
|
|
.hlist,
|
|
h2 {
|
|
display: none;
|
|
}
|
|
|
|
.license a,
|
|
.license {
|
|
font-size: 30px;
|
|
color: @colorPrintSubtle;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|