From 3a9a8f89b22e2637d1901453c3a0ac6780615d6f Mon Sep 17 00:00:00 2001 From: Deimos Date: Tue, 18 Sep 2018 16:06:54 -0600 Subject: [PATCH] Change offtopic color (to blue) and position Using orange had a bit of a "this is a bad thing" implication to it (and was hard to tell apart from the red of Malice). It also makes a bit more sense to have the more-negative tags (Noise and Malice) to the right. --- tildes/scss/_variables.scss | 2 +- tildes/tildes/enums.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tildes/scss/_variables.scss b/tildes/scss/_variables.scss index c2e4d07..d33902e 100644 --- a/tildes/scss/_variables.scss +++ b/tildes/scss/_variables.scss @@ -38,7 +38,7 @@ $topic-tag-spoiler-color: $yellow; // Colors for comment tags $comment-tag-joke-color: $cyan; $comment-tag-noise-color: $yellow; -$comment-tag-offtopic-color: $orange; +$comment-tag-offtopic-color: $blue; $comment-tag-malice-color: $red; $sidebar-width: 300px; diff --git a/tildes/tildes/enums.py b/tildes/tildes/enums.py index f8d566c..4a1bee5 100644 --- a/tildes/tildes/enums.py +++ b/tildes/tildes/enums.py @@ -41,8 +41,8 @@ class CommentTagOption(enum.Enum): """Enum for the (site-wide) comment tag options.""" JOKE = enum.auto() - NOISE = enum.auto() OFFTOPIC = enum.auto() + NOISE = enum.auto() MALICE = enum.auto() @property