jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/formdialog.css

76 lines
1.2 KiB
CSS
Raw Normal View History

2016-05-12 23:22:02 -07:00
.formDialog {
display: flex;
flex-direction: column;
}
2016-08-06 23:15:03 -07:00
.formDialogHeader {
2016-09-02 05:30:47 -07:00
padding: .8em .5em;
2016-08-06 23:15:03 -07:00
display: flex;
align-items: center;
flex-shrink: 0;
}
2016-05-12 23:22:02 -07:00
2016-09-06 22:48:14 -07:00
.formDialogHeader, .formDialogFooter {
background-color: #222326;
}
2016-08-06 23:15:03 -07:00
.formDialogHeaderTitle {
margin-left: .5em;
2016-08-06 23:15:03 -07:00
}
2016-05-12 23:22:02 -07:00
2016-08-06 23:15:03 -07:00
.formDialogContent {
flex-grow: 1;
}
2016-05-12 23:22:02 -07:00
2016-08-04 16:48:54 -07:00
.dialogContentInner {
2016-08-07 13:57:46 -07:00
padding: .5em 1.5em 30vh 1.5em;
2016-05-15 09:30:32 -07:00
}
2016-08-04 16:48:54 -07:00
.dialog-content-centered {
margin: 0 auto;
max-width: 53em;
2016-05-15 22:38:17 -07:00
}
2016-08-04 16:48:54 -07:00
.dialogContentTitle {
2016-05-16 10:11:49 -07:00
margin-top: 1em;
}
2016-08-30 11:13:41 -07:00
2016-09-06 22:48:14 -07:00
.formDialogFooter {
position: absolute;
bottom: 0;
left: 0;
right: 0;
display: flex;
padding: 1.5em;
/* Without this emby-checkbox is able to appear on top */
z-index: 1;
align-items: center;
justify-content: center;
}
.formDialogFooterItem {
margin-left: .5em !important;
margin-right: .5em !important;
flex-grow: 1;
text-align: center;
}
@media all and (min-width: 800px) {
.formDialogFooterItem {
max-width: 80%;
}
}
2016-08-30 11:13:41 -07:00
@media all and (min-width: 1280px) {
2016-09-06 22:48:14 -07:00
.formDialogFooterItem {
max-width: 70%;
}
2016-08-30 11:13:41 -07:00
.dialogContentInner {
padding-left: 2em;
padding-right: 2em;
}
}