diff options
| author | Robert Günzler <r@gnzler.io> | 2026-02-10 12:32:48 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2026-02-10 12:41:25 +0100 |
| commit | 63feeb9f369fc6176e85c1c2d8fcc863caad1946 (patch) | |
| tree | 41cd5d2d1ec36e74e464caab722cc9b460153f04 /.mozilla/firefox/hibiki.default/chrome/user.sidebar.css | |
| parent | 5bd0a4aca65ecb9818ef1285982d160b6b6ff665 (diff) | |
start new
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '.mozilla/firefox/hibiki.default/chrome/user.sidebar.css')
| -rw-r--r-- | .mozilla/firefox/hibiki.default/chrome/user.sidebar.css | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/.mozilla/firefox/hibiki.default/chrome/user.sidebar.css b/.mozilla/firefox/hibiki.default/chrome/user.sidebar.css deleted file mode 100644 index 4b76246..0000000 --- a/.mozilla/firefox/hibiki.default/chrome/user.sidebar.css +++ /dev/null @@ -1,59 +0,0 @@ -/* = SIDEBAR STUFF ========================================================== */ - -/* sidebar that collapses when not hovered */ -:root { - --thin-tab-width: 31px; - --wide-tab-width: 280px; -} - -@media (-moz-bool-pref: "sidebar.revamp") { - #sidebar-box { - padding: 0 !important; - } - - #sidebar { - border-radius: 0 !important; - } -} - -#sidebar-box { - width: unset !important; - z-index: 1; - opacity: 1.0 !important; - border-right: 1px solid var(--chrome-content-separator-color); - background-color: var(--toolbar-bgcolor) !important; -} - -#sidebar-box:not([hidden]) { - min-width: var(--thin-tab-width) !important; - max-width: var(--thin-tab-width) !important; - overflow-x: hidden !important; - /* animate transition */ - transition: all 40ms !important; -} - -#sidebar-box:not([hidden]):hover, -#sidebar-box:not([hidden]):active, -#sidebar-box:not([hidden]):focus-within, -#sidebar-box:not([hidden]):-moz-drag-over, -#sidebar-box:not([hidden])>.Tab[selected="true"] { - min-width: var(--wide-tab-width) !important; - max-width: var(--wide-tab-width) !important; -} - -/* make sure the contents of the sidebar are not squished */ -#sidebar { - min-width: var(--wide-tab-width) !important; - max-width: var(--wide-tab-width) !important; - margin-left: 0 !important; -} - -/* hide sidebar header */ -#sidebar-header { - visibility: collapse; -} - -/* hide sidebar shadow */ -#sidebar-splitter { - display: none !important; -} |