Commit d518514c35a0dd36394c47c8349ca1ed184aea62

Authored by Michael Joseph
1 parent b66fc0c1

specifically set colour for ns


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1489 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/dashboardUI.inc
@@ -26,7 +26,7 @@ function renderPendingWebDocuments($aPendingDocumentList) { @@ -26,7 +26,7 @@ function renderPendingWebDocuments($aPendingDocumentList) {
26 $sBgColor = "#9D9D7F"; 26 $sBgColor = "#9D9D7F";
27 $sToRender = "\t<tr align=\"left\" bgcolor=\"$sBgColor\">\n"; 27 $sToRender = "\t<tr align=\"left\" bgcolor=\"$sBgColor\">\n";
28 28
29 - $sToRender .= "\t\t<th class=\"sectionHeading\" colspan=\"2\">Pending Web Documents</th>\n"; 29 + $sToRender .= "\t\t<th class=\"sectionHeading\" colspan=\"2\"><font color=\"ffffff\">Pending Web Documents</font></th>\n";
30 $sToRender .= "\t</tr>\n"; 30 $sToRender .= "\t</tr>\n";
31 for ($i = 0; $i < count($aPendingDocumentList); $i++) { 31 for ($i = 0; $i < count($aPendingDocumentList); $i++) {
32 $oWebDocument = $aPendingDocumentList[$i]; 32 $oWebDocument = $aPendingDocumentList[$i];
@@ -55,7 +55,7 @@ function renderPendingCollaborationDocuments($aPendingDocumentList) { @@ -55,7 +55,7 @@ function renderPendingCollaborationDocuments($aPendingDocumentList) {
55 } 55 }
56 $sToRender = "\t<tr align=\"left\" bgcolor=\"$sBgColor\">\n"; 56 $sToRender = "\t<tr align=\"left\" bgcolor=\"$sBgColor\">\n";
57 57
58 - $sToRender .= "\t\t<th class=\"sectionHeading\" colspan=\"2\">Pending Documents</th>\n"; 58 + $sToRender .= "\t\t<th class=\"sectionHeading\" colspan=\"2\"><font color=\"ffffff\">Pending Documents</font></th>\n";
59 $sToRender .= "\t</tr>\n"; 59 $sToRender .= "\t</tr>\n";
60 for ($i = 0; $i < count($aPendingDocumentList); $i++) { 60 for ($i = 0; $i < count($aPendingDocumentList); $i++) {
61 $oDocument = $aPendingDocumentList[$i]; 61 $oDocument = $aPendingDocumentList[$i];
@@ -79,7 +79,7 @@ function renderCheckedOutDocuments($aCheckedOutDocumentList) { @@ -79,7 +79,7 @@ function renderCheckedOutDocuments($aCheckedOutDocumentList) {
79 $sBgColor = "#CECEBF"; 79 $sBgColor = "#CECEBF";
80 } 80 }
81 $sToRender = "\t<tr align=\"left\" bgcolor=\"$sBgColor\">\n"; 81 $sToRender = "\t<tr align=\"left\" bgcolor=\"$sBgColor\">\n";
82 - $sToRender .= "\t\t<th class=\"sectionHeading\" colspan=\"2\">Checked Out Documents</th>\n"; 82 + $sToRender .= "\t\t<th class=\"sectionHeading\" colspan=\"2\"><font color=\"ffffff\">Checked Out Documents</font></th>\n";
83 $sToRender .= "\t</tr>\n"; 83 $sToRender .= "\t</tr>\n";
84 84
85 if (count($aCheckedOutDocumentList) > 0) { 85 if (count($aCheckedOutDocumentList) > 0) {
@@ -116,7 +116,7 @@ function renderSubscriptionAlerts($aSubscriptionAlertList) { @@ -116,7 +116,7 @@ function renderSubscriptionAlerts($aSubscriptionAlertList) {
116 $sBgColor = "#CECEBF"; 116 $sBgColor = "#CECEBF";
117 } 117 }
118 $sToRender = "\t<tr align=\"left\" bgcolor=\"$sBgColor\">\n"; 118 $sToRender = "\t<tr align=\"left\" bgcolor=\"$sBgColor\">\n";
119 - $sToRender .= "\t\t<th class=\"sectionHeading\" colspan=\"2\">Subscription Alerts</th>\n"; 119 + $sToRender .= "\t\t<th class=\"sectionHeading\" colspan=\"2\"><font color=\"ffffff\">Subscription Alerts</font></th>\n";
120 $sToRender .= "\t</tr>\n"; 120 $sToRender .= "\t</tr>\n";
121 for ($i = 0; $i < count($aSubscriptionAlertList); $i++) { 121 for ($i = 0; $i < count($aSubscriptionAlertList); $i++) {
122 $sToRender .= "\t<tr>\n"; 122 $sToRender .= "\t<tr>\n";
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc
@@ -23,7 +23,7 @@ function renderHeading($sHeading) { @@ -23,7 +23,7 @@ function renderHeading($sHeading) {
23 $sSectionName = $default->siteMap->getSectionName(substr($_SERVER["PHP_SELF"], strlen($default->rootUrl), strlen($_SERVER["PHP_SELF"]))); 23 $sSectionName = $default->siteMap->getSectionName(substr($_SERVER["PHP_SELF"], strlen($default->rootUrl), strlen($_SERVER["PHP_SELF"])));
24 $sColor = $default->siteMap->getSectionColour($sSectionName, "th"); 24 $sColor = $default->siteMap->getSectionColour($sSectionName, "th");
25 $sToRender = "<table border=\"0\" width=\"600\">\n"; 25 $sToRender = "<table border=\"0\" width=\"600\">\n";
26 - $sToRender .= "<tr align=\"left\"><th class=\"sectionHeading\" bgcolor=\"$sColor\">$sHeading</th></tr>\n"; 26 + $sToRender .= "<tr align=\"left\"><th class=\"sectionHeading\" bgcolor=\"$sColor\"><font color=\"ffffff\">$sHeading</font></th></tr>\n";
27 $sToRender .= "<tr/>\n"; 27 $sToRender .= "<tr/>\n";
28 $sToRender .= "<tr/>\n"; 28 $sToRender .= "<tr/>\n";
29 $sToRender .= "</table>\n"; 29 $sToRender .= "</table>\n";