-
Good day all! I was wondering if it was possible to change the display of the main Sidebery button to either just show the icon or add different text? Please advise. Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
mbnuqw
Jun 28, 2023
Replies: 1 comment
-
It's a part of Firefox UI, so Sidebery can't change anything inside this block. You can try to use userChrome.css hack to change it (ask here), but I doubt it's possible to replace dropdown to icons here. In v5 (current beta) you can show the name of an active panel instead of just "Sidebery". Personally, I use this userChrome.css hack to decrease size of this block: /**
* Decrease size of header
*/
#sidebar-header {
font-size: 1.2em !important;
padding: 2px 6px 2px 3px !important;
}
#sidebar-header #sidebar-close {
padding: 3px !important;
}
#sidebar-header #sidebar-close .toolbarbutton-icon {
width: 14px !important;
height: 14px !important;
opacity: 0.6 !important;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
n1x9
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's a part of Firefox UI, so Sidebery can't change anything inside this block. You can try to use userChrome.css hack to change it (ask here), but I doubt it's possible to replace dropdown to icons here. In v5 (current beta) you can show the name of an active panel instead of just "Sidebery".
Personally, I use this userChrome.css hack to decrease size of this block:
Before