1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update dialogs

This commit is contained in:
Luke Pulverenti 2016-09-08 17:30:19 -04:00
parent 88bf479a19
commit 731c71391c
2 changed files with 12 additions and 10 deletions

View file

@ -23,6 +23,13 @@
contain: style; contain: style;
} }
.dialog-fixedSize {
border-radius: 0;
max-height: none;
max-width: none;
}
@media screen and (max-width: 1280px), screen and (max-height: 720px) {
.dialog-fixedSize { .dialog-fixedSize {
position: fixed; position: fixed;
top: 0; top: 0;
@ -30,33 +37,27 @@
left: 0; left: 0;
right: 0; right: 0;
margin: 0; margin: 0;
border-radius: 0; }
max-height: none;
max-width: none;
} }
@media all and (min-width: 1280px) and (min-height: 720px) { @media all and (min-width: 1280px) and (min-height: 720px) {
.dialog-medium { .dialog-medium {
position: static;
width: 80%; width: 80%;
height: 80%; height: 80%;
} }
.dialog-medium-tall { .dialog-medium-tall {
position: static;
width: 80%; width: 80%;
height: 90%; height: 90%;
} }
.dialog-small { .dialog-small {
position: static;
width: 60%; width: 60%;
height: 80%; height: 80%;
} }
.dialog-fullscreen-border { .dialog-fullscreen-border {
position: static;
width: 90%; width: 90%;
height: 90%; height: 90%;
} }

View file

@ -1,6 +1,7 @@
.formDialog { .formDialog {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: relative;
} }
.formDialogHeader { .formDialogHeader {