overdodactyl / ShadowFox

A universal dark theme for Firefox
https://overdodactyl.github.io/ShadowFox/
MIT License
1.32k stars 58 forks source link

Bookmarks Panel Scrollbar Color #334

Closed kstev99 closed 3 years ago

kstev99 commented 3 years ago

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

kstev99 commented 3 years ago

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