Fix text styles on ItemIssueComponent
This commit is contained in:
parent
f8c572a2f1
commit
d70a1283a5
2 changed files with 21 additions and 15 deletions
|
@ -27,21 +27,21 @@
|
|||
{{ issue.title }}
|
||||
</a>
|
||||
</h5>
|
||||
<a href="issue.url">
|
||||
#{{issue.id}}
|
||||
</a>
|
||||
<span>
|
||||
Opened
|
||||
<a href="issue.url">
|
||||
{{ issue.datetime }}
|
||||
<a href="issue.url" class="issue-link">
|
||||
#{{issue.id}}
|
||||
</a>
|
||||
</span>
|
||||
<span>
|
||||
by
|
||||
<a href="issue.profile">
|
||||
{{ issue.author }}
|
||||
</a>
|
||||
</span>
|
||||
<span>
|
||||
Opened
|
||||
<a href="issue.url" class="issue-date">
|
||||
{{ issue.datetime }}
|
||||
</a>
|
||||
</span>
|
||||
<span>
|
||||
by
|
||||
<a href="issue.profile" class="issue-author-link">
|
||||
{{ issue.author }}
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="item-time">
|
||||
<span class="hours" v-if="issue.totalTime.hours">
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue