mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Merge pull request #1128 from glacambre/fix_713
css_util.ts: Fix navtoolboxunfocused rule not properly hiding navtoolbox
This commit is contained in:
commit
f94fb9aa3d
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ export const potentialRules = {
|
|||
navtoolboxunfocused: {
|
||||
name: `:root:not([customizing]) #navigator-toolbox:not(:hover):not(:focus-within)`,
|
||||
options: {
|
||||
hide: `max-height: 0; min-height: calc(0px);`,
|
||||
hide: `max-height: 1px; min-height: calc(0px); overflow: hidden;`,
|
||||
show: ``,
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue