Skip to content
Merged
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions css-forms-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -892,10 +892,10 @@ input:is([type="color"], [type="button"], [type="reset"], [type="submit"]) {

/* These min-size rules ensure accessibility by following WCAG rules:
* https://www.w3.org/WAI/WCAG22/Understanding/target-size-minimum.html
* The 1.2em is there to make sure that options without text don't change
* The 1lh is there to make sure that options without text don't change
* the block size of the button. */
min-block-size: max(24px, 1lh);
min-inline-size: 24px;
min-block-size: calc-size(auto, max(size, 24px, 1lh));
min-inline-size: calc-size(auto, max(size, 24px));

/* box-sizing comes from existing UA styles which happen to
* already be interoperable. */
Expand Down