aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2025-12-22 10:46:50 +0100
committerDmitry Vyukov <dvyukov@google.com>2025-12-22 09:58:10 +0000
commitd3944bf30053fd6b91f48b2b9462d48d01f8e4d7 (patch)
tree79bf02004d1dbecbddf0dbf815e5536060f4ae7b /dashboard/app
parent66849ad520ec127b99c7065f5d248d6593415c1b (diff)
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.
Diffstat (limited to 'dashboard/app')
-rw-r--r--dashboard/app/templates/templates.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/dashboard/app/templates/templates.html b/dashboard/app/templates/templates.html
index af54dab6f..3301ce804 100644
--- a/dashboard/app/templates/templates.html
+++ b/dashboard/app/templates/templates.html
@@ -59,7 +59,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
{{if not (eq .URLPath "/admin")}}
<div class="navigation">
<div class="navigation_tab{{if eq .URLPath (printf "/%v" $.Namespace)}}_selected{{end}}">
- <a href='/{{$.Namespace}}'><span style="color:DeepPink;">🐞</span> Open [{{$.BugCounts.Open}}]</a>
+ <a href='/{{$.Namespace}}'><span style="color:DeepPink;">🐞 Open [{{$.BugCounts.Open}}]</span></a>
</div>
{{if .ShowSubsystems}}
@@ -69,11 +69,11 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
{{end}}
<div class="navigation_tab{{if eq .URLPath (printf "/%v/fixed" $.Namespace)}}_selected{{end}}">
- <a href='/{{$.Namespace}}/fixed'><span style="color:ForestGreen;">🐞</span> Fixed [{{$.BugCounts.Fixed}}]</a>
+ <a href='/{{$.Namespace}}/fixed'><span style="color:ForestGreen;">🐞 Fixed [{{$.BugCounts.Fixed}}]</span></a>
</div>
<div class="navigation_tab{{if eq .URLPath (printf "/%v/invalid" $.Namespace)}}_selected{{end}}" href='/{{$.Namespace}}/invalid'>
- <a href='/{{$.Namespace}}/invalid'><span style="color:RoyalBlue;">🐞</span> Invalid [{{$.BugCounts.Invalid}}]</a>
+ <a href='/{{$.Namespace}}/invalid'><span style="color:RoyalBlue;">🐞 Invalid [{{$.BugCounts.Invalid}}]</span></a>
</div>
{{if gt .MissingBackports 0}}
@@ -116,7 +116,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
</div>
{{end}}
{{if .ContactEmail}}
- <div class="navigation_tab navigation_right">
+ <div class="navigation_tab">
<a href='mailto:{{.ContactEmail}}'><span style="color:ForestGreen;">πŸ’¬</span> Send us feedback</a>
</div>
{{end}}