-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Appbutton in tab bar #46
Comments
The button is always on navigation toolbar, but the "in titlebar" tricks places it windows to left corner. Move it with this code to a different position. You will need to adjust the code for your needs. #PanelUI-button {
-moz-appearance: none !important;
-moz-box-ordinal-group: 0 !important;
position: absolute !important;
top: 22px !important;
left: 2px !important;
} You also may have to adjust tabs toolbar by moving it to the right: #TabsToolbar{
-moz-padding-start: 30px !important;
} |
Awesome, thank you! How can I also remove round corners from this button? |
Try the inner button |
Still doesn't work. |
#PanelUI-button #PanelUI-menu-button .toolbarbutton-badge-stack {
border-radius: 0 !important;
} or better this for more cases #PanelUI-button,
#PanelUI-button #PanelUI-menu-button,
#PanelUI-button #PanelUI-menu-button .toolbarbutton-badge-stack,
#PanelUI-button #PanelUI-menu-button .toolbarbutton-icon {
border-radius: 0 !important;
} |
Now it indeed works. |
Good to hear. |
I want application button back in the tab bar, where it was before.
I use Linux, and
appbutton_in_titlebar.css
is Windows only.The text was updated successfully, but these errors were encountered: