scroll
Tiny scroll bar by alopiix
Details
Authoralopiix
LicenseNo License
CategoryRoblox
Created
Updated
Size1.0 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Tiny scroll bar
@version 20220623.02.48
@namespace userstyles.world/user/alopiix
@description scroll
@author alopiix
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://web.roblox.com") {
/* ==UserStyle==
@name dark-grey scrollbar
@namespace USO Archive
@author Дмитро Ракітін
@description `My custom style for scrollbar- small width of scrollbar- little border radius- lightgrey scrollbar track on hover`
@version 20220211.15.43
@license NO-REDISTRIBUTION
@preprocessor uso
==/UserStyle== */
/* width */
::-webkit-scrollbar {
width: 5px;
max-height: 3px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 3px lightgrey;
border-radius: 7px;
}
/* Handle */
::-webkit-scrollbar-thumb {
/* background: #0000006e; */
background: lightgrey;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: black;
box-shadow: inset 0 0 2px brown;
}
}