diff --git a/apps/files/js/filesummary.js b/apps/files/js/filesummary.js
index 104dabf1b0..ca70259335 100644
--- a/apps/files/js/filesummary.js
+++ b/apps/files/js/filesummary.js
@@ -181,7 +181,7 @@
var info = t('files', '{dirs} and {files}', infoVars);
- var $summary = $('
'+info+' | '+fileSize+' | ');
+ var $summary = $(''+info+' | '+fileSize+' | ');
if (!this.summary.totalFiles && !this.summary.totalDirs) {
this.$el.addClass('hidden');
diff --git a/apps/files_sharing/css/mobile.css b/apps/files_sharing/css/mobile.css
index 333c4c77fc..2a630f552e 100644
--- a/apps/files_sharing/css/mobile.css
+++ b/apps/files_sharing/css/mobile.css
@@ -5,6 +5,11 @@
position: absolute !important;
}
+/* hide text of download button, only show icon */
+#download-text {
+ display: none;
+}
+
/* hide size and date columns */
table th#headerSize,
table td.filesize,
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php
index 87472c5c3b..3944d8438d 100644
--- a/apps/files_sharing/templates/public.php
+++ b/apps/files_sharing/templates/public.php
@@ -11,8 +11,10 @@