style remove text-uppercase from all templates and CSS

Commit
cce057613e40303bb6860e9ae6616b78fdf1ce33
Author
GPT-5 medium <codex@openai.com>
Author date
Committer
GPT-5 medium <codex@openai.com>
Committer date
Changed files
roles/dashboard/public/css/app.css
index a358cb20..2454aa41 100644..100644
@@ -78,8 +78,6 @@
78 78 section > h2 {
79 79 font-size: 0.75rem;
80 80 font-weight: 700;
81 Removed: text-transform: uppercase;
82 Removed: letter-spacing: 0.06em;
83 81 color: var(--fapg-text-muted);
84 82 }
85 83
roles/dashboard/templates/dashboard/index.html.ep
index 4d23355b..c4f6fcfe 100644..100644
@@ -18,7 +18,7 @@
18 18 </div>
19 19
20 20 <section class="reading-quick-status" aria-label="Sensor reading quick status">
21 Removed: <h2 class="h6 fw-semibold text-uppercase text-body-secondary mb-3">Live readings</h2>
21 Added: <h2 class="h6 fw-semibold text-body-secondary mb-3">Live readings</h2>
22 22 <div class="row g-3" data-reading-quick-status>
23 23 % for my $probe ($probes->@*) {
24 24 <div class="col-12 col-sm-6 col-xl-3">
roles/dashboard/templates/dashboard/status.html.ep
index e91cc510..81a887fe 100644..100644
@@ -27,15 +27,15 @@
27 27 </div>
28 28 <div class="row row-cols-1 row-cols-sm-2 g-1 mt-1 small text-body-secondary">
29 29 <div class="col">
30 Removed: <span class="fw-semibold text-uppercase status-node-dt">Node:</span>
30 Added: <span class="fw-semibold status-node-dt">Node:</span>
31 31 <span data-status-page-node>Checking…</span>
32 32 </div>
33 33 <div class="col">
34 Removed: <span class="fw-semibold text-uppercase status-node-dt">Last seen:</span>
34 Added: <span class="fw-semibold status-node-dt">Last seen:</span>
35 35 <span data-status-page-last-seen>Checking…</span>
36 36 </div>
37 37 <div class="col col-sm-12">
38 Removed: <span class="fw-semibold text-uppercase status-node-dt">Message:</span>
38 Added: <span class="fw-semibold status-node-dt">Message:</span>
39 39 <span data-status-page-message>Checking status…</span>
40 40 </div>
41 41 </div>