From 6aff56288389e2c128d5f28858f74be07bb3b0ba Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Thu, 18 Sep 2014 20:01:40 -0700 Subject: [PATCH] UX: gutter links use link color, no glyphs --- .../javascripts/discourse/components/post-gutter.js.es6 | 5 +---- app/assets/stylesheets/desktop/topic-post.scss | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/app/assets/javascripts/discourse/components/post-gutter.js.es6 b/app/assets/javascripts/discourse/components/post-gutter.js.es6 index cb80320d93d..6f263277d52 100644 --- a/app/assets/javascripts/discourse/components/post-gutter.js.es6 +++ b/app/assets/javascripts/discourse/components/post-gutter.js.es6 @@ -37,10 +37,7 @@ export default Em.Component.extend({ clicks = Em.get(l, 'clicks'); buffer.push("
  • "); - /* suppress right arrow as it is the common, expected case */ - if (direction == 'left') { - buffer.push(""); - } + /* suppress both left and right arrow for now */ var title = Em.get(l, 'title'); if (!Em.isEmpty(title)) { buffer.push(Handlebars.Utils.escapeExpression(title)); diff --git a/app/assets/stylesheets/desktop/topic-post.scss b/app/assets/stylesheets/desktop/topic-post.scss index be4f7f25ca3..c3564c29a8c 100644 --- a/app/assets/stylesheets/desktop/topic-post.scss +++ b/app/assets/stylesheets/desktop/topic-post.scss @@ -709,7 +709,7 @@ blockquote > *:last-child { margin-top: -2px; margin-left: -17px; } - a.track-link {color: scale-color($primary, $lightness: 50%);} + a.toggle-more { display: block; text-align: right;