2019-06-14 17:32:17 +00:00
|
|
|
.minerva__tab-container {
|
2019-06-18 20:34:24 +00:00
|
|
|
white-space: nowrap;
|
2019-06-14 17:32:17 +00:00
|
|
|
overflow-x: auto;
|
2019-01-10 22:59:56 +00:00
|
|
|
|
2019-06-14 17:32:17 +00:00
|
|
|
.minerva__tab {
|
|
|
|
font-size: @taglineFontSize;
|
2019-07-22 11:42:12 +00:00
|
|
|
margin: 0 10px 0 0;
|
2019-06-14 17:32:17 +00:00
|
|
|
font-weight: bold;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
display: inline-block;
|
|
|
|
|
2023-12-19 00:22:18 +00:00
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// note core doesn't use BEM.
|
|
|
|
&.selected {
|
|
|
|
border-bottom: @border-width-thick @border-style-base #54595d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME - this is to be removed in ~a week once the cache has refreshed and there are no more unnested links
|
|
|
|
a.minerva__tab {
|
|
|
|
color: @color-subtle;
|
|
|
|
|
2019-06-14 17:32:17 +00:00
|
|
|
&:visited,
|
|
|
|
&:hover,
|
2021-10-17 20:42:49 +00:00
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2019-06-14 17:32:17 +00:00
|
|
|
&.new,
|
|
|
|
&.new:visited,
|
2021-10-17 20:42:49 +00:00
|
|
|
&.new:hover,
|
|
|
|
&.new:active {
|
|
|
|
color: @color-link-new;
|
2019-06-14 17:32:17 +00:00
|
|
|
}
|
2023-12-19 00:22:18 +00:00
|
|
|
}
|
2019-06-14 17:32:17 +00:00
|
|
|
|
2023-12-19 00:22:18 +00:00
|
|
|
// FIXME - once the cache is cleared, remove the li specification and incorporate these back into .minerva__tab
|
|
|
|
li.minerva__tab {
|
|
|
|
a {
|
|
|
|
color: @color-subtle;
|
2019-06-25 01:10:51 +00:00
|
|
|
}
|
|
|
|
|
2023-12-19 00:22:18 +00:00
|
|
|
a:visited,
|
|
|
|
a:hover,
|
|
|
|
a:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.new a,
|
|
|
|
&.new a:visited,
|
|
|
|
&.new a:hover,
|
|
|
|
&.new a:active {
|
|
|
|
color: @color-link-new;
|
2019-06-14 17:32:17 +00:00
|
|
|
}
|
2019-01-10 22:59:56 +00:00
|
|
|
}
|
|
|
|
}
|