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

86 lines
1.6 KiB
CSS
Raw Normal View History

2016-09-08 13:32:30 -07:00
.dialogContainer {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999999 !important;
contain: strict;
}
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
-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);
border: 0;
padding: 0;
2016-04-10 21:24:16 -07:00
will-change: transform;
2016-09-08 13:32:30 -07:00
/* Strict does not work well with actionsheet */
2016-05-29 14:02:47 -07:00
contain: style;
2016-01-29 19:43:11 -07:00
}
2016-08-01 22:55:52 -07:00
.dialog-fixedSize {
2016-09-08 13:32:30 -07:00
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0;
border-radius: 0;
max-height: none;
max-width: none;
2016-09-07 23:15:44 -07:00
}
2016-01-30 13:59:09 -07:00
@media all and (min-width: 1280px) and (min-height: 720px) {
2016-08-01 22:55:52 -07:00
.dialog-medium {
2016-09-08 13:32:30 -07:00
position: static;
width: 80%;
height: 80%;
2016-01-30 13:59:09 -07:00
}
2016-09-06 22:48:14 -07:00
.dialog-medium-tall {
2016-09-08 13:32:30 -07:00
position: static;
width: 80%;
height: 90%;
2016-09-06 22:48:14 -07:00
}
2016-08-01 22:55:52 -07:00
.dialog-small {
2016-09-08 13:32:30 -07:00
position: static;
width: 60%;
height: 80%;
2016-09-07 23:15:44 -07:00
}
2016-01-30 13:59:09 -07:00
2016-08-01 22:55:52 -07:00
.dialog-fullscreen-border {
2016-09-08 13:32:30 -07:00
position: static;
width: 90%;
height: 90%;
2016-01-30 13:59:09 -07:00
}
}
.noScroll {
overflow-x: hidden !important;
overflow-y: hidden !important;
2016-03-22 10:46:57 -07: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-09 23:54:03 -07:00
z-index: 999999 !important;
2016-03-22 10:46:57 -07:00
transition: opacity ease-out 0.2s;
}
2016-08-01 22:55:52 -07:00
.dialogBackdropOpened {
2016-09-07 10:17:26 -07:00
opacity: .7;
2016-03-22 10:46:57 -07:00
}