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-09-17 22:52:10 -07:00
|
|
|
border-radius: 4px;
|
2016-03-22 10:46:57 -07:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
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-09-18 09:08:32 -07: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 19:43:11 -07:00
|
|
|
}
|
|
|
|
|
2016-08-01 22:55:52 -07:00
|
|
|
.dialog-fixedSize {
|
2016-09-08 13:32:30 -07:00
|
|
|
border-radius: 0;
|
|
|
|
max-height: none;
|
|
|
|
max-width: none;
|
2016-09-07 23:15:44 -07:00
|
|
|
}
|
|
|
|
|
2016-09-08 21:49:38 -07:00
|
|
|
.dialog-fullscreen {
|
2016-09-08 23:59:23 -07:00
|
|
|
/* Needed due to formDialog style */
|
|
|
|
position: fixed !important;
|
2016-09-08 21:49:38 -07:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
2016-09-18 09:08:32 -07:00
|
|
|
box-shadow: none;
|
2016-09-08 21:49:38 -07:00
|
|
|
}
|
|
|
|
|
2016-10-14 09:22:04 -07: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-08 23:59:23 -07:00
|
|
|
@media all and (max-width: 1280px), all and (max-height: 720px) {
|
2016-09-22 23:57:24 -07:00
|
|
|
|
|
|
|
.dialog-fixedSize, .dialog-fullscreen-lowres {
|
2016-09-08 23:59:23 -07:00
|
|
|
position: fixed !important;
|
|
|
|
top: 0 !important;
|
|
|
|
bottom: 0 !important;
|
|
|
|
left: 0 !important;
|
|
|
|
right: 0 !important;
|
|
|
|
margin: 0 !important;
|
2016-09-18 09:08:32 -07:00
|
|
|
box-shadow: none;
|
2016-09-08 14:30:19 -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
|
|
|
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
|
|
|
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
|
|
|
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
|
|
|
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-22 23:57:24 -07:00
|
|
|
opacity: .6;
|
2016-03-22 10:46:57 -07:00
|
|
|
}
|