diff --git a/public_html/deployment/classes/project.class.php b/public_html/deployment/classes/project.class.php
index 4dd71578ff9496d4ea2938994252927f90b99c26..471b207c748b459ba033b05690440b89e655fa09 100644
--- a/public_html/deployment/classes/project.class.php
+++ b/public_html/deployment/classes/project.class.php
@@ -2866,7 +2866,7 @@ class project extends base {
         }
         if (!$this->isActivePhase($sPhase)) {
             return '
-                        <td class="td-phase-' . $sPhase . ' ' . $this->_aConfig["id"] . '" colspan="' . count($this->_aPlaces) . '">
+                        <td class="td-phase-' . $sPhase . ' td-phase-inactive ' . $this->_aConfig["id"] . '" colspan="' . count($this->_aPlaces) . '">
                             <div class="versioninfo center inactive">' . $this->_oHtml->getIcon('sign-info').t('inactive') . '</div>
                         </td>';
         }
diff --git a/public_html/deployment/main.css b/public_html/deployment/main.css
index 98656db581300ae9b9b254bc0474eff259da940a..0f821f16df313642e95482bb2e36a5666e2576be 100644
--- a/public_html/deployment/main.css
+++ b/public_html/deployment/main.css
@@ -120,7 +120,7 @@ thead{font-size: 130%;}
 
 #tbloverview th{}
 #tbloverview td{}
-th{/*border-radius: 0.7em 0.7em 0 0; */ background:#f8f8f8; text-align: center; border-right: 1px solid #fff; }
+th{/*border-radius: 0.7em 0.7em 0 0; */ background:#f0f0f0; text-align: center; border-right: 1px solid #fff; }
 thead tr th.prj{border-bottom: none;}
 th.versioncontrol{background: #eee; }
 tr{ }
@@ -158,10 +158,11 @@ td.preview{}
 td.stage{}
 td.live{}
 td{}
-td.highlight{animation: blinker 1.5s linear infinite;}
+td.highlight{animation: blinker 0.7s linear infinite;}
 @keyframes blinker {  
-  30% { background:rgba(255,220,50,0.3) }
+  70% { background:rgba(255,220,50,0.3) }
 }
+.td-phase-inactive, .td-place-onhold{border-left: 1px dashed #ddd;}
 .td-place-onhold{color:#d61;}
 .td-place-ready2install{}
 td.prj > div{opacity: 0.2; transition: all ease-in-out 0.1s;}