giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
28 lines
505 B
CSS
28 lines
505 B
CSS
/* These are the remnants of the fomantic dimmer module */
|
|
|
|
.ui.dimmer {
|
|
position: fixed;
|
|
display: none;
|
|
inset: 0;
|
|
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 > .ui.modal {
|
|
position: static;
|
|
margin-top: auto !important;
|
|
margin-bottom: auto !important;
|
|
}
|