0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Reduce the generated HTML size of the checks table

... by removing class="indicator-cell" and using
:first-child in CSS to target it instead.
This commit is contained in:
Pēteris Caune 2024-11-22 14:21:48 +02:00
parent 2c4719ecc3
commit 534d6973c4
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
2 changed files with 2 additions and 3 deletions
static/css
templates/front

View file

@ -11,9 +11,8 @@
font-style: italic;
}
#checks-table .indicator-cell {
#checks-table tr.checks-row td:first-child {
text-align: center;
margin: 0 auto;
}
#checks-table th {

View file

@ -61,7 +61,7 @@
</tr>
{% for check in checks %}
<tr id="{{ check.code }}" class="checks-row" {% if check in hidden_checks %}style="display: none"{% endif %}>
<td class="indicator-cell">
<td>
<span class="status ic-{{ check.cached_status }}" data-toggle="tooltip"></span>
<div class="spinner {% if check.last_start %}started{% endif %}"></div>
</td>