-
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
add move bookmark toolbar to bottom right... #723
base: master
Are you sure you want to change the base?
Conversation
overlaying browser content translucent to save space
Hi, I don't think this is the best way to add such a feature. Please use the discussion thread to talk about "new features" instead of commiting to main files directly. Test this. That way you will keep the top toolbar, which you can hide with default browser toolbar context menu. #navigator-toolbox {
z-index: 3 !important;
}
#PlacesToolbar {
opacity: 0.01 !important;
z-index: 1000 !important;
position: fixed !important;
right: 0 !important;
bottom: 0 !important;
width: 50vw !important;
border-top: unset !important;
}
/* set visibility 100% on mouse over */
#PlacesToolbar:hover {
opacity: 1 !important;
background: var(--general_toolbar_color_navbar, inherit) !important;
} |
no problem. using a variant of this and thought to maybe contribute it. don't want to make a big thing of it.
ok, why? my code hides the toolbar fine just as well. what is the difference? i see you are using
that makes it virtually invisible. not my intention. want to be aware that it is there but able to read through it. will try it with a raised opacity s.b. though. |
works the same. less rules though, so i'll stick with it. Thanks! question: why is |
Some width value is needed or the bookmarks might extend beyond the visible area of the window, because |
ic thx! what's the reason that |
hmm, weird. after a restart of firefox 133.0.3 the toolbar now sticks below the navbar on top with the styles from above in using the modified any idea? |
I just realized hiding bookmarks toolbar also makes bookmarks inaccessible, so keep using your code, if you do not need the additional top toolbar. |
overlaying browser content translucently to save space