status page: move the noscript bit out of the table, since that didn't work anyway
Graham Christensen committed
Jan 1, 2020 at 21:59 UTC
a21513f2629cf1176591d0892c37270259de6198
2 files changed
+6
-8
delft/eris/status-page/index.html
+5
-7
@@ -60,11 +60,13 @@
60
<div class="hero12">
61
<h2>Nix Channel Status</h2>
62
<p>See <a href="http://howoldis.herokuapp.com/">HowOldIs</a> and the <a href="https://nixos.wiki/wiki/Nix_channels">NixOS Wiki</a> for information on how channel updates progress.</p>
63
- </p>
64
- </p>
63
</div>
64
65
<div class="hero12">
66
+ <noscript>
67
+ <p class="jsfallback">This page requires Javascript.</p>
68
+ </noscript>
69
+
70
<table class="table table-striped">
71
<thead>
72
<tr>
@@ -75,11 +77,7 @@
77
<th>Channel Status</th>
78
</tr>
79
</thead>
78
- <tbody id="channel-status">
79
- <noscript>
80
- <tr><td class="jsfallback" colspan="5">This page requires Javascript.</td></tr>
81
- </noscript>
82
- </tbody>
80
+ <tbody id="channel-status"></tbody>
81
</table>
82
</div>
83
</div>
delft/eris/status-page/status.css
+1
-1
@@ -27,7 +27,7 @@
27
max-width: 100%;
28
}
29
30
-td.jsfallback {
30
+.jsfallback {
31
font-weight: bold;
32
font-style: italics;
33
text-align: center;