diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-06-08 15:30:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-08 15:30:06 +0200 |
commit | 20dda5cca0a4015a743250b4e584a3101e7675f2 (patch) | |
tree | 073f47da50b828cf05a08a46e68ee78006751b9d /app/javascript/styles/mastodon-light | |
parent | f4bc77f2908a193ef164b4b4fe68b584d71aaa2c (diff) |
Change full logo to use primary text color of the given theme (#10994)
* Change full logo to use primary text color of the given theme * Fix colors of public layout header in light theme
Diffstat (limited to 'app/javascript/styles/mastodon-light')
-rw-r--r-- | app/javascript/styles/mastodon-light/diff.scss | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/app/javascript/styles/mastodon-light/diff.scss b/app/javascript/styles/mastodon-light/diff.scss index 21b762182..b6c95fe6a 100644 --- a/app/javascript/styles/mastodon-light/diff.scss +++ b/app/javascript/styles/mastodon-light/diff.scss @@ -531,23 +531,14 @@ html { } .header { - background: lighten($ui-base-color, 24%); - - .nav-link { - color: $white; - - &:hover, - &:focus, - &:active { - color: $white; - } - } + background: $ui-base-color; + border: 1px solid lighten($ui-base-color, 8%); .brand { &:hover, &:focus, &:active { - background: lighten($ui-base-color, 28%); + background: lighten($ui-base-color, 4%); } } } |