From bac095c1095f309d082c92f89ea18e06d28be938 Mon Sep 17 00:00:00 2001 From: glacambre Date: Thu, 1 Nov 2018 06:24:03 +0100 Subject: [PATCH] css_util.ts: Fix navtoolboxunfocused rule not properly hiding navtoolbox --- src/lib/css_util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/css_util.ts b/src/lib/css_util.ts index 3ee16205..bc2074b4 100644 --- a/src/lib/css_util.ts +++ b/src/lib/css_util.ts @@ -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: ``, }, },