diff --git a/r2/r2/public/static/css/reddit.css b/r2/r2/public/static/css/reddit.css index b2f5f79c2..11ceb699e 100644 --- a/r2/r2/public/static/css/reddit.css +++ b/r2/r2/public/static/css/reddit.css @@ -1281,6 +1281,10 @@ textarea.gray { color: gray; } .fancy-toggle-button .add { background-image: url(/static/bg-button-add.png); } +.fancy-toggle-button .banned { + background-color: #666; + padding: 1px 1.9em; +} @@ -2883,6 +2887,11 @@ ul#image-preview-list .description pre { margin-right: 5px; } +.subscription-box .title.banned { + color: dimgray; + text-decoration: line-through; +} + .subscription-box .column { width: 50%; float: left; diff --git a/r2/r2/templates/subscriptionbox.html b/r2/r2/templates/subscriptionbox.html index fb66ba3b1..91b34d9ac 100644 --- a/r2/r2/templates/subscriptionbox.html +++ b/r2/r2/templates/subscriptionbox.html @@ -53,13 +53,13 @@ <% is_spam = hasattr(sr, "_spam") and sr._spam %>
  • %if is_multi and is_spam: - ${_("banned_on_multi")} - - ${sr.name} + + ${_("banned")} + + ${sr.name} %elif is_spam: - ${_("banned")} - - ${sr.name} + ${addremove_button(sr)} + ${sr.name} %else: ${addremove_button(sr)} ${plain_link(sr.name, sr.path, _class="title")}