fix: make disabled route control buttons visually distinct
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m6s
CI / docker (push) Successful in 59s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 41s

Disabled buttons now show reduced opacity (0.35) and muted icon
color instead of just changing the cursor.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-02 22:58:46 +02:00
parent 38b76513c7
commit 9b401558a5

View File

@@ -52,6 +52,12 @@
.segment:disabled {
cursor: not-allowed;
opacity: 0.35;
color: var(--text-muted);
}
.segment:disabled svg {
color: var(--text-muted) !important;
}
.divider {