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 {
|
2019-07-22 11:42:12 +00:00
|
|
|
margin: 0 10px 0 0;
|
2019-06-14 17:32:17 +00:00
|
|
|
padding-bottom: 6px;
|
|
|
|
display: inline-block;
|
|
|
|
|
2024-09-18 19:52:23 +00:00
|
|
|
// TODO: 'a' selector after caching
|
|
|
|
a,
|
|
|
|
.minerva__tab-text {
|
|
|
|
font-size: @font-size-tag-line;
|
|
|
|
font-weight: bold;
|
2024-06-10 20:52:01 +00:00
|
|
|
color: @color-subtle;
|
2024-09-18 19:52:23 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&.new {
|
|
|
|
color: @color-link-red;
|
|
|
|
}
|
2019-06-25 01:10:51 +00:00
|
|
|
}
|
|
|
|
|
2024-09-18 19:52:23 +00:00
|
|
|
// TODO: Remove entire selector after caching
|
|
|
|
// Currently needed to override default link styles
|
|
|
|
a:not( [ role='button' ] ) {
|
|
|
|
&:link,
|
|
|
|
&:visited,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
color: @color-subtle;
|
|
|
|
text-decoration: none !important;
|
|
|
|
}
|
2023-12-19 00:22:18 +00:00
|
|
|
}
|
|
|
|
|
2024-09-18 19:52:23 +00:00
|
|
|
// TODO: Remove entire selector after caching
|
|
|
|
&.new a:not( [ role='button' ] ) {
|
2024-09-17 18:03:37 +00:00
|
|
|
.cdx-mixin-link-red();
|
2019-06-14 17:32:17 +00:00
|
|
|
}
|
2023-12-20 22:28:08 +00:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// note core doesn't use BEM.
|
|
|
|
&.selected {
|
|
|
|
border-bottom: @border-width-thick @border-style-base #54595d;
|
|
|
|
}
|
2019-01-10 22:59:56 +00:00
|
|
|
}
|
|
|
|
}
|