aboutsummaryrefslogtreecommitdiffstats
path: root/templates/user/notification/notification_div.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/user/notification/notification_div.tmpl')
-rw-r--r--templates/user/notification/notification_div.tmpl16
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/user/notification/notification_div.tmpl b/templates/user/notification/notification_div.tmpl
index c8db659c13..9a4fbe786e 100644
--- a/templates/user/notification/notification_div.tmpl
+++ b/templates/user/notification/notification_div.tmpl
@@ -35,26 +35,26 @@
{{$issue := .Issue}}
{{$repo := .Repository}}
<tr id="notification_{{.ID}}">
- <td class="collapsing" data-href="{{.Link}}">
+ <td class="collapsing gt-pl-4" data-href="{{.Link}}">
{{if eq .Status 3}}
- <span class="blue">{{svg "octicon-pin"}}</span>
+ {{svg "octicon-pin" 16 "text blue"}}
{{else if not $issue}}
- <span class="gray">{{svg "octicon-repo"}}</span>
+ {{svg "octicon-repo" 16 "text grey"}}
{{else if $issue.IsPull}}
{{if $issue.IsClosed}}
{{if $issue.GetPullRequest.HasMerged}}
- <span class="purple">{{svg "octicon-git-merge"}}</span>
+ {{svg "octicon-git-merge" 16 "text purple"}}
{{else}}
- <span class="red">{{svg "octicon-git-pull-request"}}</span>
+ {{svg "octicon-git-pull-request" 16 "text red"}}
{{end}}
{{else}}
- <span class="green">{{svg "octicon-git-pull-request"}}</span>
+ {{svg "octicon-git-pull-request" 16 "text green"}}
{{end}}
{{else}}
{{if $issue.IsClosed}}
- <span class="red">{{svg "octicon-issue-closed"}}</span>
+ {{svg "octicon-issue-closed" 16 "text red"}}
{{else}}
- <span class="green">{{svg "octicon-issue-opened"}}</span>
+ {{svg "octicon-issue-opened" 16 "text green"}}
{{end}}
{{end}}
</td>