firewall.cgi: Fix messy table striping

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-08-21 15:11:59 +02:00
parent 828f2bdd44
commit 9984ed3d5a
2 changed files with 32 additions and 14 deletions

View File

@@ -7,6 +7,8 @@
--color-blue-invert : #ffffff;
--color-orange : #ff9933;
--color-orange-invert : #ffffff;
--color-yellow : #ffd700;
--color-yellow-invert : #ffffff;
--color-black : #363636;
--color-black-invert : #ffffff;
--color-grey : #d6d6d6;
@@ -390,6 +392,21 @@ table.form tr.action td form {
background-color: var(--color-light-grey);
}
/*
Classes to overwrite the automatic colouring
*/
.tbl tr.is-odd td {
background-color: var(--color-grey);
}
.tbl tr.is-even td {
background-color: var(--color-light-grey);
}
.tbl tr.is-warning td {
background-color: var(--color-yellow);
}
.tbl th:first-child {
border-left: 1px solid #363636;
border-top: 1px solid #363636;