optimistex / ngx-select-ex

Angular based replacement for select boxes
https://optimistex.github.io/ngx-select-ex/
MIT License
111 stars 42 forks source link

Hiding disable item in dropdown #179

Closed GazousGit closed 4 years ago

GazousGit commented 4 years ago

Hello,

I'm trying to hide disabled items in the dropdown, is this even achievable trough CSS?

This approch does not seems to work:

.ngx-select__disabled { display: none; }

If anyone got any idea I'll take it.

GazousGit commented 4 years ago

Nevermind, a simple:

.dropdown-item.disabled { display: none !important; }

did the trick :-)