2019-08-08 20:01:03 +00:00
|
|
|
@import '../../minerva.less/minerva.variables.less';
|
|
|
|
@import '../../minerva.less/minerva.mixins.less';
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-01-25 22:25:30 +00:00
|
|
|
// style that applies only to minerva footer
|
|
|
|
.minerva-footer {
|
2023-04-09 13:49:29 +00:00
|
|
|
border-top: @border-subtle;
|
2017-07-12 15:12:40 +00:00
|
|
|
overflow: auto;
|
|
|
|
padding-bottom: 6px;
|
2018-01-25 22:25:30 +00:00
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-01-25 22:25:30 +00:00
|
|
|
// styles that apply to nested footer components
|
2020-04-27 18:32:58 +00:00
|
|
|
.mw-footer {
|
2019-09-26 11:27:39 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-09 16:28:04 +00:00
|
|
|
// links should be separated by same color
|
|
|
|
.hlist {
|
2023-03-31 19:50:36 +00:00
|
|
|
li::after {
|
2020-06-12 02:35:10 +00:00
|
|
|
color: @color-link;
|
2017-10-09 16:28:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
> .post-content {
|
|
|
|
overflow: auto;
|
|
|
|
margin-top: 42px;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
|
|
|
|
2021-09-22 00:37:26 +00:00
|
|
|
.minerva-footer-logo {
|
2023-04-09 13:49:29 +00:00
|
|
|
border-bottom: @border-subtle;
|
2017-07-12 15:12:40 +00:00
|
|
|
padding-bottom: 10px;
|
|
|
|
margin-top: 42px;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2023-01-12 17:17:15 +00:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
.hlist,
|
|
|
|
.license {
|
|
|
|
font-size: 0.875em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-13 18:47:54 +00:00
|
|
|
// Night mode
|
|
|
|
html.skin-night-mode-clientpref-1 {
|
|
|
|
.minerva-footer-logo img {
|
|
|
|
.night-mode-invert();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media ( prefers-color-scheme: dark ) {
|
|
|
|
html.skin-night-mode-clientpref-2 {
|
|
|
|
.minerva-footer-logo img {
|
|
|
|
.night-mode-invert();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-16 21:51:28 +00:00
|
|
|
@import 'LastModifiedBar.less';
|