Styling
Styling SA5's Autocomplete Element
Input Styling
Dropdown Styling
Dropdown Item Styling
Examples



Scrollbar Styling
Last updated
Styling SA5's Autocomplete Element



Last updated
/* Custom scrollbar styling for WebKit browsers */
.service-find_dropdown-list::-webkit-scrollbar {
width: 12px; /* Width of the scrollbar */
}
.service-find_dropdown-list::-webkit-scrollbar-track {
background: transparent; /* Transparent track for rounded corners to show */
}
.service-find_dropdown-list::-webkit-scrollbar-thumb {
background-color: dodgerblue;
border-radius: 6px; /* Match the div's border radius */
border: 3px solid dodgerblue; /* Padding to inset the scrollbar */
}
.service-find_dropdown-list::-webkit-scrollbar-thumb:hover {
background-color: #1e90ff; /* Slightly darker blue on hover */
}
/* Firefox scrollbar styling */
.service-find_dropdown-list {
scrollbar-width: thin;
scrollbar-color: dodgerblue transparent;
}