Commit 108898e9dd315dd8553001f77ddf3beb7872772f
1 parent
d5f634f8
specifically set colour for ns
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1489 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
5 additions
and
5 deletions
presentation/lookAndFeel/knowledgeTree/dashboardUI.inc
| ... | ... | @@ -26,7 +26,7 @@ function renderPendingWebDocuments($aPendingDocumentList) { |
| 26 | 26 | $sBgColor = "#9D9D7F"; |
| 27 | 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 | 30 | $sToRender .= "\t</tr>\n"; |
| 31 | 31 | for ($i = 0; $i < count($aPendingDocumentList); $i++) { |
| 32 | 32 | $oWebDocument = $aPendingDocumentList[$i]; |
| ... | ... | @@ -55,7 +55,7 @@ function renderPendingCollaborationDocuments($aPendingDocumentList) { |
| 55 | 55 | } |
| 56 | 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 | 59 | $sToRender .= "\t</tr>\n"; |
| 60 | 60 | for ($i = 0; $i < count($aPendingDocumentList); $i++) { |
| 61 | 61 | $oDocument = $aPendingDocumentList[$i]; |
| ... | ... | @@ -79,7 +79,7 @@ function renderCheckedOutDocuments($aCheckedOutDocumentList) { |
| 79 | 79 | $sBgColor = "#CECEBF"; |
| 80 | 80 | } |
| 81 | 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 | 83 | $sToRender .= "\t</tr>\n"; |
| 84 | 84 | |
| 85 | 85 | if (count($aCheckedOutDocumentList) > 0) { |
| ... | ... | @@ -116,7 +116,7 @@ function renderSubscriptionAlerts($aSubscriptionAlertList) { |
| 116 | 116 | $sBgColor = "#CECEBF"; |
| 117 | 117 | } |
| 118 | 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 | 120 | $sToRender .= "\t</tr>\n"; |
| 121 | 121 | for ($i = 0; $i < count($aSubscriptionAlertList); $i++) { |
| 122 | 122 | $sToRender .= "\t<tr>\n"; | ... | ... |
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc
| ... | ... | @@ -23,7 +23,7 @@ function renderHeading($sHeading) { |
| 23 | 23 | $sSectionName = $default->siteMap->getSectionName(substr($_SERVER["PHP_SELF"], strlen($default->rootUrl), strlen($_SERVER["PHP_SELF"]))); |
| 24 | 24 | $sColor = $default->siteMap->getSectionColour($sSectionName, "th"); |
| 25 | 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 | 27 | $sToRender .= "<tr/>\n"; |
| 28 | 28 | $sToRender .= "<tr/>\n"; |
| 29 | 29 | $sToRender .= "</table>\n"; | ... | ... |