Closed
Description
When using the multiple
mode, I noticed that the rendering isn't very good on Mac Chrome, like a native button with white text. In the HTML, I see why: type="button"
is located on the <span>
that has a class of ngx-select__selected-plural
. That type="button"
causes Chrome to set -webkit-appearance: button
in the CSS which just looks bad. I'm able to override the style to -webkit-appearance: none
but thought you may want to change the type
attribute to role
instead.