MyBB Community Forums

Full Version: Scrollbar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have this as a template

::-webkit-scrollbar {
    width: 12px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

but how would i make the slidey thing green and the line behind it black also how would i make the slidey thing rectangular sorry about being dumb
Please try this:
::-webkit-scrollbar {
    width: 15px;
}
 
::-webkit-scrollbar-track {
    background-color: #252525;
}
 
::-webkit-scrollbar-thumb {
    background-color: #2ecc71;
    border-width: 1px 0 1px 1px;
    border-color: #fff;
    border-style: dashed;
}