mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-04-23 22:11:06 -07:00
Fix: AutoHide - Adjust interaction area #501
This commit is contained in:
parent
b4b9e295a3
commit
aff13a5984
2 changed files with 14 additions and 11 deletions
|
|
@ -7841,10 +7841,15 @@
|
|||
or -moz-bool-pref("userChrome.autohide.infobar") {
|
||||
#navigator-toolbox {
|
||||
position: relative;
|
||||
}
|
||||
#navigator-toolbox:is(:hover, :focus-within) {
|
||||
z-index: 2;
|
||||
}
|
||||
#navigator-toolbox:is(:hover, :focus-within) #PersonalToolbar {
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
#navigator-toolbox:not(:hover) {
|
||||
#navigator-toolbox:not(:hover):not(:focus-within) {
|
||||
animation: 1s keepfront;
|
||||
}
|
||||
|
||||
|
|
@ -7856,10 +7861,6 @@
|
|||
z-index: 3;
|
||||
}
|
||||
}
|
||||
#PersonalToolbar {
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
#sidebar-box:is(:hover, :focus-within) {
|
||||
position: relative;
|
||||
z-index: 2 !important;
|
||||
|
|
|
|||
|
|
@ -31,9 +31,15 @@
|
|||
@include Option("userChrome.autohide.tabbar", "userChrome.autohide.navbar", "userChrome.autohide.bookmarkbar", "userChrome.autohide.infobar") {
|
||||
#navigator-toolbox {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
&:is(:hover, :focus-within) {
|
||||
z-index: 2;
|
||||
|
||||
#PersonalToolbar {
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
#navigator-toolbox:not(:hover) {
|
||||
#navigator-toolbox:not(:hover):not(:focus-within) {
|
||||
animation: 1s keepfront;
|
||||
}
|
||||
@keyframes keepfront {
|
||||
|
|
@ -45,10 +51,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
#PersonalToolbar {
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
#sidebar-box:is(:hover, :focus-within) {
|
||||
position: relative;
|
||||
z-index: 2 !important;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue