1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
FrankerFaceZ/styles/widgets/menu-tree.scss
SirStendec 16ab515b4b 4.20.75
* Added: Better options for highlight / block terms, letting you make rules case sensitive, match whole words, and highlight in chat or not.
* Added: Documentation of glob syntax.
* Changed: Split `Chat > Filtering` into several sub-categories to make it easier to find specific options.
* Changed: Display seconds with the up-time metadata by default, matching Twitch.
* Fixed: The Unfollow button not hiding on the standalone player.
* Fixed: Loading issue for graphs on the dashboard.
* API Added: Allow add-ons to target the `player` flavor.
2021-03-03 17:10:14 -05:00

64 lines
No EOL
1 KiB
SCSS

.ffz--menu-tree {
position: relative;
&:focus {
outline: none;
&:after {
position: absolute;
top: 0; left: 0;
height: 100%;
width: 100%;
content: '';
pointer-events: none;
box-shadow: inset 0 0 0 1px var(--ffz-color-accent-8),
0 0 6px -2px var(--ffz-color-accent-8);
}
}
.active > div,
.active > div:hover,
.tw-root--theme-dark & .active > div:hover {
background-color: var(--color-background-button-primary-hover);
color: var(--color-text-button-primary);
}
div:hover {
cursor: pointer;
background-color: var(--color-background-button-text-hover);
}
li div {
font-size: 1.4rem;
margin-top: 0.5rem;
padding-left: 0.5rem
}
li:first-child div,
li ul div {
margin-top: 0rem;
}
li ul div {
font-size: inherit;
}
li li div { padding-left: 1rem }
li li li div { padding-left: 2rem }
li li li li div { padding-left: 2.5rem }
.pill {
font-size: 0.9rem;
}
.arrow {
opacity: 0.3;
font-size: 1.6rem;
}
}
.ffz--invisible {
visibility: hidden;
}