Page 1 of 1

scrollbar width

Posted: 03 Oct 2021, 11:56
by christianch
Hi ,

What is the better way for enlarge the right scrollbar? (science skin)

I use this ,it is working with safari, chrome but not with FF:
Code
.sb-scrollbar::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 18px;
}

.sb-scrollbar::-webkit-scrollbar-thumb {
    background-color: #327dba;
}

.root-scrollbar::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 18px;
}
Thanks

Re: scrollbar width

Posted: 03 Oct 2021, 12:05
by mjau-mjau
Sorry no. Firefox does not support -webkit- scrollbar "width". In Firefox, you can set scrollbar-width thin or normal / auto, but not thicker than default.
https://developer.mozilla.org/en-US/doc ... lbar-width

Personally, I don't see why you need to edit or increase the scrollbar width. Most users don't use the scrollbar for anything else than a visual indicator, as touch/mousewheel/trackpage is far superior for scrolling.

Re: scrollbar width

Posted: 03 Oct 2021, 12:21
by christianch
Thank Karl!
Personally, I don't see why you need to edit or increase the scrollbar width. Most users don't use the scrollbar for anything else than a visual indicator, as touch/mousewheel/trackpage is far superior for scrolling.
Simply because I had several feedback on the subject ..... but you right !