You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR fixes some duplication and conflicts between UA styles for
select elements:
- display:inline-block was declared unconditionally for select elements
but display:inline-flex is used for base appearance, so I created a
separate section for native/primitive appearance and put
display:inline-block in there to disambiguate the base appearance
value.
- The form-controls section has a block of CSS which sets some text
properties to initial and sets box-sizing:border-box for select
elements, so I removed the duplicate values for those from the base
appearance select section.
- Inherit letter-spacing for base appearance, which was resolved in
CSSWG and implemented in chromium but not added to this spec.
Fixes#11804.
0 commit comments