diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-21 14:07:25 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-21 14:07:25 +0100 |
commit | 877cfb963ac67dc4a2eb7ea9f4923aa43894d38d (patch) | |
tree | c2ef3072cb6937e48302a3d3a4e5709f0fafbeb1 /apps/files/templates | |
parent | 29c43ddb91f09660c070962b9809d8efef78584e (diff) | |
download | nextcloud-server-877cfb963ac67dc4a2eb7ea9f4923aa43894d38d.tar.gz nextcloud-server-877cfb963ac67dc4a2eb7ea9f4923aa43894d38d.zip |
use SVG icons from icons.css for New file menu
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/index.php | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 939043b2c9f..ed15e46a5ac 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -5,12 +5,17 @@ <div id="new" class="button"> <a><?php p($l->t('New'));?></a> <ul> - <li style="background-image:url('<?php p(OCP\mimetype_icon('text/plain')) ?>')" - data-type='file' data-newname='<?php p($l->t('New text file')) ?>.txt'><p><?php p($l->t('Text file'));?></p></li> - <li style="background-image:url('<?php p(OCP\mimetype_icon('dir')) ?>')" - data-type='folder' data-newname='<?php p($l->t('New folder')) ?>'><p><?php p($l->t('Folder'));?></p></li> - <li style="background-image:url('<?php p(OCP\image_path('core', 'places/link.svg')) ?>')" - data-type='web'><p><?php p($l->t('From link'));?></p></li> + <li class="icon icon-filetype-text" + data-type="file" data-newname="<?php p($l->t('New text file')) ?>.txt"> + <p><?php p($l->t('Text file'));?></p> + </li> + <li class="icon icon-filetype-folder" + data-type="folder" data-newname="<?php p($l->t('New folder')) ?>"> + <p><?php p($l->t('Folder'));?></p> + </li> + <li class="icon icon-link" data-type="web"> + <p><?php p($l->t('From link'));?></p> + </li> </ul> </div> <?php endif;?> |