diff --git a/ui/theme.css b/ui/theme.css index 09fc7fc..bccadf8 100644 --- a/ui/theme.css +++ b/ui/theme.css @@ -1,5 +1,6 @@ @namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); +/* Toolbar colors */ :root { --toolbar-bgcolor: #000 !important; --toolbar-bgimage: linear-gradient(rgb(67, 74, 74), rgb(57, 63, 63)) !important; @@ -272,6 +273,14 @@ fill-opacity: 1 !important; } +/* Bookmark bar */ +#navigator-toolbox #PersonalToolbar { + background-color: #2f3434 !important; + background-image: none !important; + border-bottom: 1px solid #1e2222 !important; + height: 38px; +} + /* Tab bar */ #tabbrowser-tabs { background-color: #2f3434; diff --git a/userContent.css b/userContent.css index 86f17a9..0068d7a 100644 --- a/userContent.css +++ b/userContent.css @@ -1,6 +1,8 @@ @namespace html "http://www.w3.org/1999/xhtml"; @namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; +/* Try to make popups added by add-ons and their settings pages look dark too, + * doesn't always work tho because of their weird styles */ @-moz-document url-prefix("moz-extension://") { :root { --popup-background: #292929;