aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}