Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
3c74836
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 5, 2025
ac87b83
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 5, 2025
6a36817
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 5, 2025
065d2cd
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 5, 2025
d674097
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 5, 2025
135f65f
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 5, 2025
386e21f
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 5, 2025
1e3c536
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 8, 2025
c8db311
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 8, 2025
e2d27dc
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Aug 9, 2025
3c47a76
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 10, 2025
6a5d635
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 10, 2025
fd3fcfc
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 10, 2025
2ad8f86
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 16, 2025
b521864
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 16, 2025
a3286ae
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 16, 2025
9fd1f8e
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 16, 2025
ae39880
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 16, 2025
a7f2e9b
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 17, 2025
c391b72
chore: Update branch with latest `spinbutton-redesign` changes and su…
w3cgruntbot Sep 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: Update branch with latest spinbutton-redesign changes and su…
…bmodule updates
  • Loading branch information
w3cgruntbot committed Sep 18, 2025
commit 065d2cd0d6783d4966214b07a8be3e9c0cdd638a
8 changes: 4 additions & 4 deletions ARIA/apg/patterns/spinbutton/examples/quantity-spinbutton.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ if (enableSidebar) document.body.classList.add('has-sidebar');
<div class="spinners">
<fieldset>
<legend>Guests</legend>
<div class="fields">
<div class="field">
<div class="spinner-fields">
<div class="spinner-field">
<label for="adults">
Adults
</label>
Expand Down Expand Up @@ -159,7 +159,7 @@ if (enableSidebar) document.body.classList.add('has-sidebar');
class="visually-hidden">
</output>
</div>
<div class="field">
<div class="spinner-field">
<label for="kids">
Kids
</label>
Expand Down Expand Up @@ -195,7 +195,7 @@ if (enableSidebar) document.body.classList.add('has-sidebar');
</div>
<output for="kids" role="log" aria-live="polite" aria-relevant="additions" class="visually-hidden"></output>
</div>
<div class="field">
<div class="spinner-field">
<label for="animals">
Animals
</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
margin-block-end: 1rem;
}

.fields {
.spinner-fields {
display: flex;
flex-wrap: wrap;
gap: 2ch;
}

.field {
.spinner-field {
display: flex;
flex-direction: column;
gap: 0.5rem;
Expand Down