1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/formdialog.css

76 lines
1.2 KiB
CSS
Raw Normal View History

2016-05-13 02:22:02 -04:00
.formDialog {
display: flex;
flex-direction: column;
}
2016-08-07 02:15:03 -04:00
.formDialogHeader {
2016-09-02 08:30:47 -04:00
padding: .8em .5em;
2016-08-07 02:15:03 -04:00
display: flex;
align-items: center;
flex-shrink: 0;
}
2016-05-13 02:22:02 -04:00
2016-09-07 01:48:14 -04:00
.formDialogHeader, .formDialogFooter {
background-color: #222326;
}
2016-08-07 02:15:03 -04:00
.formDialogHeaderTitle {
margin-left: .5em;
2016-08-07 02:15:03 -04:00
}
2016-05-13 02:22:02 -04:00
2016-08-07 02:15:03 -04:00
.formDialogContent {
flex-grow: 1;
}
2016-05-13 02:22:02 -04:00
2016-08-04 19:48:54 -04:00
.dialogContentInner {
2016-08-07 16:57:46 -04:00
padding: .5em 1.5em 30vh 1.5em;
2016-05-15 12:30:32 -04:00
}
2016-08-04 19:48:54 -04:00
.dialog-content-centered {
margin: 0 auto;
max-width: 53em;
2016-05-16 01:38:17 -04:00
}
2016-08-04 19:48:54 -04:00
.dialogContentTitle {
2016-05-16 13:11:49 -04:00
margin-top: 1em;
}
2016-08-30 14:13:41 -04:00
2016-09-07 01:48:14 -04: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 14:13:41 -04:00
@media all and (min-width: 1280px) {
2016-09-07 01:48:14 -04:00
.formDialogFooterItem {
max-width: 70%;
}
2016-08-30 14:13:41 -04:00
.dialogContentInner {
padding-left: 2em;
padding-right: 2em;
}
}