mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 03:08:12 +00:00
c4e5cbc9a7
It's extremely annoying to not know if the link you're about to click in a Minerva tab is a link to an existing page or not. So, make the new link red, as is customary in all other skins. Bug: T236608 Change-Id: I3445f91fe0bcf1ddb305f8c350753e10c2dda0b0
36 lines
547 B
Plaintext
36 lines
547 B
Plaintext
.minerva__tab-container {
|
|
white-space: nowrap;
|
|
overflow-x: auto;
|
|
|
|
.minerva__tab {
|
|
font-size: @taglineFontSize;
|
|
margin: 0 10px 0 0;
|
|
color: @colorGray5;
|
|
font-weight: bold;
|
|
padding-bottom: 6px;
|
|
display: inline-block;
|
|
|
|
&:visited,
|
|
&:hover,
|
|
&:active {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&.new,
|
|
&.new:visited,
|
|
&.new:hover,
|
|
&.new:active {
|
|
color: @color-link-new;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
// note core doesn't use BEM.
|
|
&.selected {
|
|
border-bottom: (@pageActionBorder * 2) solid @colorGray5;
|
|
}
|
|
}
|
|
}
|