aboutsummaryrefslogtreecommitdiff
path: root/.mozilla
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-01-07 16:45:59 -0500
committertdro <tdro@users.noreply.github.com>2020-01-07 16:45:59 -0500
commit91882bbf8720d01cdead96d686889a8f89a7d479 (patch)
tree527679677dac666d6325ac277c5012f98ec6950a /.mozilla
parente8c9e0c766df7fb221061dc44b0996d258a34d49 (diff)
downloaddotfiles-91882bbf8720d01cdead96d686889a8f89a7d479.tar.gz
dotfiles-91882bbf8720d01cdead96d686889a8f89a7d479.tar.bz2
dotfiles-91882bbf8720d01cdead96d686889a8f89a7d479.zip
mozilla/firefox/profile.default/chrome/userChrome: Remove auto hide sidebar for now
Firefox upgrade to 72.0
Diffstat (limited to '.mozilla')
-rw-r--r--.mozilla/firefox/profile.default/chrome/userChrome.css41
1 files changed, 5 insertions, 36 deletions
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;
}