mediawiki-skins-Vector/resources/skins.vector.styles/Footer.less
Nicholas Ray 9823538683 Isolate Vector Styles to their Respective Component
This will help with the encapsulation/reusability of each component.

* Stylesheets were renamed to reflect their respective component name
(e.g. search.less became SearchBox.less)

* Styles were isolated to each component:

* navigation.less now only contains classes that are relevant to
Navigation.mustache.
  * personalNavigation.less, search.less, and tabs.less
    imports were removed and made first-class styles.
  * several selectors were moved into common.less
  * #p-logo was moved into sidebar

* tabs.less was renamed to VectorTabs.less and styles specific to
VectorMenu.less were put into VectorMenu.less

* Storybook was updated to reflect changes

Bug: T243281
Change-Id: Idf90ee2a0f1c1d08a31cf50099c0bebc7b67e619
2020-03-03 18:20:19 +00:00

48 lines
611 B
Plaintext

@import '../../variables.less';
/* Footer */
#footer {
margin-left: 10em;
margin-top: 0;
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;
}
}