summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-07-03 09:45:19 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-07-03 09:45:19 +0200
commite9f616b0a03e830ae3ec723a8eff511220810eca (patch)
treee5e4fe7567018872f312cd8642097cfe5f889c6e /apps/files_sharing/templates
parent1a1c5aa3c09322f2c69f9ed39078f495c840ebd0 (diff)
parent0df04975b0f2a938b85c6443f76d44f4706c11c1 (diff)
downloadnextcloud-server-e9f616b0a03e830ae3ec723a8eff511220810eca.tar.gz
nextcloud-server-e9f616b0a03e830ae3ec723a8eff511220810eca.zip
Merge pull request #9391 from owncloud/design-mobile-share
Fix mobile share view glitches
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r--apps/files_sharing/templates/public.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php
index 87472c5c3b4..3944d8438dd 100644
--- a/apps/files_sharing/templates/public.php
+++ b/apps/files_sharing/templates/public.php
@@ -11,8 +11,10 @@
<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="<?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>
+ <a href="<?php print_unescaped(link_to('', 'index.php')); ?>"
+ title="" id="owncloud">
+ <div class="logo-icon svg"></div>
+ </a>
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
<div class="header-right">
<span id="details">
@@ -25,7 +27,7 @@
</span>
<a href="<?php p($_['downloadURL']); ?>" id="download" class="button">
<img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>"/>
- <?php p($l->t('Download'))?>
+ <span id="download-text"><?php p($l->t('Download'))?></span>
</a>
</span>
</div>