Joey Arhar

Results 314 comments of Joey Arhar

So should we just have a user-agent style rule that looks like this? The `visibility:hidden` would add padding so the actual content of the options is still rendered at the...

I threw together a [work in progress patch](https://chromium-review.googlesource.com/c/chromium/src/+/5514970) to add checkmarks next to selected options by adding this to the UA stylesheet: ```css select option::before { content: ''; display: inline-block;...

I figure we should match the down arrow in the default button and use an svg, and I think that using a unicode character might have other issues. We can...

> I cover this quite in-depth in this older proposal for an indicator pseudo Very nice! Yeah this has a lot of similarities with the checkbox we are talking about...

> This adds complexity in terms of design and UA style standardization Yeah it will be hard to standardize this, but it will also be hard to standardize the other...

> could it be due to the property limitations mentioned here? No, considering that its still `::part(marker)` that I'm using in the prototype. > something the browser renders if someone...

> Should we encourage people to make their own `` in order to customize the marker and consider getting rid of `::marker` entirely if it isn't useful? The more I...

I think that if we replace the svg with a character that looks like the svg, like "⌄", then it would be more customizable. So instead of this: ```css background-image:...

I am planning on experimenting with replacing the svg data url with an actual svg element in the user agent shadowroot to see if that it more stylable.

Edit: moved to https://github.com/openui/open-ui/issues/863#issuecomment-2093446213