diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-10-27 17:44:24 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-10-27 17:44:24 +0200 |
commit | b595ea6efc85709640280593459956f786d32b57 (patch) | |
tree | 22856d6ffeeaf57ff42c7fb1642da08ed4d7c49b /core/templates/layout.user.php | |
parent | 3eea7aac1391184e00a92c8801c9f0b54c43bb8d (diff) | |
download | nextcloud-server-b595ea6efc85709640280593459956f786d32b57.tar.gz nextcloud-server-b595ea6efc85709640280593459956f786d32b57.zip |
first icon update. Next step: make sprited hover state (like for home already)
Diffstat (limited to 'core/templates/layout.user.php')
-rw-r--r-- | core/templates/layout.user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 2509026dfac..1efce3c7c83 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -46,7 +46,7 @@ <?php foreach($_['navigation'] as $entry): ?> <li data-id="<?php echo $entry['id']; ?>"> <a href="<?php echo $entry['href']; ?>" title="" <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>> - <img src="<?php echo $entry['icon']; ?>"> + <div class="icon" style="background-image:url(<?php echo $entry['icon']; ?>)"></div> <?php echo $entry['name']; ?> </a> </li> |