2021-05-31 20:52:10 +00:00
/ * Source file https : / / github . com / MrOtherGuy / firefox-csshacks / tree / master / chrome / autohide_main_toolbar . css made available under Mozilla Public License v . 2 . 0
See the above repository for updates as well as full license text . * /
2021-06-01 06:52:34 +00:00
/* This style hides the main toolbar and shows it when the cursor is over the tabs toolbar as well as whenever the focus is inside nav-bar, such as when urlbar is focused. */
2021-05-31 20:52:10 +00:00
: root { --uc-navbar-transform : -40 px }
: root [ uidensity = "compact" ] { --uc-navbar-transform : -34 px }
2021-06-01 06:52:34 +00:00
: root [ sessionrestored ] : where ( # nav-bar , # PersonalToolbar , # tab-notification-deck ) {
2021-05-31 20:52:10 +00:00
transform : translateY ( var ( --uc-navbar-transform ) )
}
2021-06-01 06:52:34 +00:00
: root [ customizing ] ,
: root [ chromehidden * = "toolbar" ] : where ( # nav-bar , # PersonalToolbar , # tab-notification-deck ) {
transform : none ! important ;
opacity : 1 ! important ;
}
# nav-bar : not ( [ customizing ] ) {
2021-05-31 20:52:10 +00:00
opacity : 0 ;
2021-06-01 06:52:34 +00:00
transition : transform 400ms ease 1 . 8s , opacity 400ms ease 1 . 8s ! important ;
2021-05-31 20:52:10 +00:00
position : relative ;
2021-06-01 06:13:36 +00:00
z-index : 2 ;
2021-05-31 20:52:10 +00:00
}
2021-06-01 06:13:36 +00:00
# titlebar { position : relative ; z-index : 3 }
2021-05-31 20:52:10 +00:00
# navigator-toolbox : focus-within > . browser-toolbar ,
2021-06-01 06:13:36 +00:00
# titlebar : hover ~ . browser-toolbar ,
# nav-bar : hover ,
# nav-bar : hover + # PersonalToolbar {
2021-05-31 20:52:10 +00:00
transform : translateY ( 0 ) ;
opacity : 1 ;
2021-06-01 06:52:34 +00:00
transition-duration : 500ms , 200ms ! important ;
2021-05-31 20:52:10 +00:00
transition-delay : 0s ! important ;
}
2021-06-01 06:52:34 +00:00
2021-05-31 20:52:10 +00:00
# PersonalToolbar { transition : transform 400 ms ease 1.8 s !important ; position : relative ; z-index : 1 }
: root [ sessionrestored ] > body > # browser { margin-top : var ( - - uc - navbar - transform ) ; }