mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 10:50:52 +00:00
5f17c89649
Searched for /fixme.*remove/. Follow-up to: * I55a25dfb8aba3d1b589a36ba4cba3bba0fe710a1 * I98443b0dcb88911a5314092216809387b4fb80dc * I3c9d59f49f1b939981a7b2b450448db6736d5958 * Ie24c0215d07d5e4605d8479ed9e950a3d9c9b086 Change-Id: Id52487f6f5e4802ea2700c51e87e63565f340f5d
59 lines
1.2 KiB
Plaintext
59 lines
1.2 KiB
Plaintext
@import '../../minerva.less/minerva.variables.less';
|
|
@import '../../minerva.less/minerva.mixins.less';
|
|
|
|
// style that applies only to minerva footer
|
|
.minerva-footer {
|
|
border-top: @border-subtle;
|
|
overflow: auto;
|
|
padding-bottom: 6px;
|
|
}
|
|
|
|
// styles that apply to nested footer components
|
|
.mw-footer {
|
|
.indicator {
|
|
.client-nojs & {
|
|
// Certain browsers e.g. Opera Mini do not support css transforms
|
|
// We assume that we do not run JS on these browsers so hide the chevron
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// links should be separated by same color
|
|
.hlist {
|
|
li::after {
|
|
color: @color-link;
|
|
}
|
|
}
|
|
|
|
> .post-content {
|
|
overflow: auto;
|
|
margin-top: 42px;
|
|
|
|
> * {
|
|
margin-bottom: 9px;
|
|
}
|
|
|
|
.minerva-footer-logo {
|
|
border-bottom: @border-subtle;
|
|
padding-bottom: 10px;
|
|
margin-top: 42px;
|
|
font-size: 1em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
// No margin top on logo needed if it follows the #p-lang element and nothing has been loaded
|
|
// above languages e.g. RelatedArticles.
|
|
/* stylelint-disable selector-max-id */
|
|
#p-lang:not( :target ):first-child + .minerva-footer-logo {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.hlist,
|
|
.license {
|
|
font-size: 0.875em;
|
|
}
|
|
}
|
|
}
|
|
|
|
@import 'LastModifiedBar.less';
|