inherit
144487
0
Apr 5, 2024 11:20:29 GMT -8
greymuzzles
92
August 2009
greymuzzles
|
Post by greymuzzles on Nov 6, 2014 15:09:36 GMT -8
Just wondering if there's any coding that can be used to make scrollbars semi-transparent so that they match forum colours better. Any help would be greatly appreciated!
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Nov 6, 2014 18:35:12 GMT -8
You can add this to the bottom of your css style sheet and edit the red to the color of your choice, or set it as transparent.
::-webkit-scrollbar { height: 10px; width: 8px; background-color: inherit; }
::-webkit-scrollbar-thumb { background: #ff0000; -webkit-border-radius: 8px; height: 50px; }
::-webkit-scrollbar-track { background-color: inherit; } .sidebarr-main .content-box { border-color: @container_outer_border_color; padding: 0px !important; border-radius: 0px; }
|
|