39 lines
866 B
SCSS
39 lines
866 B
SCSS
.afl-scrollbar,
|
|
.ui-autocomplete-panel {
|
|
/* width */
|
|
&::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
/* Track */
|
|
&::-webkit-scrollbar-track {
|
|
background: none;
|
|
}
|
|
|
|
/* Handle */
|
|
&::-webkit-scrollbar-thumb {
|
|
border: 2px solid rgba(0, 0, 0, 0);
|
|
background-clip: padding-box;
|
|
border-radius: 1000px;
|
|
background-color: $blue-light;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
&::-webkit-scrollbar-thumb:hover {
|
|
border: 2px solid rgba(0, 0, 0, 0);
|
|
background-clip: padding-box;
|
|
border-radius: 1000px;
|
|
background-color: $blue--hover;
|
|
}
|
|
|
|
.wrapper::-webkit-scrollbar-track-piece:end {
|
|
background: transparent;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.wrapper::-webkit-scrollbar-track-piece:start {
|
|
background: transparent;
|
|
margin-top: 10px;
|
|
}
|
|
}
|