update dialogs

This commit is contained in:
Luke Pulverenti 2016-10-15 01:32:06 -04:00
parent fb358ecdb7
commit 14c155bdc1
11 changed files with 135 additions and 108 deletions

View file

@ -48,11 +48,10 @@
}
.formDialogFooter {
position: absolute;
bottom: 0;
left: 0;
right: 0;
display: flex;
display: block;
padding: 1.25em 1em;
/* Without this emby-checkbox is able to appear on top */
z-index: 1;
@ -61,6 +60,14 @@
flex-wrap: wrap;
}
@supports (display: flex) {
.formDialogFooter {
display: flex;
position: absolute;
}
}
.formDialogFooter-flex {
position: static;
}