VectorGOLEM/resources/skins.vector.styles/Footer.less
AronDemian c2e9a7b366 Add .mw-footer CSS class & replace #footer selector with it
Does not add `.mw-footer-*` CSS classes to `ul#footer-*` and
`li#footer-*-*` to save bandwidth.

NOTE:
- The former id selectors can be removed form the styles after the varnish cache
  is updated with the new DOM.
- The modern version still uses the legacy layout at this stage.

Bug: T248137
Change-Id: Ica9f8c43617c624648fa12dc86ebb3daa10f0409
2020-04-27 14:55:28 -07:00

47 lines
633 B
Plaintext

@import '../../variables.less';
/* Footer */
#footer, /* FIXME: Remove 2 weeks after deployment. */
.mw-footer {
padding: 0.75em;
direction: ltr;
ul {
list-style: none none;
margin: 0;
padding: 0;
}
li {
color: @color-base;
margin: 0;
padding: 0.5em 0;
font-size: @font-size-footer;
}
}
#footer-icons {
float: right;
li {
float: left;
margin-left: 0.5em;
line-height: @line-height-footer-buttons;
text-align: right;
}
}
#footer-info {
li {
line-height: @line-height-footer-info;
}
}
#footer-places {
li {
float: left;
margin-right: 1em;
line-height: @line-height-footer-buttons;
}
}