2018-07-24 16:11:02 -04:00
|
|
|
.ffz-dialog {
|
2017-11-13 01:23:39 -05:00
|
|
|
&:not(.maximized) {
|
|
|
|
position: absolute;
|
|
|
|
top: 25%;
|
|
|
|
left: 25%;
|
|
|
|
|
|
|
|
z-index: 99999999;
|
|
|
|
|
2021-03-20 18:47:12 -04:00
|
|
|
--width: #{"min(75vw, 128rem)"};
|
|
|
|
--height: #{"min(75vh, calc(0.75 * var(--width)))"};
|
|
|
|
|
|
|
|
top: #{"calc(calc(100vh - var(--height)) / 2)"};
|
|
|
|
left: #{"calc(calc(100vw - var(--width)) / 2)"};
|
2017-11-13 01:23:39 -05:00
|
|
|
|
2021-03-12 20:16:39 -05:00
|
|
|
min-width: 64rem;
|
|
|
|
min-height: 30rem;
|
|
|
|
|
2021-03-21 12:50:45 -04:00
|
|
|
max-width: 75vw;
|
|
|
|
max-height: 75vh;
|
|
|
|
|
2021-03-12 20:16:39 -05:00
|
|
|
width: 75vw;
|
|
|
|
width: var(--width);
|
|
|
|
|
|
|
|
height: 50vh;
|
2021-03-20 18:47:12 -04:00
|
|
|
height: var(--height);
|
2017-11-13 01:23:39 -05:00
|
|
|
|
|
|
|
> header {
|
|
|
|
cursor: move;
|
|
|
|
}
|
2018-07-05 20:27:17 -04:00
|
|
|
|
|
|
|
&.faded {
|
2018-07-09 21:35:31 -04:00
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
2018-07-05 20:27:17 -04:00
|
|
|
}
|
2017-11-13 01:23:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.maximized {
|
2017-11-13 16:28:17 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 0 !important;
|
|
|
|
left: 0 !important;
|
|
|
|
|
2017-11-13 01:23:39 -05:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
2018-11-12 13:34:53 -05:00
|
|
|
&, .tw-root--theme-dark & {
|
2017-11-15 22:00:49 -05:00
|
|
|
border: none !important;
|
|
|
|
}
|
2017-11-13 01:23:39 -05:00
|
|
|
|
|
|
|
> header {
|
|
|
|
cursor: default;
|
2017-11-15 22:00:49 -05:00
|
|
|
padding: .9rem 3rem;
|
2017-11-13 01:23:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-22 19:09:28 +01:00
|
|
|
&.exclusive {
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
2017-11-13 01:23:39 -05:00
|
|
|
.want-ps {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
> header {
|
|
|
|
user-select: none;
|
2017-11-15 22:00:49 -05:00
|
|
|
padding: .9rem 1rem .9rem 2rem;
|
2017-11-13 01:23:39 -05:00
|
|
|
|
|
|
|
.tw-search-input {
|
|
|
|
max-width: 40rem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-09 16:02:25 -04:00
|
|
|
.ffz-has-dialog {
|
|
|
|
position: relative;
|
2017-11-13 01:23:39 -05:00
|
|
|
|
2019-10-09 16:02:25 -04:00
|
|
|
& > :not(.ffz-dialog) {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2017-11-13 01:23:39 -05:00
|
|
|
}
|