From 232aa45a4c0ffba0d947f8e15ae3cf7e3c5aa684 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sun, 4 Oct 2020 11:20:55 +0300 Subject: [PATCH] Add width for toolbars for oneliner compatibility --- chrome/autohide_toolbox.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/chrome/autohide_toolbox.css b/chrome/autohide_toolbox.css index c8bf99a..36a5c34 100644 --- a/chrome/autohide_toolbox.css +++ b/chrome/autohide_toolbox.css @@ -51,8 +51,12 @@ See the above repository for updates as well as full license text. */ -moz-appearance: none !important; } +/* These two exist for oneliner compatibility */ +#nav-bar{ width: var(--uc-navigationbar-width,100vw) } +#TabsToolbar{ width: calc(100vw - var(--uc-navigationbar-width,0px)) } + #navigator-toolbox:not(:focus-within):not(:hover){ - transform: rotateX(86deg); /* This may need to be lower in osx - like 75 or so */ + transform: rotateX(82deg); /* This may need to be lower in osx - like 75 or so */ opacity: 0; }