mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-12 14:08:30 +00:00
* Fixed: Loading errors in the Browse Popular directory due to a renamed query field. * Fixed: Block and Hide Thumbnail buttons not appearing in Game directories. (Fixes #538) * Fixed: Custom chat width applying when portrait mode is active. (Fixes #540) * Fixed: FrankerFaceZ not properly detecting the dark theme when theater mode is enabled and then not using appropriate colors. (Fixes #541) * Fixed: Override badges appearing invisible with certain badge styles. * Maintenance: Update the chat types enum to match current Twitch values.
40 lines
No EOL
640 B
SCSS
40 lines
No EOL
640 B
SCSS
.ffz--tab-container {
|
|
@extend .ffz--outer-container;
|
|
|
|
header:focus {
|
|
outline: none;
|
|
|
|
.tab.active {
|
|
box-shadow: inset 0 0 0 1px #7d5bbe,
|
|
0 0 6px -2px #7d5bbe;
|
|
}
|
|
}
|
|
|
|
.tab {
|
|
cursor: pointer;
|
|
position: relative;
|
|
|
|
border-top: 1px solid;
|
|
border-right: 1px solid;
|
|
&:first-child { border-left-width: 1px; border-left-style: solid }
|
|
|
|
border-color: $border-light;
|
|
|
|
.tw-root--theme-dark & {
|
|
border-color: $border-dark;
|
|
}
|
|
|
|
&.active:after {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
content: '';
|
|
border-bottom: 4px solid #6441a4;
|
|
}
|
|
}
|
|
|
|
& > section {
|
|
@extend .ffz--inner-container;
|
|
}
|
|
} |