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 | |
parent | 0f0baa530391f4ba1ae4dfe60947c2f1cd77d2d6 (diff) | |
download | nextcloud-server-55c630ea7dad32bb85171c74e7fa8d67e8546dec.tar.gz nextcloud-server-55c630ea7dad32bb85171c74e7fa8d67e8546dec.zip |
remove unneeded icon class
-rw-r--r-- | apps/files/templates/index.php | 8 | ||||
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 2 | ||||
-rw-r--r-- | apps/files_sharing/templates/public.php | 2 |
3 files changed, 6 insertions, 6 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') : '' ?> /> diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 19b1fb27630..055329ecabf 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -12,7 +12,7 @@ placeholder="" value="" autocomplete="off" autocapitalize="off" autocorrect="off" autofocus /> - <input type="submit" value="" class="svg icon icon-confirm" /> + <input type="submit" value="" class="svg icon-confirm" /> </p> </fieldset> </form> diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 3eb84ce1672..fc8d59e1e89 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -9,7 +9,7 @@ <input type="hidden" name="sharingToken" value="<?php p($_['sharingToken']) ?>" id="sharingToken"> <input type="hidden" name="filename" value="<?php p($_['filename']) ?>" id="filename"> <input type="hidden" name="mimetype" value="<?php p($_['mimetype']) ?>" id="mimetype"> -<header><div id="header" class="icon icon-noise <?php p((isset($_['folder']) ? 'share-folder' : 'share-file')) ?>"> +<header><div id="header" class="icon-noise <?php p((isset($_['folder']) ? 'share-folder' : 'share-file')) ?>"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="<?php p($theme->getName()); ?>" /></a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> |