Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Nice Select with scroll bar

I am very glad to use this wonderful library - jQuery Nice Select link. But i cant understand why this not support scroll bar especially in google chrome

Chrome :

enter image description here

And Firefox

enter image description here

I can't understand why google chrome doesn't support scroll bar or I should add it somehow?

like image 327
Nikola Marinov Avatar asked Oct 26 '22 14:10

Nikola Marinov


1 Answers

This isn't related to Firefox or Chrome. You may just be looking at the browsers with different viewports.

In any case, you need to add this to your CSS to add a scrollbar:

.list {
  max-height: 100px; // or whatever the height you want
  overflow-y: scroll !important;
}

Source: tested it myself in both Chrome and Firefox.

like image 111
Thomas Yamakaitis Avatar answered Oct 29 '22 13:10

Thomas Yamakaitis