Skip to content
Snippets Groups Projects
Commit f392b912 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

round phase borders

parent 870bc33e
Branches
No related tags found
1 merge request!62V2.0
...@@ -135,7 +135,7 @@ th{/*border-radius: 0.7em 0.7em 0 0; background:#f0f0f0; */ text-align: center; ...@@ -135,7 +135,7 @@ th{/*border-radius: 0.7em 0.7em 0 0; background:#f0f0f0; */ text-align: center;
thead tr th.prj{border-bottom: none;} thead tr th.prj{border-bottom: none;}
th.versioncontrol{background: #eee; } th.versioncontrol{background: #eee; }
tr{ } tr{ }
tr:hover{background:#ddd; background: linear-gradient(#f4f4f4,#fff,#f4f4f4);} tr:hover{background:#f0f4f8; background_: linear-gradient(#f4f4f4,#fff,#f4f4f4);}
.trproject td{padding: 3px !important;} .trproject td{padding: 3px !important;}
.trproject a.btn{opacity: 0.2; transition: ease-in-out all 0.3s;} .trproject a.btn{opacity: 0.2; transition: ease-in-out all 0.3s;}
...@@ -170,10 +170,8 @@ button.prjprogress.selected{box-shadow: 0 0 3em #abc inset; border: 0px solid #a ...@@ -170,10 +170,8 @@ button.prjprogress.selected{box-shadow: 0 0 3em #abc inset; border: 0px solid #a
display: none; display: none;
} }
th.tdphase{border-radius: 0.5em 0.5em 0 0;} th.tdphase{border-radius: 1em 1em 0 0;}
td.preview{}
td.stage{}
td.live{}
td{} td{}
td.highlight{animation: blinker 0.7s linear infinite;} td.highlight{animation: blinker 0.7s linear infinite;}
@keyframes blinker { @keyframes blinker {
...@@ -327,7 +325,7 @@ input[type="radio"]:checked+label, input[type="checkbox"]:checked+label{ ...@@ -327,7 +325,7 @@ input[type="radio"]:checked+label, input[type="checkbox"]:checked+label{
/* ----- visualized process ----- */ /* ----- visualized process ----- */
.visualprocess{float: left; margin-top: 1em;} .visualprocess{float: left; margin-top: 1em;}
.visualprocess .process{float:left; text-align: center; padding: 0 0 5px; } .visualprocess .process{float:left; text-align: center; padding: 0 0 5px; }
.visualprocess .process.box{border: 2px dotted #bcd; padding: 0.5em; min-height: 16em;} .visualprocess .process.box{border: 2px dotted #abc; padding: 0.5em; min-height: 16em;}
.visualprocess .action{float:left;padding: 0em 1em 1em 1em; background: #fff;} .visualprocess .action{float:left;padding: 0em 1em 1em 1em; background: #fff;}
.visualprocess .process .title{margin-bottom: 1em; font-weight: bold; font-size: 120%; color:#aaa;} .visualprocess .process .title{margin-bottom: 1em; font-weight: bold; font-size: 120%; color:#aaa;}
......
...@@ -18,4 +18,8 @@ a.topbrand small{margin-left: 0.3em; font-weight: normal;} ...@@ -18,4 +18,8 @@ a.topbrand small{margin-left: 0.3em; font-weight: normal;}
/* no line break in top menu */ /* no line break in top menu */
.dropdown-menu a{white-space: nowrap;} .dropdown-menu a{white-space: nowrap;}
/* a vertical divider in top navigation */
.navbar-nav li.divider{border-left: 1px solid rgba(0,0,0,0.2);} .navbar-nav li.divider{border-left: 1px solid rgba(0,0,0,0.2);}
/* top right breadcrumb color */
.breadcrumb a{color: #666;}
\ No newline at end of file
...@@ -113,7 +113,8 @@ if (!array_key_exists("prj", $aParams)) { ...@@ -113,7 +113,8 @@ if (!array_key_exists("prj", $aParams)) {
foreach($oPrj->getActivePhases() as $sPhase){ foreach($oPrj->getActivePhases() as $sPhase){
$sPhaselinks.='<div class="btn-group w-100">'.$oPrj->renderLink("phase", $sPhase).'</div>' $sPhaselinks.='<div class="btn-group w-100">'.$oPrj->renderLink("phase", $sPhase).'</div>'
//. (!$oPrj->canAcceptPhase($sPhase) ? '<div class="btn-group w-100">'.$oPrj->renderLink("accept", $sPhase).'</div>' : '') //. (!$oPrj->canAcceptPhase($sPhase) ? '<div class="btn-group w-100">'.$oPrj->renderLink("accept", $sPhase).'</div>' : '')
.'<br><br>'; // .'<br><br>'
;
$sLastPhase = $sPhase; $sLastPhase = $sPhase;
} }
$BODY= $BODY=
......
...@@ -233,7 +233,7 @@ if ($sPhase) { ...@@ -233,7 +233,7 @@ if ($sPhase) {
<table> <table>
<thead> <thead>
<tr> <tr>
<th class="' . $sPhase . '" colspan="3">' . $sPhase . '</th> <th class="' . $sPhase . ' tdphase" colspan="3">' . $sPhase . '</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment