From 43d8fab5bb9f4ef7d0c99a572285185c77749be3 Mon Sep 17 00:00:00 2001 From: Vladan Popovic Date: Thu, 31 Oct 2019 20:33:30 +0100 Subject: [PATCH] Hide default firefox tabs Not needed when using tree style tabs. --- .config/firefox-chrome-custom/userChrome.css | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .config/firefox-chrome-custom/userChrome.css diff --git a/.config/firefox-chrome-custom/userChrome.css b/.config/firefox-chrome-custom/userChrome.css new file mode 100644 index 0000000..48c6d13 --- /dev/null +++ b/.config/firefox-chrome-custom/userChrome.css @@ -0,0 +1,4 @@ +/* hides the native tabs */ +#TabsToolbar { + visibility: collapse; +}