From eebf06281be7055e28e78950ade23e8eb2c6f458 Mon Sep 17 00:00:00 2001 From: Marco Malavolti <marco.malavolti@gmail.com> Date: Wed, 18 May 2022 18:08:26 +0200 Subject: [PATCH] Set YELLOW for UNKNOWN --- web/eccs.css | 2 +- web/eccs.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/eccs.css b/web/eccs.css index ac06061..154d88a 100644 --- a/web/eccs.css +++ b/web/eccs.css @@ -24,7 +24,7 @@ tr.shown td.details-control { } #lbl-unknown { - background-color: #AAAAAA; + background-color: #FFDB58; } #lbl-disabled { diff --git a/web/eccs.js b/web/eccs.js index 8d80978..eb4603c 100644 --- a/web/eccs.js +++ b/web/eccs.js @@ -342,7 +342,7 @@ $(document).ready(function() { $('td', row).css('background-color', '#72F81B'); // OLD ECCS } if (data.status == "UNKNOWN") { - $('td', row).css('background-color', '#AAAAAA'); + $('td', row).css('background-color', '#FFDB58'); } }, -- GitLab