sidebery icon indicating copy to clipboard operation
sidebery copied to clipboard

How to disable this white area of sidebery?

Open 1human opened this issue 3 years ago • 4 comments

A white area appeared after I updated Firefox to 107.0b2 Snipaste_2022-10-19_19-13-36 209--539px on my laptop Sidebery version 5.0.0b27 Should I waiting for the Firefox to fix this? Thanks!

1human avatar Oct 19 '22 11:10 1human

Cannot reproduce this on 107.0b2, maybe it's some custom Sidebery CSS or/and userChrome?

mbnuqw avatar Oct 21 '22 08:10 mbnuqw

Sounds like bug 1792277. Nightly is on 108.0a1 while Beta is on 107.0b3, so update your Firefox.

dexeonify avatar Oct 22 '22 03:10 dexeonify

Cannot reproduce this on 107.0b2, maybe it's some custom Sidebery CSS or/and userChrome?

Yes... I used a custom css file from reddit which can provide an experience like edge... Looks like the sidebar is not fully folded

#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items { opacity: 0; pointer-events: none; }

#main-window:not([tabsintitlebar="true"]) #TabsToolbar { visibility: collapse !important; }

#nav-bar { margin-right:140px; }

/* Some space on top to allow window dragging */ #titlebar { appearance: none !important; height: 4px; }

/* Fix for main menu calling by Alt button */ #titlebar > #toolbar-menubar { margin-top: 10px; }

.titlebar-buttonbox-container { display: block; height: 35px; margin-top: -2px; }

.titlebar-buttonbox-container .titlebar-button { display: block; height: 40px; }

:root { --sidebar-min-width: 20px; --sidebar-visible-width: 210px; }

#sidebar-header { overflow: hidden !important; }

#sidebar-box #sidebar-header { display: none !important; }

#sidebar, #sidebar-header { position: relative !important; min-width: var(--sidebar-min-width) !important; max-width: var(--sidebar-min-width) !important; transition: .1s ease .05s; z-index:1; }

#sidebar-box:hover :-moz-any(#sidebar,#sidebar-header) { background-color: var(--toolbar-bgcolor) !important; min-width: var(--sidebar-visible-width) !important; max-width: var(--sidebar-visible-width) !important; margin-right: calc((var(--sidebar-visible-width) - var(--sidebar-min-width)) * -1) !important; z-index:1; position: relative !important; transition: .1s ease .05s;

}

1human avatar Oct 22 '22 09:10 1human

I've checked the userChrome, you just need to manually decrease width of the static sidebar or increase --sidebar-visible-width in your CSS.

mbnuqw avatar Oct 25 '22 09:10 mbnuqw