toggle visibility of floating navbar with a shortcut #466
roadbloack
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
|
i think i found a solution to this, i dont know what i was doing before, but adding :root[titlepreface*=""]
&:not(:hover) {
@media not -moz-pref("ultima.navbar.position","bottom") {
top: calc(var(--uc-topbars-combined-height) - (var(--uc-topbars-combined-height) * 2) - 10px);
transition: top 0.3s ease 0.5s !important;
}
@media -moz-pref("ultima.navbar.position","bottom") {
bottom: calc(var(--uc-topbars-combined-height) - (var(--uc-topbars-combined-height) * 2) - 10px);
transition: bottom 0.3s ease 0.5s !important;
}
}this works |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i recently switched from zen to firefox after i found this beautiful theme, so first of all, thanks for making it
now, about this idea
when i was using zen, there was a similar option for floating navbar and there was a shortcut to make it not hide itself
i think this can be done in firefox using the userchrome toggle extended extension
i have tried this but i cant seem to get it to work
in the
settings-navbar.cssfilecommenting this of code, i can make the nav bar not auto hide
but i cant seem to make this work with
:root[titlepreface*=""]as that selector needs to top level, it wont work inside the @media section
i cant think of any way to make it work, as i am not that accustomed to css
any help would be appreciated
Beta Was this translation helpful? Give feedback.
All reactions