overdodactyl/ShadowFox

Bookmarks Panel Scrollbar Color

kstev99 opened this issue · 1 comments

First THANK YOU!! for all of the work you put into this project!! I have been using a dark theme for several months now and thanks to you the drop down menus are now dark as well. I have been using the following code in usercontent.css which makes the scrollbars on the browser a dark blue

/* Scrollbar colors and width - applied globally */
:root{
scrollbar-color: rgb(44,44,180) rgb(0,0,48);
scrollbar-width: thin;
}

2 things: I would like to apply this same scrollbar tweak to the Bookmarks SIDE Panel, and would like to make the Sidebar much darker, perhaps True Black. Can this be achieved in usercontent or userchrome? I tried adding the following
--in-content-page-background: black !important; to the colorOverride.css but wasn't sure how that works. Does the File have to be moved to the Chrome Folder?

Thanks

I was able to achieve it with the following code and am closing this issue since it seems to be a dead board

/*CHANGE SCROLLBAR AND HEADER ON SIDE PANEL */
.panel-subview-body{
scrollbar-face-color: rgb(94, 94, 94);
scrollbar-track-color: rgb(57, 59, 65);
scrollbar-color: rgb(18,18,108) rgb(0,0,48);
scrollbar-width: auto;
}
#permList, scrollbar{
scrollbar-face-color: rgb(94, 94, 94);
scrollbar-track-color: rgb(57, 59, 65);
scrollbar-color: rgb(18,18,108) rgb(0,0,48);
scrollbar-width: auto;
}

/* Bookmarks Sidebar BLACK */
.sidebar-placesTree {
-moz-appearance: none!important;
color: var(--in-content-page-color)!important;
background-color: black!important;
opacity: 1!important