aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2019-10-24 10:40:07 +0200
committerPatrick Spek <p.spek@tyil.nl>2019-10-24 10:40:07 +0200
commitc70f15bca0f429d339aecff7c0f6a78c66688647 (patch)
tree28269cfe3c9d2b45609d0f95126235716c9f8f1c
parentba3f08fa5dcd908acb3409b9af104562f67a1664 (diff)
Add userChrome to Firefox
-rw-r--r--.gitignore1
-rw-r--r--.local/etc/firefox/chrome/userChrome.css11
2 files changed, 12 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 6145fdc..0326c14 100644
--- a/.gitignore
+++ b/.gitignore
@@ -79,6 +79,7 @@
!/.local/etc/firefox/
/.local/etc/firefox/*
!/.local/etc/firefox/user.js
+!/.local/etc/firefox/chrome/
# x11-misc/sxhkd
!/.config/sxhkd
diff --git a/.local/etc/firefox/chrome/userChrome.css b/.local/etc/firefox/chrome/userChrome.css
new file mode 100644
index 0000000..0200e43
--- /dev/null
+++ b/.local/etc/firefox/chrome/userChrome.css
@@ -0,0 +1,11 @@
+@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
+
+/* Hide top tabbar */
+#TabsToolbar {
+ visibility: collapse;
+}
+
+/* Hide header of sidebar */
+#sidebar-header {
+ visibility: collapse;
+}