Hello,
I cannot remove or set transparent border on ListBox after go focus. Can you explain me how to set it invisible please.
Julien
Hello,
I cannot remove or set transparent border on ListBox after go focus. Can you explain me how to set it invisible please.
Julien
Hi @Julien_Duprat,
You can use the respective CSS variables to style the focus state:
.my-listbox {
--rz-listbox-focus-border: none;
--rz-listbox-focus-shadow: none;
}
thank you, it's working. Its my first css customizations.
Julien