2018-05-19 18:17:31 +00:00
|
|
|
@import '../../minerva.less/minerva.variables';
|
|
|
|
@import '../../minerva.less/minerva.mixins';
|
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 {
|
2017-07-12 15:12:40 +00:00
|
|
|
border-top: solid 1px @footerBorderColor;
|
|
|
|
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
|
|
|
|
footer {
|
2017-10-09 16:28:04 +00:00
|
|
|
// links should be separated by same color
|
|
|
|
.hlist {
|
|
|
|
li:after {
|
|
|
|
color: @linkColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
.last-modified-bar {
|
|
|
|
border-bottom: solid 1px @footerBorderColor;
|
|
|
|
background-color: @lastModifiedBarBgColor;
|
|
|
|
display: block;
|
|
|
|
color: @lastModifiedBarTextColor;
|
|
|
|
line-height: 1.5em;
|
|
|
|
transition: background-color 0.2s ease, color 0.2s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.last-modifier-tagline {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2019-07-31 17:59:52 +00:00
|
|
|
font-size: @font-size-minerva-small;
|
2017-07-12 15:12:40 +00:00
|
|
|
padding: 7px 2em 7px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indicator {
|
|
|
|
position: absolute;
|
|
|
|
right: -1em;
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .post-content {
|
|
|
|
overflow: auto;
|
|
|
|
margin-top: 42px;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> h2 {
|
|
|
|
border-bottom: solid 1px @footerBorderColor;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
margin-top: 42px;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.hlist,
|
|
|
|
.license {
|
|
|
|
font-size: 0.875em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-05 19:17:54 +00:00
|
|
|
@media ( min-width: @width-breakpoint-tablet ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
footer {
|
|
|
|
.last-modified-bar {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|