mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-24 11:38: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.
67 lines
No EOL
782 B
SCSS
67 lines
No EOL
782 B
SCSS
.ffz-dialog {
|
|
&:not(.maximized) {
|
|
position: absolute;
|
|
top: 25%;
|
|
left: 25%;
|
|
|
|
z-index: 99999999;
|
|
|
|
height: 50vh;
|
|
width: 50vw;
|
|
|
|
min-width: 640px;
|
|
min-height: 300px;
|
|
|
|
> header {
|
|
cursor: move;
|
|
}
|
|
|
|
&.faded {
|
|
opacity: 0.5;
|
|
|
|
&:hover {
|
|
opacity: 0.75;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.maximized {
|
|
position: absolute;
|
|
top: 0 !important;
|
|
left: 0 !important;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
&, .tw-root--theme-dark & {
|
|
border: none !important;
|
|
}
|
|
|
|
> header {
|
|
cursor: default;
|
|
padding: .9rem 3rem;
|
|
}
|
|
}
|
|
|
|
&.exclusive {
|
|
z-index: 1000;
|
|
}
|
|
|
|
.want-ps {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
> header {
|
|
user-select: none;
|
|
padding: .9rem 1rem .9rem 2rem;
|
|
|
|
.tw-search-input {
|
|
max-width: 40rem
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.ffz-has-dialog > :not(.ffz-dialog) {
|
|
visibility: hidden;
|
|
} |