diff options
Diffstat (limited to 'help')
-rw-r--r-- | help/css/help.css | 54 | ||||
-rw-r--r-- | help/templates/index.php | 2 |
2 files changed, 8 insertions, 48 deletions
diff --git a/help/css/help.css b/help/css/help.css index e46cf112092..e8c42f808d1 100644 --- a/help/css/help.css +++ b/help/css/help.css @@ -1,48 +1,8 @@ /* APPS TABLE */ - -table td.date -{ - width: 5em; - padding: 0.5em 1em; - text-align: right; -} - -.preview -{ - padding: 3px; - text-align: left; -} - -table td.date -{ - width: 11em; - color: #555555; -} - -table td.selection, table th.selection, table td.fileaction -{ - width: 2em; - text-align: center; -} - -table td.name a -{ - padding: 6px; - text-decoration: none; - color: #555555; -} - -.type -{ - text-decoration: none; - color: #888888; - font-size: 0.8em; -} - -.description -{ - text-decoration: none; - color: #666666; - font-size: 0.9em; -} - +table td.date { width:5em; padding:.5em 1em; text-align:right; } +.preview { padding:3px; text-align:left; } +table td.date { width:11em; color:#555555; } +table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; } +table td.name a { padding:6px; text-decoration:none; color:#555555; } +.type { text-decoration:none; color:#888888; font-size:.8em; } +.description { text-decoration:none; color:#666666; font-size:.9em; } diff --git a/help/templates/index.php b/help/templates/index.php index 82ab224d49e..f859a8ae70c 100644 --- a/help/templates/index.php +++ b/help/templates/index.php @@ -6,7 +6,7 @@ <?php foreach($_["kbe"] as $kb): ?> <tr> <td width="1"><?php if($kb["preview1"] <> "") { echo('<img class="preview" border="0" src="'.$kb["preview1"].'" />'); } ?> </a></td> - <td class="name"><?php echo $kb["name"]; ?><br /><?php echo('<span class="type">'.$kb['description'].'</span>'); ?><br /> + <td class="name"><?php echo $kb["name"]; ?><br /><?php echo('<span class="type">'.$kb['description'].'</span>'); ?> <?php if($kb['answer']<>'') echo('<br /><span class="type"><b>Answer:</b></span><br /><span class="type">'.$kb['answer'].'</span>');?> </td> </tr> |