summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-14 10:59:30 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-14 10:59:30 +0100
commitf9a6ed6c73bd4f20cb7a504aa9c20e95fe860d7f (patch)
tree258056f8a3ef1d96b0c6fa9a3455c96b6448aea2 /core/templates
parent09d9138f841a19e417d8a8531fa591a1801db7b8 (diff)
downloadnextcloud-server-f9a6ed6c73bd4f20cb7a504aa9c20e95fe860d7f.tar.gz
nextcloud-server-f9a6ed6c73bd4f20cb7a504aa9c20e95fe860d7f.zip
fix navigation icons SVG replacement, also hover and active opacity for IE
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/layout.user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index c8b580b5fd9..282c3b20f68 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -61,7 +61,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 class="icon" src="<?php echo $entry['icon']; ?>"/>
+ <img class="icon svg" src="<?php echo $entry['icon']; ?>"/>
<?php echo $entry['name']; ?>
</a>
</li>