Commit d70a1283 authored by Alfredo Sumaran's avatar Alfredo Sumaran

Fix text styles on ItemIssueComponent

parent f8c572a2
...@@ -27,21 +27,21 @@ ...@@ -27,21 +27,21 @@
{{ issue.title }} {{ issue.title }}
</a> </a>
</h5> </h5>
<a href="issue.url"> <a href="issue.url" class="issue-link">
#{{issue.id}} #{{issue.id}}
</a>
<span>
Opened
<a href="issue.url">
{{ issue.datetime }}
</a> </a>
</span> <span>
<span> Opened
by <a href="issue.url" class="issue-date">
<a href="issue.profile"> {{ issue.datetime }}
{{ issue.author }} </a>
</a> </span>
</span> <span>
by
<a href="issue.profile" class="issue-author-link">
{{ issue.author }}
</a>
</span>
</div> </div>
<div class="item-time"> <div class="item-time">
<span class="hours" v-if="issue.totalTime.hours"> <span class="hours" v-if="issue.totalTime.hours">
......
...@@ -328,7 +328,13 @@ ...@@ -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;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment