New release form semantics
- correctly render labels without help text - accessibility: fix external release button focus - accessibility: test form aspects in browser test
This commit is contained in:
parent
28643cc276
commit
a62521f241
3 changed files with 11 additions and 4 deletions
|
@ -10,6 +10,7 @@ fieldset legend {
|
|||
|
||||
fieldset label {
|
||||
display: block;
|
||||
margin-bottom: 0.6em;
|
||||
}
|
||||
|
||||
fieldset label:has(input[type="text"]),
|
||||
|
@ -19,7 +20,11 @@ fieldset label:has(input[type="number"]) {
|
|||
|
||||
fieldset .help {
|
||||
font-weight: var(--font-weight-normal);
|
||||
display: block !important; /* overrides another rule in this file, remove when obsolete */
|
||||
}
|
||||
|
||||
.form fieldset .help { /* overrides other .form .help rules in this file, remove when obsolete */
|
||||
display: block !important;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
fieldset input[type="checkbox"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue