diff options
author | Greta Doci <gretadoci@gmail.com> | 2019-06-28 18:00:51 +0200 |
---|---|---|
committer | Greta Doci <gretadoci@gmail.com> | 2019-07-04 12:18:16 +0200 |
commit | 8507d29752fb4668c9b14131f6a97ebdf2d12f58 (patch) | |
tree | 54b97f5e7eaf89e25bb2d8df88c9694c44f186f1 /settings/templates/help.php | |
parent | 2c449469d302c695ee03f6b572e329a005a25651 (diff) | |
download | nextcloud-server-8507d29752fb4668c9b14131f6a97ebdf2d12f58.tar.gz nextcloud-server-8507d29752fb4668c9b14131f6a97ebdf2d12f58.zip |
Add icons to the left sidebar on help.php
Signed-off-by: Greta Doci <gretadoci@gmail.com>
Diffstat (limited to 'settings/templates/help.php')
-rw-r--r-- | settings/templates/help.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/settings/templates/help.php b/settings/templates/help.php index 4f25444881e..f58fc66f1b2 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -2,13 +2,13 @@ <ul> <?php if($_['admin']) { ?> <li> - <a class="<?php p($_['style1']); ?>" - href="<?php print_unescaped($_['url1']); ?>"> + <a class="icon-user <?php p($_['style1']); ?>" + href="<?php print_unescaped($_['url1']); ?> class= ""> <?php p($l->t('User documentation')); ?> </a> </li> <li> - <a class="<?php p($_['style2']); ?>" + <a class="icon-user-admin <?php p($_['style2']); ?>" href="<?php print_unescaped($_['url2']); ?>"> <?php p($l->t('Administrator documentation')); ?> </a> @@ -16,12 +16,12 @@ <?php } ?> <li> - <a href="https://docs.nextcloud.com" target="_blank" rel="noreferrer noopener"> + <a href="https://docs.nextcloud.com" class="icon-category-office" target="_blank" rel="noreferrer noopener"> <?php p($l->t('Documentation')); ?> ↗ </a> </li> <li> - <a href="https://help.nextcloud.com" target="_blank" rel="noreferrer noopener"> + <a href="https://help.nextcloud.com" class="icon-comment" target="_blank" rel="noreferrer noopener"> <?php p($l->t('Forum')); ?> ↗ </a> </li> |