mediawiki-skins-MinervaNeue/resources/skins.minerva.amc.styles/tabs.less
Inductiveload c4e5cbc9a7 Make missing links in tabs red like all other skins
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
2021-10-19 11:33:42 +01:00

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;
}
}
}