1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-28 15:27:43 +00:00
FrankerFaceZ/styles/widgets/tab-container.scss

36 lines
657 B
SCSS
Raw Normal View History

2017-11-13 01:23:39 -05:00
.ffz--tab-container {
@extend .ffz--outer-container;
header:focus {
outline: none;
.tab.active {
box-shadow: inset 0 0 0 1px var(--color-border-tab-active),
0 0 6px -2px var(--color-border-tab-active);
2017-11-13 01:23:39 -05:00
}
}
.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: var(--color-border-base);
2017-11-13 01:23:39 -05:00
&.active:after {
position: absolute;
bottom: 0;
left: 0;
right: 0;
content: '';
border-bottom: 4px solid var(--color-border-tab-active);
2017-11-13 01:23:39 -05:00
}
}
& > section {
@extend .ffz--inner-container;
}
}