Fix text styles on ItemIssueComponent

This commit is contained in:
Alfredo Sumaran 2016-11-09 02:25:11 -05:00
parent f8c572a2f1
commit d70a1283a5
2 changed files with 21 additions and 15 deletions

View file

@ -27,18 +27,18 @@
{{ issue.title }} {{ issue.title }}
</a> </a>
</h5> </h5>
<a href="issue.url"> <a href="issue.url" class="issue-link">
#{{issue.id}} #{{issue.id}}
</a> </a>
<span> <span>
Opened Opened
<a href="issue.url"> <a href="issue.url" class="issue-date">
{{ issue.datetime }} {{ issue.datetime }}
</a> </a>
</span> </span>
<span> <span>
by by
<a href="issue.profile"> <a href="issue.profile" class="issue-author-link">
{{ issue.author }} {{ issue.author }}
</a> </a>
</span> </span>

View file

@ -328,7 +328,13 @@
} }
} }
.commit-author-link { .issue-date {
color: $gl-text-color;
}
.issue-link,
.commit-author-link,
.issue-author-link {
color: $gl-dark-link-color; color: $gl-dark-link-color;
} }