Merge: t-paliad-096 — fix checkbox row-alignment across forms/lists/modals

This commit is contained in:
m
2026-04-30 21:45:23 +02:00

View File

@@ -2373,6 +2373,15 @@ input[type="range"]::-moz-range-thumb {
border-color: var(--color-accent);
}
/* Checkboxes and radios must not inherit the text-input width:100% / padding
that the rule above sets — without this, the visual checkbox stretches to
fill the form column and the label text wraps below it. */
.form-field input[type="checkbox"],
.form-field input[type="radio"] {
width: auto;
padding: 0;
}
.form-actions {
display: flex;
justify-content: flex-end;
@@ -5970,7 +5979,7 @@ input[type="range"]::-moz-range-thumb {
.caldav-toggle-field {
margin-top: 0.5rem;
}
.caldav-toggle-label {
label.caldav-toggle-label {
display: inline-flex;
align-items: center;
gap: 0.5rem;