firewall.cgi: Fix colouring of the rule actions

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-08-07 16:18:01 +02:00
parent 824f4c9709
commit 06345fbc0d
2 changed files with 30 additions and 36 deletions

View File

@@ -7,6 +7,8 @@
--color-blue-invert : #ffffff;
--color-orange : #ff9933;
--color-orange-invert : #ffffff;
--color-black : #000000;
--color-black-invert : #ffffff;
--color-grey : #d6d6d6;
--color-light-grey : #f0f0f0;
@@ -458,11 +460,16 @@ table {
color: var(--color-red-invert);
}
.tbl .policy.is-allowed{
.tbl .policy.is-allowed {
background-color: var(--color-green);
color: var(--color-green-invert);
}
.tbl .policy.is-rejected {
background-color: var(--color-black);
color: var(--color-black-invert);
}
/* Notes */
.notes .is-warning {