From 6b7ff0e71a371c3578917d5ebdb83df2f5b7bd4d Mon Sep 17 00:00:00 2001 From: Liunkae Date: Tue, 15 Nov 2016 22:04:49 -0600 Subject: [PATCH 1/2] Change hover of bookmark bar items Matches the hover appearance of the toolbar buttons. Fixes #5665. --- less/bookmarksToolbar.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/less/bookmarksToolbar.less b/less/bookmarksToolbar.less index f1f51348788..035c4fc0677 100644 --- a/less/bookmarksToolbar.less +++ b/less/bookmarksToolbar.less @@ -57,7 +57,8 @@ display: flex; &:hover { - background: lighten(@tabsBackground, 5%); + background: white; + box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1); } &.draggingOverLeft { From 728d1891b92138ea1b2807486b2f212e6b8fafca Mon Sep 17 00:00:00 2001 From: bradleyrichter Date: Sun, 20 Nov 2016 13:06:10 -0800 Subject: [PATCH 2/2] 3 additional tweaks to BM bar hover button @Liunkae I adjusted the colors, radius and folder chevron size for this PR. If it looks good to you, lets call it done. cc @bbondy --- less/bookmarksToolbar.less | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/less/bookmarksToolbar.less b/less/bookmarksToolbar.less index 035c4fc0677..42883b470be 100644 --- a/less/bookmarksToolbar.less +++ b/less/bookmarksToolbar.less @@ -40,8 +40,8 @@ } .bookmarkToolbarButton { - border-radius: @borderRadius; - color: black; + border-radius: 3px; + color: @mediumGray; cursor: default; font-size: 11px; line-height: 12px; @@ -113,6 +113,7 @@ .bookmarkFolderChevron { color: #676767; margin-left: var(--bookmark-item-chevron-margin); + font-size: 8px; } }