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

116 lines
2.4 KiB
CSS
Raw Normal View History

2016-03-23 12:03:17 -07:00
.dialog {
2016-01-29 19:43:11 -07:00
margin: 0;
2016-05-10 11:13:26 -07:00
border-radius: 1px;
2016-03-22 10:46:57 -07:00
z-index: 999999 !important;
position: fixed;
margin: 24px 40px;
-webkit-font-smoothing: antialiased;
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
height: auto;
border: 0;
padding: 0;
2016-04-10 21:24:16 -07:00
will-change: transform;
2016-01-29 19:43:11 -07:00
}
2016-03-23 12:03:17 -07:00
.dialog.fixedSize {
2016-01-30 13:59:09 -07:00
position: fixed !important;
top: 0 !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
margin: 0 !important;
border-radius: 0 !important;
max-height: none !important;
max-width: none !important;
2016-03-22 10:46:57 -07:00
width: auto;
2016-01-30 13:59:09 -07:00
}
2016-04-03 10:34:52 -07:00
.dialog.centeredDialog {
top: 50%;
left: 50%;
max-width: 70%;
}
2016-01-30 13:59:09 -07:00
@media all and (min-width: 1280px) and (min-height: 720px) {
2016-03-23 12:03:17 -07:00
.dialog.medium {
2016-01-30 13:59:09 -07:00
top: 10% !important;
bottom: 10% !important;
left: 10% !important;
right: 10% !important;
}
2016-03-23 12:03:17 -07:00
.dialog.small {
2016-01-30 13:59:09 -07:00
top: 10% !important;
bottom: 10% !important;
left: 20% !important;
right: 20% !important;
}
}
@media all and (min-width: 1280px) and (min-height: 720px) {
2016-03-23 12:03:17 -07:00
.dialog.fullscreen-border {
2016-01-30 13:59:09 -07:00
top: 5% !important;
bottom: 5% !important;
left: 5% !important;
right: 5% !important;
}
}
.noScroll {
overflow-x: hidden !important;
overflow-y: hidden !important;
2016-03-22 10:46:57 -07:00
}
2016-03-23 12:03:17 -07:00
.dialog > * {
2016-03-22 10:46:57 -07:00
padding: 0 24px;
}
2016-03-23 12:03:17 -07:00
.dialog .buttons {
2016-03-22 10:46:57 -07:00
position: relative;
padding: 8px 8px 8px 24px;
margin: 0;
color: #3f51b5;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-direction: row;
-webkit-flex-direction: row;
flex-direction: row;
-ms-flex-pack: end;
-webkit-justify-content: flex-end;
justify-content: flex-end;
}
.dialogBackdrop {
background-color: #000;
opacity: 0;
position: fixed !important;
top: 0 !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
margin: 0 !important;
z-index: 999998 !important;
transition: opacity ease-out 0.2s;
}
2016-03-23 12:39:59 -07:00
.dialogBackdrop.opened {
opacity: .6;
}
2016-03-22 10:46:57 -07:00
2016-03-23 12:03:17 -07:00
.dialog::backdrop {
2016-03-22 10:46:57 -07:00
opacity: 0;
background-color: #000;
transition: opacity ease-out 0.2s;
}
2016-04-25 20:52:21 -07:00
.mouseIdle .dialog::backdrop {
cursor: none !important;
}
2016-03-23 12:03:17 -07:00
.dialog.opened::backdrop {
2016-03-22 10:46:57 -07:00
opacity: .6;
}