1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
FrankerFaceZ/styles/dialog.scss

70 lines
812 B
SCSS
Raw Permalink Normal View History

.ffz-dialog {
2017-11-13 01:23:39 -05:00
&: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;
}
}
2017-11-13 01:23:39 -05:00
}
&.maximized {
position: absolute;
top: 0 !important;
left: 0 !important;
2017-11-13 01:23:39 -05:00
width: 100%;
height: 100%;
&, .tw-root--theme-dark & {
border: none !important;
}
2017-11-13 01:23:39 -05:00
> header {
cursor: default;
padding: .9rem 3rem;
2017-11-13 01:23:39 -05:00
}
}
&.exclusive {
z-index: 1000;
}
2017-11-13 01:23:39 -05:00
.want-ps {
overflow-y: auto;
}
> header {
user-select: none;
padding: .9rem 1rem .9rem 2rem;
2017-11-13 01:23:39 -05:00
.tw-search-input {
max-width: 40rem
}
}
}
.ffz-has-dialog {
position: relative;
2017-11-13 01:23:39 -05:00
& > :not(.ffz-dialog) {
visibility: hidden;
}
2017-11-13 01:23:39 -05:00
}