From 91882bbf8720d01cdead96d686889a8f89a7d479 Mon Sep 17 00:00:00 2001 From: tdro Date: Tue, 7 Jan 2020 16:45:59 -0500 Subject: mozilla/firefox/profile.default/chrome/userChrome: Remove auto hide sidebar for now Firefox upgrade to 72.0 --- .../firefox/profile.default/chrome/userChrome.css | 41 +++------------------- 1 file changed, 5 insertions(+), 36 deletions(-) (limited to '.mozilla') diff --git a/.mozilla/firefox/profile.default/chrome/userChrome.css b/.mozilla/firefox/profile.default/chrome/userChrome.css index 0bb26f0..997bcca 100644 --- a/.mozilla/firefox/profile.default/chrome/userChrome.css +++ b/.mozilla/firefox/profile.default/chrome/userChrome.css @@ -1,4 +1,4 @@ -/* Hide top tab bar in FF Quantum */ +/* Hide top tab bar in Firefox Quantum. */ @-moz-document url("chrome://browser/content/browser.xhtml") { #TabsToolbar { visibility: collapse !important; @@ -6,48 +6,17 @@ } } -/* Hide autocomplete results dropdown */ +/* Hide autocomplete results dropdown. */ .urlbarView { display: none !important; } -/* Auto hide sidebar */ -:root { - --sidebar-hover-width: 8px; - --sidebar-visible-width: 272px; -} - -#sidebar-box { - position: relative !important; - overflow-x: hidden !important; - margin-right: calc(var(--sidebar-hover-width) * -1) !important; - left: var(--sidebar-hover-width) !important; - min-width: var(--sidebar-hover-width) !important; - max-width: var(--sidebar-hover-width) !important; - opacity: 0 !important; -} - -#sidebar-box:hover { - margin-right: calc(var(--sidebar-visible-width) * -1) !important; - left: var(--sidebar-visible-width) !important; - min-width: var(--sidebar-visible-width) !important; - max-width: var(--sidebar-visible-width) !important; - opacity: 1 !important; -} - -#sidebar { - opacity: 0 !important; -} - -#sidebar:hover { - opacity: 1 !important; -} - -/* #sidebar-header is hidden by default, change "none" to "inherit" to restore it. */ +/* Hide sidebar header. */ #sidebar-header { display: none !important; } -/* #sidebar-splitter styles the divider between the sidebar and the rest of the browser. */ +/* Hide sidebar splitter. */ #sidebar-splitter { + display: none !important; } -- cgit v1.2.3