You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A bit like #1217 but just removing the text entirely would be nice.
My ideal outcome is a vertical list of tabs. Only the favicon is visible, or some stylised first letter as placeholder image. Hovering the mouse cursor over this icon unfolds the full website tab title for readable text. (The format of this would be nice to change, idk, idc.) The sidebar panel thing itself would have a much smaller minimum width, like a little wider than the pinned tabs' favicons.
I hope that's what details this submission needs. Thanks either way; awesome work.
The text was updated successfully, but these errors were encountered:
Just tried out a bit. These should be the minimal styles needed to insert into userchrome.css to auto shrink/expand the sidebar. You need to experiment with the pixel values depending on your corresponding sidebery css style values.
:root {
--autohide-sidebar-extended: 320px; /* width of panel extended */
--autohide-sidebar-collapsed: 32px; /* width of panel collapsed */
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"] {
width: var(--autohide-sidebar-collapsed) !important;
transition: all 0.2s ease-in-out;
}
#sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"]:hover {
width: var(--autohide-sidebar-extended) !important;
transition: all 0.2s ease-in-out;
}
Description
A bit like #1217 but just removing the text entirely would be nice.
My ideal outcome is a vertical list of tabs. Only the favicon is visible, or some stylised first letter as placeholder image. Hovering the mouse cursor over this icon unfolds the full website tab title for readable text. (The format of this would be nice to change, idk, idc.) The sidebar panel thing itself would have a much smaller minimum width, like a little wider than the pinned tabs' favicons.
I hope that's what details this submission needs. Thanks either way; awesome work.
The text was updated successfully, but these errors were encountered: