Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-01-23 16:11:08 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-02-06 17:28:17 +0400
commit87d06bae854d53d0272f1bbcb31f5a5add8b946d (patch)
treecc7fc4e48f50826c5ccdffa09d665fdae4ef74d1 /apps
parentc096c6edc3532a694781f2e63b626a9131b45679 (diff)
remove %webroot% from files app
Diffstat (limited to 'apps')
-rw-r--r--apps/files/css/upload.css8
-rw-r--r--apps/files/templates/index.php2
2 files changed, 1 insertions, 9 deletions
diff --git a/apps/files/css/upload.css b/apps/files/css/upload.css
index ef043569094..d44967c7ae0 100644
--- a/apps/files/css/upload.css
+++ b/apps/files/css/upload.css
@@ -18,9 +18,6 @@
margin: -5px -3px;
cursor: pointer;
z-index: 10;
- background-image: url('%webroot%/core/img/actions/upload.svg');
- background-repeat: no-repeat;
- background-position: center;
opacity: .65;
}
.file_upload_target { display:none; }
@@ -119,11 +116,6 @@
.oc-dialog .fileexists .conflict input[type='checkbox'] {
float: left;
}
-.oc-dialog .fileexists .toggle {
- background-image: url('%webroot%/core/img/actions/triangle-e.png');
- width: 16px;
- height: 16px;
-}
.oc-dialog .fileexists #allfileslabel {
float:right;
}
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php
index 00ec109621f..5ed1ee0c7a0 100644
--- a/apps/files/templates/index.php
+++ b/apps/files/templates/index.php
@@ -23,7 +23,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"></a>
+ <a href="#" class="svg icon 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') : '' ?>></input>