justin-lau / ui-iconpicker

A Bootstrap 3 Icon Picker implemented in AngularJS
http://justin-lau.github.io/ui-iconpicker/
MIT License
32 stars 33 forks source link

Scrollbar not visible in chrome #7

Open hobe opened 9 years ago

hobe commented 9 years ago

Chrome (tested version "39.0.2171.95 m") does not show the vertical scrollbar in the iconpicker popup! IE & FF do show the scrollbar.

justin-lau commented 9 years ago

Confirmed. PR welcome!

rdeslonde-eichleay commented 8 years ago

Pretty much a showstopper for this. Can't use it if there isn't a scrollbar

mkrijtenberg commented 7 years ago

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;
}