For some reason there is a bit of CSS on the documentation site urho3d.github.io/ that is making the scrollbar [size=85]tiny[/size] on webkit in main.css (main-min.css):
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.5);
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
border-radius: 10px;
}
And maybe others, but it is making the scrollbar utterly tiny on my screen, extremely thin and hard to click. Could this CSS and any related be removed?
. Or should I say the website is designed for user who has a mouse with mouse wheel. You are right to say that it is not designed to be clicked at. I guess the beauty of a design is in the eye of the beholder. Personally I hardly remember when the last time I click on the vertical scrollbar in order to scroll the page. If it really troubles you then perhaps you can use Tampermonkey to change the CSS of the website in your browser locally.