Skip to content

Commit 2d5d6a8

Browse files
committed
dashboard/app: fix up top menu
Colors do not affect 🐞, so extend the color to text as well. Remove navigation_right style, it does not exist.
1 parent 49b0fb0 commit 2d5d6a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dashboard/app/templates/templates.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ <h1><a href="/{{$.Namespace}}">syzbot</a></h1>
5959
{{if not (eq .URLPath "/admin")}}
6060
<div class="navigation">
6161
<div class="navigation_tab{{if eq .URLPath (printf "/%v" $.Namespace)}}_selected{{end}}">
62-
<a href='/{{$.Namespace}}'><span style="color:DeepPink;">🐞</span> Open [{{$.BugCounts.Open}}]</a>
62+
<a href='/{{$.Namespace}}'><span style="color:DeepPink;">🐞 Open [{{$.BugCounts.Open}}]</span></a>
6363
</div>
6464

6565
{{if .ShowSubsystems}}
@@ -69,11 +69,11 @@ <h1><a href="/{{$.Namespace}}">syzbot</a></h1>
6969
{{end}}
7070

7171
<div class="navigation_tab{{if eq .URLPath (printf "/%v/fixed" $.Namespace)}}_selected{{end}}">
72-
<a href='/{{$.Namespace}}/fixed'><span style="color:ForestGreen;">🐞</span> Fixed [{{$.BugCounts.Fixed}}]</a>
72+
<a href='/{{$.Namespace}}/fixed'><span style="color:ForestGreen;">🐞 Fixed [{{$.BugCounts.Fixed}}]</span></a>
7373
</div>
7474

7575
<div class="navigation_tab{{if eq .URLPath (printf "/%v/invalid" $.Namespace)}}_selected{{end}}" href='/{{$.Namespace}}/invalid'>
76-
<a href='/{{$.Namespace}}/invalid'><span style="color:RoyalBlue;">🐞</span> Invalid [{{$.BugCounts.Invalid}}]</a>
76+
<a href='/{{$.Namespace}}/invalid'><span style="color:RoyalBlue;">🐞 Invalid [{{$.BugCounts.Invalid}}]</span></a>
7777
</div>
7878

7979
{{if gt .MissingBackports 0}}
@@ -116,7 +116,7 @@ <h1><a href="/{{$.Namespace}}">syzbot</a></h1>
116116
</div>
117117
{{end}}
118118
{{if .ContactEmail}}
119-
<div class="navigation_tab navigation_right">
119+
<div class="navigation_tab">
120120
<a href='mailto:{{.ContactEmail}}'><span style="color:ForestGreen;">💬</span> Send us feedback</a>
121121
</div>
122122
{{end}}

0 commit comments

Comments
 (0)