2019-11-02 13:53:31 -05:00
|
|
|
@keyframes vex-fadeout {
|
2020-09-03 09:41:01 -05:00
|
|
|
0% {
|
|
|
|
opacity: 1; }
|
|
|
|
100% {
|
|
|
|
opacity: 0; } }
|
2019-11-02 13:53:31 -05:00
|
|
|
|
2019-10-17 10:09:33 -05:00
|
|
|
/* Infobar */
|
|
|
|
.vex-theme-bottom-right-corner .vex-dialog-message {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
/* Place above statusbar */
|
|
|
|
.vex.vex-theme-bottom-right-corner .vex-content {
|
|
|
|
bottom: 40px !important;
|
|
|
|
right: 10px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Vex dialogs */
|
|
|
|
.vex-open .vex-overlay {
|
|
|
|
/* TODO: remove specific z-index from our codebase
|
|
|
|
so that the following line can also be removed */
|
|
|
|
z-index: 2000;
|
2020-09-09 04:02:15 -05:00
|
|
|
background-color: #1c5fa814;
|
2019-11-28 04:06:31 -06:00
|
|
|
min-height: 100%;
|
2019-11-29 02:50:16 -06:00
|
|
|
min-width: 100%;
|
2019-11-28 04:06:31 -06:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
2019-10-17 10:09:33 -05:00
|
|
|
}
|
|
|
|
/* dialog shown when user is idle */
|
|
|
|
.vex-open .loleaflet-user-idle {
|
2019-11-06 04:00:51 -06:00
|
|
|
background: #ffffffe0 !important;
|
|
|
|
font-size: xx-large !important;
|
|
|
|
color: #7a8592 !important;
|
|
|
|
text-align: center !important;
|
2019-10-17 10:09:33 -05:00
|
|
|
}
|
|
|
|
.vex-open .loleaflet-user-idle .vex-dialog-buttons {
|
2019-11-06 04:00:51 -06:00
|
|
|
display: none !important;
|
2019-10-17 10:09:33 -05:00
|
|
|
}
|
2019-11-02 13:53:31 -05:00
|
|
|
|
2020-03-12 09:36:14 -05:00
|
|
|
.vex.vex-theme-plain, .vex.vex-theme-bottom-right-corner{
|
2019-10-17 10:09:33 -05:00
|
|
|
z-index: 2001 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vex.vex-theme-plain .vex-content{
|
|
|
|
border: 1px solid #a4a4a4;
|
|
|
|
box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.15), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: 4px;
|
2020-10-28 08:28:59 -05:00
|
|
|
outline: none;
|
2019-10-17 10:09:33 -05:00
|
|
|
}
|
|
|
|
|
2019-11-02 13:53:31 -05:00
|
|
|
.vex-closing {
|
2019-12-11 17:53:47 -06:00
|
|
|
-webkit-animation: vex-fadeout .25s forwards;
|
|
|
|
animation: vex-fadeout .25s forwards;
|
2019-11-02 13:53:31 -05:00
|
|
|
}
|
2020-09-03 09:41:01 -05:00
|
|
|
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='date'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='datetime'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='datetime-local'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='email'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='month'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='number'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='password'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='search'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='tel'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='text'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='time'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='url'], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type='week']{
|
2019-11-06 03:12:40 -06:00
|
|
|
width: 95% !important;
|
|
|
|
}
|
2019-11-02 13:53:31 -05:00
|
|
|
|
2019-12-11 17:53:47 -06:00
|
|
|
.vex {
|
|
|
|
position: fixed;
|
|
|
|
overflow: auto;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|