diff --git a/public_html/deployment/classes/projectlist.class.php b/public_html/deployment/classes/projectlist.class.php index 577c98ffc9d6fd2d280887bc1c576f1483e9652a..f1233a0d04785f8677225a512df1582db62f9b73 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 a5c3284ec5ccdbb45bce7fa1f7589bfbbf95f5de..db6effdcf0886ee41eaa3d256477a8efe1fe19d4 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; }