diff options
author | noa@gaiwan.org | 2024-03-23 15:24:25 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-03-23 15:24:25 +0000 |
commit | e6b7f21ab6623217fbb6e7bf0b655ab58f875691 (patch) | |
tree | 0bd585a839cf15665767008882223ed3a57e131f /firefox/chrome | |
parent | 6c5ed5a82401801a364de2b230867920942144cd (diff) |
Add firefox configuration
Diffstat (limited to 'firefox/chrome')
-rw-r--r-- | firefox/chrome/userChrome.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/firefox/chrome/userChrome.css b/firefox/chrome/userChrome.css new file mode 100644 index 0000000..9dba66e --- /dev/null +++ b/firefox/chrome/userChrome.css @@ -0,0 +1,39 @@ +#TabsToolbar { + visibility: collapse !important; +} + +/* ffffe8 */ + +/*#navigator-toolbox-background {*/ +#nav-bar { + background: #e5e5d0 !important; +} +#nav-bar:-moz-window-inactive { + background: #ffffe8 !important; +} +#urlbar-background { + background: inherit !important; +} + +#back-button image, +#forward-button image, +#stop-reload-button image { + display:none !important; +} +#context-navigation .menu-iconic-left{ + -moz-margin-start:15px !important; /*adjust this for your OS/theme*/ +} +#back-button:after, +#forward-button:after, +#stop-button:after, +#reload-button:after { + content: attr(label) !important; + text-decoration: underline !important; + color: inherit !important; +} +#context-navigation{ + -moz-box-orient: vertical !important; +} +#context-navigation > .menuitem-iconic{ + -moz-box-pack: start !important; +} |