summaryrefslogtreecommitdiffstats
path: root/apps/files/templates
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2013-07-02 16:30:58 +0200
committerGeorg Ehrke <developer@georgehrke.com>2013-07-02 16:30:58 +0200
commit6e864e6599602609b5808ae4d043b273a9fe5071 (patch)
tree35dd317369e582bdbc46bb0344acd63b678bc8f0 /apps/files/templates
parentd332b1d4a2e9382aaa8e8a11b6200efaadb18768 (diff)
downloadnextcloud-server-6e864e6599602609b5808ae4d043b273a9fe5071.tar.gz
nextcloud-server-6e864e6599602609b5808ae4d043b273a9fe5071.zip
fix size of icons in 'new' dropdown menu - I hope @jancborchardt knows a better solution coz this won't work in most IE versions ...
Diffstat (limited to 'apps/files/templates')
-rw-r--r--apps/files/templates/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php
index b576253f4f0..c4a15c5fa61 100644
--- a/apps/files/templates/index.php
+++ b/apps/files/templates/index.php
@@ -6,9 +6,9 @@
<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')) ?>')"
+ <li style="background-image:url('<?php p(OCP\mimetype_icon('text/plain')) ?>');background-size: 16px 16px;"
data-type='file'><p><?php p($l->t('Text file'));?></p></li>
- <li style="background-image:url('<?php p(OCP\mimetype_icon('dir')) ?>')"
+ <li style="background-image:url('<?php p(OCP\mimetype_icon('dir')) ?>');background-size: 16px 16px;"
data-type='folder'><p><?php p($l->t('Folder'));?></p></li>
<li style="background-image:url('<?php p(OCP\image_path('core', 'actions/public.png')) ?>')"
data-type='web'><p><?php p($l->t('From link'));?></p></li>