Add temporary danger restart mode
All checks were successful
Build & Push Docker Image to Gitea Registry / build-and-push (push) Successful in 12s

This commit is contained in:
Kroonk
2026-05-21 17:21:52 +02:00
parent d62224366b
commit fddb2e3544
4 changed files with 143 additions and 10 deletions

View File

@@ -452,6 +452,19 @@ main {
opacity: 0.48;
}
.ghost-button.danger-button {
color: #fecdd3;
border-color: rgba(251, 113, 133, 0.28);
}
.ghost-button.danger-button:hover,
.ghost-button.danger-button:focus-visible,
.ghost-button.danger-button.is-active-danger {
color: #fff;
background: rgba(251, 113, 133, 0.18);
border-color: rgba(251, 113, 133, 0.58);
}
.admin-shell {
display: grid;
gap: 14px;
@@ -569,6 +582,17 @@ main {
flex: 0 0 auto;
}
.container-line .ghost-button.is-danger-enabled {
color: #fecdd3;
border-color: rgba(251, 113, 133, 0.48);
}
.danger-state {
margin: -2px 0 10px;
color: #fecdd3;
font-size: 0.82rem;
}
.ops-line.is-warning span {
color: #fde68a;
}