diff --git a/config/inc_projects_config.php b/config/inc_projects_config.php index d1ea245ea528091953fe3f42e183032312904402..1d446aaf319165243bc535f4ff3108574109f1e2 100644 --- a/config/inc_projects_config.php +++ b/config/inc_projects_config.php @@ -36,21 +36,21 @@ $aConfig = array( 'css' => array( 'bgdark' => 'background:#89a;', 'bglight' => 'background:#e8e8f8; color:#333; background: rgba(180,180,230, 0.3);', - 'bgbutton' => 'background:#dde;', + 'bgbutton' => 'background:#89a; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', ), ), "stage" => array( 'css' => array( 'bgdark' => 'background:#8aa;', 'bglight' => 'background:#e4f8f8; color:#333; background: rgba(180,210,210, 0.3);', - 'bgbutton' => 'background:#dee;', + 'bgbutton' => 'background:#8aa; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', ), ), "live" => array( 'css' => array( 'bgdark' => 'background:#8a8;', 'bglight' => 'background:#e0f8e0; color:#333; background: rgba(180,250,180, 0.3);', - 'bgbutton' => 'background:#ded;', + 'bgbutton' => 'background:#8a8; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', ), // wenn deploytimes existiert, dann wird nach dem Deploy das Paket // in einer Queue zurueckgehalten diff --git a/public_html/deployment/index.php b/public_html/deployment/index.php index 3fc52e44e3c3c47897cedcd533499d0f3af959d9..7b96bad1ff4995a8aa745b5e45da1aab576c6d71 100644 --- a/public_html/deployment/index.php +++ b/public_html/deployment/index.php @@ -48,8 +48,8 @@ $oCLog->add("parsing params " $sHeader = '<style>'; foreach ($aConfig["phases"] as $sPhase => $aData) { $sHeader.=array_key_exists("bgdark", $aData["css"]) ? 'th.' . $sPhase . '{' . $aData["css"]["bgdark"] . '}' : ''; - $sHeader.=array_key_exists("bglight", $aData["css"]) ? 'td.' . $sPhase . '{' . $aData["css"]["bglight"] . '}' : ''; - $sHeader.=array_key_exists("bgbutton", $aData["css"]) ? '.' . $sPhase . '{' . $aData["css"]["bgbutton"] . '}' : ''; + $sHeader.=array_key_exists("bglight", $aData["css"]) ? 'td.' . $sPhase . ', div.' . $sPhase . '{' . $aData["css"]["bglight"] . '}' : ''; + $sHeader.=array_key_exists("bgbutton", $aData["css"]) ? 'a.' . $sPhase . '{' . $aData["css"]["bgbutton"] . '}' : ''; } $sHeader.='</style>'; $sTopArea=getTopArea();