From 432147de4b57eabb4bf696d82cd8079ac77e03cd Mon Sep 17 00:00:00 2001 From: Claude Dev Date: Mon, 16 Mar 2026 00:41:32 +0100 Subject: [PATCH] fix: Checkbox-Layout im Netzwerkanalyse-Modal korrigiert Co-Authored-By: Claude Opus 4.6 (1M context) --- src/static/css/network.css | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/static/css/network.css b/src/static/css/network.css index f4e014e..3653df2 100644 --- a/src/static/css/network.css +++ b/src/static/css/network.css @@ -665,3 +665,46 @@ .network-empty-state-text { font-size: 14px; } + +/* Fix: Lagen-Checkboxen im Netzwerk-Modal */ +.network-incident-option { + display: flex !important; + flex-direction: row !important; + align-items: center !important; + gap: var(--sp-md); + padding: var(--sp-md) var(--sp-lg); + cursor: pointer; + font-size: 13px; + color: var(--text-primary); + text-transform: none; + letter-spacing: normal; + font-weight: 400; + margin-bottom: 0; +} + +.network-incident-option input[type="checkbox"] { + flex-shrink: 0; + width: 16px; + height: 16px; + margin: 0; + accent-color: var(--accent); + cursor: pointer; +} + +.network-incident-option span { + text-transform: none; + letter-spacing: normal; + font-weight: 400; + font-size: 13px; + color: var(--text-primary); +} + +.network-incident-option .incident-option-type { + font-size: 10px; + font-weight: 500; + color: var(--text-disabled); + margin-left: auto; + flex-shrink: 0; + text-transform: uppercase; + letter-spacing: 0.5px; +}