From ca769c1583def57367076ac7e990fd22d4356bf8 Mon Sep 17 00:00:00 2001 From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch> Date: Fri, 6 Sep 2024 11:50:49 +0200 Subject: [PATCH] reduce colors in overview --- public_html/deployment/classes/projectlist.class.php | 1 + public_html/deployment/main.css | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/public_html/deployment/classes/projectlist.class.php b/public_html/deployment/classes/projectlist.class.php index 577c98ff..f1233a0d 100644 --- a/public_html/deployment/classes/projectlist.class.php +++ b/public_html/deployment/classes/projectlist.class.php @@ -117,6 +117,7 @@ class projectlist extends base . ' trprogress' . ($aProgress['inprogress'] ? ' progressinprogress' : '') . ($aProgress['hasQueue'] ? ' progresshasqueue' : '') + . (!($aProgress['hasQueue'] || $aProgress['inprogress']) ? ' nochange' : '') . ' group-' . $sPrjGroup; if ($aProgress['inprogress']) { diff --git a/public_html/deployment/main.css b/public_html/deployment/main.css index a5c3284e..db6effdc 100644 --- a/public_html/deployment/main.css +++ b/public_html/deployment/main.css @@ -254,6 +254,11 @@ tr.progressinprogress { border-left: 0.3em solid #17a2b8; } +tr.nochange td div { + background-color: rgba(0, 0, 0, 0) !important; + color: #888 !important; +} + tr.progresshasqueue { border-left: 0.3em solid #d61; } -- GitLab