From: Lynx Kotoura Date: Sat, 9 Jun 2018 20:21:37 +0000 (+0900) Subject: Fix background color of emoji-mart-bar in light theme (#7768) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=91e5d9f8af3a06c329de4bd603dc904a2a297e15;p=mastodon.git Fix background color of emoji-mart-bar in light theme (#7768) * Fix background color of emoji-mart-bar * Uniform emoji-mart-search background color in light theme as default --- diff --git a/app/javascript/styles/mastodon-light/diff.scss b/app/javascript/styles/mastodon-light/diff.scss index 460dc53a9..2deec6bf4 100644 --- a/app/javascript/styles/mastodon-light/diff.scss +++ b/app/javascript/styles/mastodon-light/diff.scss @@ -47,6 +47,19 @@ background: darken($ui-base-color, 6%); } +.emoji-mart-bar { + border-color: lighten($ui-base-color, 8%); + + &:first-child { + background: $ui-base-color; + } +} + +.emoji-mart-search input { + background: rgba($ui-base-color, 0.3); + border-color: $ui-base-color; +} + .focusable:focus { background: $ui-base-color; }