2

I am using ui-select for showing list of states. My state list is greater than ui-select dropdown height. How can I show the scrollbar inside ui-select drop down list so that user knows there are more items in the list?

Pramod
  • 41
  • 1
  • 7

1 Answers1

1

Add below css code

.ui-select-choices-content{
 overflow-y:scroll !important;
 &::-webkit-scrollbar
 {
 width: 8px !important;
 }
 &::-webkit-scrollbar-thumb
 {
 border-radius: 7px;
 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
 background-color: red;
 }
}