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/dialoghelper/dialoghelper.css

83 lines
1.7 KiB
CSS
Raw Normal View History

2016-03-23 15:03:17 -04:00
.dialog {
2016-01-29 21:43:11 -05:00
margin: 0;
2016-05-10 14:13:26 -04:00
border-radius: 1px;
2016-03-22 13:46:57 -04:00
z-index: 999999 !important;
position: fixed;
-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-11 00:24:16 -04:00
will-change: transform;
2016-05-29 17:02:47 -04:00
contain: style;
2016-01-29 21:43:11 -05:00
}
2016-08-02 01:55:52 -04:00
.dialog-fixedSize {
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;
width: auto;
}
2016-01-30 15:59:09 -05:00
2016-08-02 01:55:52 -04:00
.centeredDialog {
top: 50%;
left: 50%;
max-width: 70%;
max-height: 84%;
}
2016-04-03 13:34:52 -04:00
2016-01-30 15:59:09 -05:00
@media all and (min-width: 1280px) and (min-height: 720px) {
2016-08-02 01:55:52 -04:00
.dialog-medium {
2016-01-30 15:59:09 -05:00
top: 10% !important;
bottom: 10% !important;
left: 10% !important;
right: 10% !important;
}
2016-08-02 01:55:52 -04:00
.dialog-small {
2016-01-30 15:59:09 -05:00
top: 10% !important;
bottom: 10% !important;
left: 20% !important;
right: 20% !important;
}
}
@media all and (min-width: 1280px) and (min-height: 720px) {
2016-08-02 01:55:52 -04:00
.dialog-fullscreen-border {
2016-01-30 15:59:09 -05: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 13:46:57 -04:00
}
.dialogBackdrop {
background-color: #000;
opacity: 0;
position: fixed !important;
top: 0 !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
margin: 0 !important;
2016-06-10 02:54:03 -04:00
z-index: 999999 !important;
2016-03-22 13:46:57 -04:00
transition: opacity ease-out 0.2s;
}
2016-08-02 01:55:52 -04:00
.dialogBackdropOpened {
2016-03-22 13:46:57 -04:00
opacity: .6;
}