release: 5.0.7 — Checkbox-Breite fix

.form-group input[type='checkbox'] hatte width:auto, das die 16x16 aus
der globalen Regel ueberschrieben hat (Klassen-Specificity > Type-
Specificity). Vor 5.0.6 unsichtbar weil der rotated-border-Checkmark
absolut positioniert war und keine Box-Breite brauchte. Mit dem 5.0.6
inline-SVG-Checkmark brauchts echte Breite — daher in den Settings
plotzlich nur noch 1-2px schmale Vertikalstreifen sichtbar statt
echter Checkboxen.

Fix: width:16px explicit in der .form-group-Regel, behaelt die globale
Groesse bei.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
xRangerDE
2026-05-19 04:19:22 +02:00
co-authored by Claude Opus 4.7
parent 5e78068169
commit 098d2c6a58
3 changed files with 8 additions and 4 deletions
+5 -1
View File
@@ -1792,7 +1792,11 @@ select option {
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
width: auto;
/* width:auto wuerde Checkbox auf 0/1px kollabieren, weil
appearance:none + kein Content. Wir wollen die 16x16 aus der
globalen Regel — daher explicit width:16px hier nochmal, damit
die Klassen-Specificity nicht den globalen Wert ueberschreibt. */
width: 16px;
}
.language-picker {