Why are scroll bars in the Universal GUI so very small and light grey? Users barely recognize them the first time.
Or is it easy to adjust them with custom CSS?
Solved
Very small scroll bars
Best answer by Kasper Reijnders
You can do this with custom css. For example by using this code, I've added !important to all because else they are not specific enough.
/* width */
::-webkit-scrollbar {
width: 20px !important;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey !important;
border-radius: 10px !important;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: red !important;
border-radius: 10px !important;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #b30000 !important;
}
This topic has been closed for replies.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.