diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-14 14:47:40 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-14 14:47:40 +0100 |
commit | 55c630ea7dad32bb85171c74e7fa8d67e8546dec (patch) | |
tree | baf867d29ac24352173d464a59ce52b998542a92 /apps/files/templates/index.php | |
parent | 0f0baa530391f4ba1ae4dfe60947c2f1cd77d2d6 (diff) | |
download | nextcloud-server-55c630ea7dad32bb85171c74e7fa8d67e8546dec.tar.gz nextcloud-server-55c630ea7dad32bb85171c74e7fa8d67e8546dec.zip |
remove unneeded icon class
Diffstat (limited to 'apps/files/templates/index.php')
-rw-r--r-- | apps/files/templates/index.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index faf24d82b82..5b0bad7f341 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -5,15 +5,15 @@ <div id="new" class="button"> <a><?php p($l->t('New'));?></a> <ul> - <li class="icon icon-filetype-text" + <li class="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" + <li class="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"> + <li class="icon-link" data-type="web"> <p><?php p($l->t('From link'));?></p> </li> </ul> @@ -35,7 +35,7 @@ <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir"> <input type="file" id="file_upload_start" name='files[]' data-url="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>" /> - <a href="#" class="svg icon icon-upload"></a> + <a href="#" class="svg icon-upload"></a> </div> <?php if ($_['trash']): ?> <input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?> /> |