diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 10:42:01 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 10:42:01 +0200 |
commit | c5505d267f510e4d56578e066189ab0033d91408 (patch) | |
tree | 08e71b860a4eab39611fef2c9900344e6e6ca861 /help | |
parent | 51f74d021f9f302a9393af9ed6bbd75a4af45e97 (diff) | |
download | nextcloud-server-c5505d267f510e4d56578e066189ab0033d91408.tar.gz nextcloud-server-c5505d267f510e4d56578e066189ab0033d91408.zip |
adjusted backend, deactivated Apps subentry
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> |