aboutsummaryrefslogtreecommitdiff
path: root/.config/firefox/chrome/userChrome.css
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-03-02 13:44:06 +0100
committerPatrick Spek <p.spek@tyil.nl>2021-08-14 11:59:31 +0200
commit4b769e3a6addf7e2dfaf0f2480a78ebec5746f26 (patch)
treea3a0d20969b114cf56fabaefb7f7f2420e376642 /.config/firefox/chrome/userChrome.css
parent7ccb879fb2f03be90b1e63f07e9d84a4daf8cb59 (diff)
Try Firefox in a managed directory again
Diffstat (limited to '.config/firefox/chrome/userChrome.css')
-rw-r--r--.config/firefox/chrome/userChrome.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/.config/firefox/chrome/userChrome.css b/.config/firefox/chrome/userChrome.css
new file mode 100644
index 0000000..e2ab027
--- /dev/null
+++ b/.config/firefox/chrome/userChrome.css
@@ -0,0 +1,18 @@
+/* Hide default tab bar */
+#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
+ opacity: 0;
+ pointer-events: none;
+}
+#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
+ visibility: collapse !important;
+}
+
+/* Hide header of sidebar */
+#sidebar-header {
+ display: none;
+}
+
+/* Make unread tabs italic */
+tab-item.unread .label-content {
+ font-style: italic;
+}