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

168 lines
2.7 KiB
CSS
Raw Normal View History

2016-09-08 16:32:30 -04: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 15:03:17 -04:00
.dialog {
2016-01-29 21:43:11 -05:00
margin: 0;
2016-09-18 01:52:10 -04:00
border-radius: 4px;
2016-03-22 13:46:57 -04:00
-webkit-font-smoothing: antialiased;
border: 0;
padding: 0;
2016-04-11 00:24:16 -04:00
will-change: transform;
2016-09-08 16:32:30 -04:00
/* Strict does not work well with actionsheet */
2016-05-29 17:02:47 -04:00
contain: style;
2016-09-18 12:08:32 -04:00
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);
2016-01-29 21:43:11 -05:00
}
2016-08-02 01:55:52 -04:00
.dialog-fixedSize {
2016-09-08 16:32:30 -04:00
border-radius: 0;
max-height: none;
max-width: none;
2016-09-08 02:15:44 -04:00
}
2016-09-09 00:49:38 -04:00
.dialog-fullscreen {
2016-09-09 02:59:23 -04:00
/* Needed due to formDialog style */
position: fixed !important;
2016-09-09 00:49:38 -04:00
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0;
2016-09-18 12:08:32 -04:00
box-shadow: none;
2016-09-09 00:49:38 -04:00
}
2016-10-14 12:22:04 -04:00
@keyframes scaledown {
from {
opacity: 1;
transform: none;
}
to {
opacity: 0;
transform: scale(0);
}
}
@keyframes scaleup {
from {
transform: scale(0);
}
to {
transform: none;
}
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeout {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes slideup {
from {
opacity: 0;
transform: translate3d(0, 30%, 0);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes slidedown {
from {
opacity: 1;
transform: none;
}
to {
opacity: 0;
transform: translate3d(0, 30%, 0);
}
}
2016-09-09 02:59:23 -04:00
@media all and (max-width: 1280px), all and (max-height: 720px) {
2016-09-23 02:57:24 -04:00
.dialog-fixedSize, .dialog-fullscreen-lowres {
2016-09-09 02:59:23 -04:00
position: fixed !important;
top: 0 !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
margin: 0 !important;
2016-09-18 12:08:32 -04:00
box-shadow: none;
2016-09-08 17:30:19 -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-09-08 16:32:30 -04:00
width: 80%;
height: 80%;
2016-01-30 15:59:09 -05:00
}
2016-09-07 01:48:14 -04:00
.dialog-medium-tall {
2016-09-08 16:32:30 -04:00
width: 80%;
height: 90%;
2016-09-07 01:48:14 -04:00
}
2016-08-02 01:55:52 -04:00
.dialog-small {
2016-09-08 16:32:30 -04:00
width: 60%;
height: 80%;
2016-09-08 02:15:44 -04:00
}
2016-01-30 15:59:09 -05:00
2016-08-02 01:55:52 -04:00
.dialog-fullscreen-border {
2016-09-08 16:32:30 -04:00
width: 90%;
height: 90%;
2016-01-30 15:59:09 -05:00
}
}
.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-09-23 02:57:24 -04:00
opacity: .6;
2016-03-22 13:46:57 -04:00
}