diff options
author | Patrick Simianer <p@simianer.de> | 2017-12-06 23:07:36 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2017-12-06 23:07:36 +0100 |
commit | 8eee05b443fe81a09a73f82adc0a092f15070245 (patch) | |
tree | 0c45f52ba9af977e62b3f3f1404cfb7ef47afcfa /mozilla | |
parent | b4ac02b723e18443fc52cc76d72677a3a619b1a0 (diff) |
mozilla: userChrome.css
Diffstat (limited to 'mozilla')
-rw-r--r-- | mozilla/.mozilla/firefox/pks.default/chrome/userChrome.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/mozilla/.mozilla/firefox/pks.default/chrome/userChrome.css b/mozilla/.mozilla/firefox/pks.default/chrome/userChrome.css new file mode 100644 index 0000000..fd60432 --- /dev/null +++ b/mozilla/.mozilla/firefox/pks.default/chrome/userChrome.css @@ -0,0 +1,46 @@ +@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); + +/* list all tabs button */ +.tabs-alltabs-box-animate, .tabs-alltabs-button { display:none !important } +.tab-close-button{ display:none !important } +#stop-button { display: none !important } +#back-button { display: none !important } +#forward-button { display: none !important } +#reader-mode-button, +#readinglist-addremove-button { + display:none !important; +} + +menuitem[label="Reload Tab"], +menuitem[label="Reload All Tabs"], +menuitem[label="Mute Tab"], +menuitem[label="Close Other Tabs"], +menuitem[label="Close Tabs to the Right"], +menuitem[label="Move to New Window"] +{ + display: none !important +} + +.tabbrowser-tab:not([pinned]) { + min-width: 8px !important; +} + +.tab-content { + padding: 0 2px !important; + min-width: 4px !important; +} + +.tab-close-button, +.tabs-newtab-button, +#new-tab-button { + display: none !important; +} + +#TabsToolbar { +position: fixed; +bottom: 0em; +width: 100%; +} +#tabbrowser-tabs { width: 100%; } +#content-deck { margin-bottom: 0em; } + |