Skip to content
Snippets Groups Projects
Commit 6e864e65 authored by Georg Ehrke's avatar Georg Ehrke
Browse files

fix size of icons in 'new' dropdown menu - I hope @jancborchardt knows a...

fix size of icons in 'new' dropdown menu - I hope @jancborchardt knows a better solution coz this won't work in most IE versions ...
parent d332b1d4
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment