mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-29 00:20:51 +00:00
4f6e9e69e1
Change-Id: I6766b4ef5a99c66ebb54079b07739315294c86a7
60 lines
1,003 B
Plaintext
60 lines
1,003 B
Plaintext
@import 'minerva.variables';
|
|
|
|
// FIXME: All this code can be removed when T117781/T171238 is resolved.
|
|
#preftoc {
|
|
text-align: left;
|
|
// Horizontal scrolling
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
white-space: nowrap;
|
|
padding: 0;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
// redudant on mobile - tab labels provide context
|
|
.mainLegend {
|
|
display: none;
|
|
}
|
|
|
|
.mw-htmlform-submit-buttons,
|
|
.mw-input {
|
|
select,
|
|
input {
|
|
border: solid 1px @colorFieldBorder;
|
|
padding: 8px;
|
|
}
|
|
}
|