diff --git a/styles/bootstrap/application.css b/styles/bootstrap/application.css index ac8471915..e86798a9a 100644 --- a/styles/bootstrap/application.css +++ b/styles/bootstrap/application.css @@ -243,6 +243,12 @@ ul.jqtree-tree li.jqtree_common > .jqtree-element:hover { bottom: 270px; } +i.initstate {color: #ff9900;} +i.released {color: #00b000;} +i.rejected {color: #b00000;} +i.in-workflow {color: #11479e;} +i.workflow-action {color: #91479e;} + @media (max-width: 480px) { .nav-tabs > li { float:none; diff --git a/views/bootstrap/class.WorkflowGraph.php b/views/bootstrap/class.WorkflowGraph.php index 4a7cdb0c5..8fd2645b8 100644 --- a/views/bootstrap/class.WorkflowGraph.php +++ b/views/bootstrap/class.WorkflowGraph.php @@ -337,11 +337,11 @@ div.buttons button {margin: 3px; float: right;}
-
-
-
-
- +
+
+
+
+
diff --git a/views/bootstrap/class.WorkflowMgr.php b/views/bootstrap/class.WorkflowMgr.php index f9c005d56..aab63f1b1 100644 --- a/views/bootstrap/class.WorkflowMgr.php +++ b/views/bootstrap/class.WorkflowMgr.php @@ -177,14 +177,14 @@ $(document).ready(function() { if(!$transusers && !$transgroups) { echo " class=\"error\""; } - echo ">".$state->getName()."
"; - echo $nextstate->getName(); + echo ">".' '.$state->getName()."
"; $docstatus = $nextstate->getDocumentStatus(); + echo ' '.$nextstate->getName(); if($docstatus == S_RELEASED || $docstatus == S_REJECTED) { echo "
".getOverallStatusText($docstatus); } echo ""; - echo "".$action->getName().""; + echo " ".$action->getName().""; echo ""; foreach($transusers as $transuser) { $u = $transuser->getUser();