ui-iconpicker
ui-iconpicker copied to clipboard
Scrollbar not visible in chrome
Chrome (tested version "39.0.2171.95 m") does not show the vertical scrollbar in the iconpicker popup! IE & FF do show the scrollbar.
Confirmed. PR welcome!
Pretty much a showstopper for this. Can't use it if there isn't a scrollbar
There is some code in scss file which makes the scrollbar inivisble for webkit browsers:
&::-webkit-scrollbar {
width: 0.1em;
}
In the dist css you can remove this code:
.ui-iconpicker > ul.dropdown-menu::-webkit-scrollbar {
width: 0.1em;
}