2024-04-29 14:49:50 +00:00
|
|
|
/* These are the remnants of the fomantic dimmer module */
|
|
|
|
|
|
|
|
.ui.dimmer {
|
|
|
|
position: fixed;
|
|
|
|
display: none;
|
2024-05-11 14:28:56 +00:00
|
|
|
inset: 0;
|
2024-04-29 14:49:50 +00:00
|
|
|
background: var(--color-overlay-backdrop);
|
|
|
|
opacity: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
overflow-y: auto;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 8px 0;
|
|
|
|
animation-name: fadein;
|
|
|
|
animation-duration: .2s;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.active.dimmer {
|
|
|
|
display: flex;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui.dimmer > * {
|
|
|
|
position: static;
|
|
|
|
margin-top: auto !important;
|
|
|
|
margin-bottom: auto !important;
|
|
|
|
}
|