diff options
author | Lynx Kotoura <admin@sanin.link> | 2018-06-10 05:21:37 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-06-09 22:21:37 +0200 |
commit | 91e5d9f8af3a06c329de4bd603dc904a2a297e15 (patch) | |
tree | ce8c3472e42f51a5fa6fc0b3dc90748a7831b1ff /app | |
parent | 3df8c40508712cb4353f8346e99ad40579547111 (diff) |
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
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon-light/diff.scss | 13 |
1 files changed, 13 insertions, 0 deletions
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; } |