From dba2ffb9e2893764c52cc440f6566cd212a585c7 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 1 Apr 2023 09:14:28 +0200 Subject: dashboard/app: remove repetition on subsystems page Currently it repeats that this is a list of subsystems 3 times: 1. "Subsystems" tab 2. "The list of subsystems" caption 3. "Subsystems list" table caption Leave only one of them. --- dashboard/app/subsystems.html | 9 ++++----- pkg/html/pages/style.css | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/dashboard/app/subsystems.html b/dashboard/app/subsystems.html index 208c4f243..639fc1c82 100644 --- a/dashboard/app/subsystems.html +++ b/dashboard/app/subsystems.html @@ -14,12 +14,7 @@ The list of polled trees. {{template "header" .Header}}

The list of subsystems


- (*) Note that the numbers below do not represent the latest data. They are updated once an hour.

- {{if .SomeHidden}} - Empty subsystems have been hidden from the list. {{link .ShowAllURL "Show all"}}.
- {{end}} - @@ -47,5 +42,9 @@ The list of polled trees.
Subsystems list
Name
+ (*) Note that the numbers below do not represent the latest data. They are updated once an hour.

+ {{if .SomeHidden}} + Empty subsystems have been hidden from the list. {{link .ShowAllURL "Show all"}}.
+ {{end}} diff --git a/pkg/html/pages/style.css b/pkg/html/pages/style.css index b82efd5b1..2392af6b8 100644 --- a/pkg/html/pages/style.css +++ b/pkg/html/pages/style.css @@ -23,7 +23,7 @@ h1, h2, h3, h4 { .navigation_tab_selected { font-weight: bold; - border: 2px solid black; + border: 3px solid black; padding: 4px; margin: 4px; } -- cgit mrf-deployment