gitea/web_src/css/modules/dimmer.css

31 lines
526 B
CSS
Raw Normal View History

2024-04-26 20:58:09 +02:00
/* These are the remnants of the fomantic dimmer module */
.ui.dimmer {
position: fixed;
2024-04-26 23:20:17 +02:00
display: none;
2024-04-26 20:58:09 +02:00
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--color-overlay-backdrop);
opacity: 0;
z-index: 1000;
overflow-y: auto;
justify-content: center;
padding: 8px 0;
2024-04-26 23:25:27 +02:00
animation: fadein;
animation-duration: .2s;
2024-04-26 23:20:17 +02:00
user-select: none;
2024-04-26 20:58:09 +02:00
}
.ui.active.dimmer {
display: flex;
opacity: 1;
}
.ui.dimmer > * {
position: static;
2024-04-26 23:21:44 +02:00
margin-top: auto !important;
margin-bottom: auto !important;
2024-04-26 20:58:09 +02:00
}