major update

This commit is contained in:
2026-03-04 15:56:58 +01:00
parent 16759a2732
commit 8f4dd5840d
478 changed files with 24313 additions and 8201 deletions

View File

@@ -1473,6 +1473,38 @@
var(--app-form-element-focus-color);
}
input:not(
[type="submit"],
[type="button"],
[type="reset"],
[type="checkbox"],
[type="radio"],
[type="range"],
[type="file"]
)[readonly]:not([disabled]),
textarea[readonly]:not([disabled]),
select[readonly]:not([disabled]) {
--app-background-color: var(--app-form-element-readonly-background-color);
--app-border-color: var(--app-form-element-readonly-border-color);
--app-color: var(--app-form-element-readonly-color);
--app-box-shadow: inset 0 0 0 0.0625rem var(--app-form-element-readonly-border-color);
}
input:not(
[type="submit"],
[type="button"],
[type="reset"],
[type="checkbox"],
[type="radio"],
[type="range"],
[type="file"]
)[readonly]:not([disabled]):focus,
textarea[readonly]:not([disabled]):focus,
select[readonly]:not([disabled]):focus {
--app-box-shadow: 0 0 0 var(--app-outline-width)
var(--app-form-element-readonly-focus-color);
}
:where(fieldset[disabled])
:is(
input:not([type="submit"], [type="button"], [type="reset"]),