diff options
-rw-r--r-- | apps/files_sharing/templates/public.php | 2 | ||||
-rw-r--r-- | core/css/mobile.css | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 3944d8438dd..2476beac1fb 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -13,7 +13,7 @@ <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"> - <div class="logo-icon svg"></div> + <div class="logo-wide svg"></div> </a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> <div class="header-right"> diff --git a/core/css/mobile.css b/core/css/mobile.css index 0a74178937d..6e2172ddbb7 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -21,6 +21,14 @@ box-align: center; } +/* on mobile, show logo-icon instead of logo-wide */ +#header .logo-wide { + background-image: url(../img/logo-icon.svg); + background-repeat: no-repeat; + width: 62px; + height: 34px; +} + /* compress search box on mobile, expand when focused */ .searchbox input[type="search"] { width: 15%; |