mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 10:50:52 +00:00
8b823b080a
The preferences page is accessible if a user opts into the Minerva desktop experience. It's not a great first experience. These changes make the page usable. * Provide styling for tabs * Provide padding/borders for unstyled button elements Change-Id: I107ed3c685910a5e9502b25d22ef7cc489ce3c34
49 lines
820 B
Plaintext
49 lines
820 B
Plaintext
@import 'minerva.variables';
|
|
|
|
// FIXME: All this code can be removed when T117781/T171238 is resolved.
|
|
#preftoc {
|
|
text-align: center;
|
|
|
|
li {
|
|
display: inline-block;
|
|
color: @colorGray2;
|
|
border: 1px solid @colorFieldBorder;
|
|
border-radius: 0;
|
|
|
|
&:first-child {
|
|
border-top-left-radius: 2px;
|
|
border-bottom-left-radius: 2px;
|
|
}
|
|
|
|
&:last-child {
|
|
border-top-right-radius: 2px;
|
|
border-bottom-right-radius: 2px;
|
|
}
|
|
|
|
&:not( :first-child ) {
|
|
border-left: 0;
|
|
}
|
|
|
|
&.selected {
|
|
background-color: @colorProgressiveActive;
|
|
border-color: @colorProgressiveActive;
|
|
color: #fff;
|
|
box-shadow: none;
|
|
}
|
|
|
|
a {
|
|
padding: 0.5em 1em;
|
|
color: inherit;
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mw-htmlform-submit-buttons,
|
|
.mw-input {
|
|
select,
|
|
input {
|
|
border: solid 1px @colorFieldBorder;
|
|
padding: 8px;
|
|
}
|
|
} |