ui-iconpicker icon indicating copy to clipboard operation
ui-iconpicker copied to clipboard

Scrollbar not visible in chrome

Open hobe opened this issue 9 years ago • 3 comments

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

hobe avatar Mar 22 '15 11:03 hobe

Confirmed. PR welcome!

justin-lau avatar May 22 '15 15:05 justin-lau

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

rdeslonde-eichleay avatar Apr 21 '16 17:04 rdeslonde-eichleay

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

mkrijtenberg avatar Sep 14 '16 13:09 mkrijtenberg