Commit a1f830efa8c651c928d5d183950a9f36a227fbca
1 parent
141ed671
corrected css tag usage
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@807 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
16 additions
and
16 deletions
presentation/lookAndFeel/knowledgeTree/dashboardUI.inc
| ... | ... | @@ -78,34 +78,34 @@ function getSubscriptionDocuments() { |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | function pendingDocumentsHeaders() { |
| 81 | - return "<th align=\"left\" width=\"33%\"> | |
| 82 | - <span class=\"sectionColumns\">Title</span> | |
| 81 | + return "<th align=\"left\" width=\"33%\" class=\"sectionColumns\"> | |
| 82 | + Title | |
| 83 | 83 | </th> |
| 84 | - <th align=\"left\" width=\"33%\"> | |
| 85 | - <span class=\"sectionColumns\">Status</span> | |
| 84 | + <th align=\"left\" width=\"33%\" class=\"sectionColumns\"> | |
| 85 | + Status | |
| 86 | 86 | </th> |
| 87 | - <th align=\"left\" width=\"33%\"> | |
| 88 | - <span class=\"sectionColumns\">Days</span> | |
| 87 | + <th align=\"left\" width=\"33%\" class=\"sectionColumns\"> | |
| 88 | + Days | |
| 89 | 89 | </th>"; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | function checkedOutDocumentsHeaders() { |
| 93 | - return "<th align=\"left\" width=\"33%\"> | |
| 94 | - <span class=\"sectionColumns\">Title</span> | |
| 93 | + return "<th align=\"left\" width=\"33%\" class=\"sectionColumns\"> | |
| 94 | + Title | |
| 95 | 95 | </th> |
| 96 | - <th align=\"left\" width=\"66%\"> | |
| 97 | - <span class=\"sectionColumns\">Days</span> | |
| 96 | + <th align=\"left\" width=\"66%\" class=\"sectionColumns\"> | |
| 97 | + Days | |
| 98 | 98 | </th>"; |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | function subscriptionDocumentsHeaders() { |
| 102 | - return "<th align=\"left\" width=\"33%\"> | |
| 103 | - <span class=\"sectionColumns\">Title</span> | |
| 102 | + return "<th align=\"left\" width=\"33%\" class=\"sectionColumns\"> | |
| 103 | + Title | |
| 104 | 104 | </th> |
| 105 | - <th align=\"left\" width=\"33%\"> | |
| 106 | - <span class=\"sectionColumns\">Status</span> | |
| 105 | + <th align=\"left\" width=\"33%\" class=\"sectionColumns\"> | |
| 106 | + Status | |
| 107 | 107 | </th> |
| 108 | - <th align=\"left\" width=\"33%\"> | |
| 109 | - <span class=\"sectionColumns\">Days</span> | |
| 108 | + <th align=\"left\" width=\"33%\" class=\"sectionColumns\"> | |
| 109 | + Days | |
| 110 | 110 | </th>"; |
| 111 | 111 | } | ... | ... |