fix: Checkbox-Layout im Netzwerkanalyse-Modal korrigiert

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dieser Commit ist enthalten in:
Claude Dev
2026-03-16 00:41:32 +01:00
Ursprung d9fbb955dc
Commit 432147de4b

Datei anzeigen

@@ -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;
}