From 6d0b295dc334f3fc9ebc5801ebe57b50ff6709a9 Mon Sep 17 00:00:00 2001 From: Deimos Date: Thu, 14 Feb 2019 17:45:14 -0700 Subject: [PATCH] Lighten comment vote display (outside button) This is mostly for logged-out users, we don't need the votes to stand out so much for them. I think it's fine for logged-in too though, so let's just try it for both initially. --- tildes/scss/modules/_comment.scss | 2 +- tildes/scss/themes/_theme_base.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tildes/scss/modules/_comment.scss b/tildes/scss/modules/_comment.scss index dddea48..7ff5fbe 100644 --- a/tildes/scss/modules/_comment.scss +++ b/tildes/scss/modules/_comment.scss @@ -143,7 +143,7 @@ .comment-votes { font-size: 0.6rem; font-weight: bold; - margin: 0.2rem 0.4rem; + margin: 0 0.4rem; } .is-comment-by-op { diff --git a/tildes/scss/themes/_theme_base.scss b/tildes/scss/themes/_theme_base.scss index 3095190..01fd3bc 100644 --- a/tildes/scss/themes/_theme_base.scss +++ b/tildes/scss/themes/_theme_base.scss @@ -180,6 +180,10 @@ color: map-get($theme, "foreground-secondary"); } + .comment-votes { + color: map-get($theme, "foreground-secondary"); + } + .label-comment-exemplary { @include theme-special-label(map-get($theme, "comment-label-exemplary"), $is-light); }