1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-30 16:18:31 +00:00
FrankerFaceZ/styles/widgets/profile-selector.scss

76 lines
999 B
SCSS
Raw Normal View History

2017-11-13 01:23:39 -05:00
.ffz--profile-selector {
position: relative;
.tw-balloon {
position: absolute;
2017-11-13 01:23:39 -05:00
margin-top: 0 !important
}
.scrollable-area {
max-height: 30rem;
}
}
.ffz--profile-row {
outline: none;
cursor: pointer;
&.live .ffz--profile-row__icon {
color: green;
}
&:not(.live):not(:hover):not(:focus) {
opacity: .5;
font-variant: italic;
.tw-theme--dark & {
2017-11-13 01:23:39 -05:00
opacity: .25;
}
}
.description {
opacity: .7;
}
&:first-child {
margin-top: 0.5rem;
}
&:last-child {
&, .tw-theme--dark & {
2017-11-13 01:23:39 -05:00
border-bottom: none !important
}
}
&:focus {
box-shadow:
inset 0 0 0 1px #7d5bbe,
0 0 6px -2px #7d5bbe;
}
&:focus,
&:hover {
background: rgba(100, 65, 164, .05);
.tw-theme-dark & {
2017-11-13 01:23:39 -05:00
background: rgba(100, 65, 164, .2);
}
}
}
.ffz--profile-row__icon {
position: absolute;
top: 0.5rem; right: 0.5rem;
font-size: 1.6rem;
}
.ffz--experiment-row {
&:not(.live):not(:hover):not(:focus) {
opacity: 0.5;
.tw-theme--dark & {
opacity: .25;
}
}
2017-11-13 01:23:39 -05:00
}