From d6a1a8663dc91db9a72b5fce0e61cf30f22e59e7 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Wed, 8 Jan 2020 23:51:11 +0200 Subject: [PATCH] Separate the two show behaviors --- chrome/autohide_bookmarks_toolbar.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/chrome/autohide_bookmarks_toolbar.css b/chrome/autohide_bookmarks_toolbar.css index 38c28ff..99dfe73 100644 --- a/chrome/autohide_bookmarks_toolbar.css +++ b/chrome/autohide_bookmarks_toolbar.css @@ -16,8 +16,10 @@ #PlacesToolbarItems > .bookmark-item{ padding-block: var(--uc-bm-padding) !important; } /* SELECT BOOKMARKS TOOLBAR BEHAVIOR */ -/* Comment out to disable either one of these */ +/* Comment out or delete either one of these to disable that behavior */ -#nav-bar:focus-within + #PersonalToolbar, /* Show when urlbar is focused */ -#navigator-toolbox:hover > #PersonalToolbar /* Show when cursor is over the toolbar area */ -{ transform: rotateX(0) } \ No newline at end of file +/* Show when urlbar is focused */ +#nav-bar:focus-within + #PersonalToolbar{ transform: rotateX(0) } + +/* Show when cursor is over the toolbar area */ +#navigator-toolbox:hover > #PersonalToolbar{ transform: rotateX(0) } \ No newline at end of file