diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-08 19:25:28 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-08 19:25:28 +0200 |
commit | 84c2fe85b72a0ef2c3b56075316f75153ba07ae7 (patch) | |
tree | dd9957c6f4c357e5bf8dc8b1e11ee60f02dbdbad /apps/files/templates/appnavigation.php | |
parent | d53aa4a8163d0f8c272572c4fb75507e270e64ad (diff) | |
download | nextcloud-server-84c2fe85b72a0ef2c3b56075316f75153ba07ae7.tar.gz nextcloud-server-84c2fe85b72a0ef2c3b56075316f75153ba07ae7.zip |
add icons to files sidebar, fix shade, fix position of settings icon and text
Diffstat (limited to 'apps/files/templates/appnavigation.php')
-rw-r--r-- | apps/files/templates/appnavigation.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/files/templates/appnavigation.php b/apps/files/templates/appnavigation.php index 8e72fe63316..5521a5d44fa 100644 --- a/apps/files/templates/appnavigation.php +++ b/apps/files/templates/appnavigation.php @@ -1,7 +1,12 @@ <div id="app-navigation"> - <ul> + <ul class="with-icon"> <?php foreach ($_['navigationItems'] as $item) { ?> - <li data-id="<?php p($item['id']) ?>" class="nav-<?php p($item['id']) ?>"><a href="<?php p(isset($item['href']) ? $item['href'] : '#') ?>"><?php p($item['name']);?></a></li> + <li data-id="<?php p($item['id']) ?>" class="nav-<?php p($item['id']) ?>"> + <a href="<?php p(isset($item['href']) ? $item['href'] : '#') ?>" + class="nav-icon-<?php p($item['id']) ?>"> + <?php p($item['name']);?> + </a> + </li> <?php } ?> </ul> <div id="app-settings"> |