mediawiki-skins-MinervaNeue/resources/skins.minerva.base.styles/footer.less
jdlrobson 1c7adedda4 Last modified should have line-height 1
Quick fix to resolve issues with vertical alignment.

Bug: T233172
Change-Id: I3213e6c9935dcc1dd5feb658f6f0321b1437d2ff
2019-09-30 14:56:11 -07:00

103 lines
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: solid 1px @footerBorderColor;
overflow: auto;
padding-bottom: 6px;
}
.last-modified-bar__content {
align-items: center;
.flex-display();
// FIXME: This element should not have the .content class.
// Conversation will continue in https://gerrit.wikimedia.org/r/539928.
&.content {
line-height: 1;
}
}
// styles that apply to nested footer components
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;
}
}
// FIXME: cached HTML for T233172. Can be removed 2 weeks after deployment.
.content:not( .last-modified-bar__content ) {
> div {
height: 20px;
}
.indicator {
float: right;
padding: 0 8px 0 0;
}
}
// links should be separated by same color
.hlist {
li:after {
color: @linkColor;
}
}
.last-modified-bar {
border-bottom: solid 1px @footerBorderColor;
background-color: @lastModifiedBarBgColor;
color: @lastModifiedBarTextColor;
transition: background-color 0.2s ease, color 0.2s ease;
padding-top: @icon-padding-md;
padding-bottom: @icon-padding-md;
font-size: @font-size-minerva-small;
}
.last-modified-bar__text {
@end-padding: @iconGutterWidth + @iconGutterWidth + @iconSize;
padding-right: @end-padding;
padding-left: @icon-padding-md;
vertical-align: middle;
flex-grow: 1;
.truncated-text();
}
> .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;
}
}
}
@media ( max-width: @width-breakpoint-tablet ) {
footer {
.last-modified-bar__text {
padding-right: 1em;
}
}
}