add basic styles for the bookmark bar

This commit is contained in:
Sai Kurogetsu 2017-12-02 13:11:40 +00:00
parent b07c1d0d18
commit d43a983982
2 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,6 @@
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); @namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Toolbar colors */
:root { :root {
--toolbar-bgcolor: #000 !important; --toolbar-bgcolor: #000 !important;
--toolbar-bgimage: linear-gradient(rgb(67, 74, 74), rgb(57, 63, 63)) !important; --toolbar-bgimage: linear-gradient(rgb(67, 74, 74), rgb(57, 63, 63)) !important;
@ -272,6 +273,14 @@
fill-opacity: 1 !important; 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 */ /* Tab bar */
#tabbrowser-tabs { #tabbrowser-tabs {
background-color: #2f3434; background-color: #2f3434;

View File

@ -1,6 +1,8 @@
@namespace html "http://www.w3.org/1999/xhtml"; @namespace html "http://www.w3.org/1999/xhtml";
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; @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://") { @-moz-document url-prefix("moz-extension://") {
:root { :root {
--popup-background: #292929; --popup-background: #292929;