aboutsummaryrefslogtreecommitdiff
path: root/.config/firefox/chrome/userChrome.css
diff options
context:
space:
mode:
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;
+}