#<Select /> broken on Firefox unless it has searchable={true} prop

2 messages ยท Page 1 of 1 (latest)

blazing oar
#

Basically the title, happened when i updated to 7.17.1 before it was fine

blazing oar
#

Fixable by overwriting this change for now

/* Fixes odd Firefox behavior in Select โ€“ https://github.com/mantinedev/mantine/issues/7476 */
.mantine-Input-input {
@supports (-moz-appearance: none) {
&[readonly][aria-haspopup] {
pointer-events: all !important;
}
}
}