UX: gutter links use link color, no glyphs
This commit is contained in:
parent
5132f217c4
commit
6aff562883
|
@ -37,10 +37,7 @@ export default Em.Component.extend({
|
||||||
clicks = Em.get(l, 'clicks');
|
clicks = Em.get(l, 'clicks');
|
||||||
|
|
||||||
buffer.push("<li><a href='" + Em.get(l, 'url') + "' class='track-link'>");
|
buffer.push("<li><a href='" + Em.get(l, 'url') + "' class='track-link'>");
|
||||||
/* suppress right arrow as it is the common, expected case */
|
/* suppress both left and right arrow for now */
|
||||||
if (direction == 'left') {
|
|
||||||
buffer.push("<i class='fa fa-arrow-" + direction + "'></i>");
|
|
||||||
}
|
|
||||||
var title = Em.get(l, 'title');
|
var title = Em.get(l, 'title');
|
||||||
if (!Em.isEmpty(title)) {
|
if (!Em.isEmpty(title)) {
|
||||||
buffer.push(Handlebars.Utils.escapeExpression(title));
|
buffer.push(Handlebars.Utils.escapeExpression(title));
|
||||||
|
|
|
@ -709,7 +709,7 @@ blockquote > *:last-child {
|
||||||
margin-top: -2px;
|
margin-top: -2px;
|
||||||
margin-left: -17px;
|
margin-left: -17px;
|
||||||
}
|
}
|
||||||
a.track-link {color: scale-color($primary, $lightness: 50%);}
|
|
||||||
a.toggle-more {
|
a.toggle-more {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
|
Loading…
Reference in New Issue