Credit: I found the original code at Vivaldi forums in here: https://forum.vivaldi.net/topic/26798/t ... -var-color, a guy called https://forum.vivaldi.net/user/hadden89 made it. I altered it a little tiny bit. Full credit to hadden89.
Source code files: __________
This is my own .css file content which will result in scrollbars looking like this:
Code: Select all
body::-webkit-scrollbar { width:14px !important; }
::-webkit-scrollbar-track {
background:rgba(255,255,255,1) !important;
border-radius:0px !important;
}
::-webkit-scrollbar-thumb {
background-color:#ff4147 !important;
background-image:-webkit-linear-gradient(294deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255, 255, 255,.2) 75%,transparent 75%,transparent);
min-height:17px;
border-radius:0px !important;
-webkit-box-shadow:inset 0 0 4px rgba(0,0,0,0.5) !important;
}