mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-17 20:52:14 +00:00
c2e9a7b366
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
47 lines
633 B
Plaintext
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;
|
|
}
|
|
}
|