UX: gutter links use link color, no glyphs

This commit is contained in:
Jeff Atwood 2014-09-18 20:01:40 -07:00
parent 5132f217c4
commit 6aff562883
2 changed files with 2 additions and 5 deletions

View File

@ -37,10 +37,7 @@ export default Em.Component.extend({
clicks = Em.get(l, 'clicks');
buffer.push("<li><a href='" + Em.get(l, 'url') + "' class='track-link'>");
/* suppress right arrow as it is the common, expected case */
if (direction == 'left') {
buffer.push("<i class='fa fa-arrow-" + direction + "'></i>");
}
/* suppress both left and right arrow for now */
var title = Em.get(l, 'title');
if (!Em.isEmpty(title)) {
buffer.push(Handlebars.Utils.escapeExpression(title));

View File

@ -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;