Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-08-24 23:21:55 +0300
committerGitHub <noreply@github.com>2018-08-24 23:21:55 +0300
commit8761856a7156474257f0f17949f1379804b2c627 (patch)
treea93dd9c84e6c5c0592c54aafc4dd28ff5aa7e95a /apps/files_sharing/templates/public.php
parentac932309a232afc2e08fe167aa1611e98951e86c (diff)
parent13230f180a897cd56489102c6e91d39fb8e1e2f3 (diff)
Merge pull request #10838 from nextcloud/header-fixes-and-public-note
Header fixes and public note
Diffstat (limited to 'apps/files_sharing/templates/public.php')
-rw-r--r--apps/files_sharing/templates/public.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php
index 1c552b7d476..da80f8d1377 100644
--- a/apps/files_sharing/templates/public.php
+++ b/apps/files_sharing/templates/public.php
@@ -30,8 +30,15 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
<?php endif; ?>
<input type="hidden" name="maxSizeAnimateGif" value="<?php p($_['maxSizeAnimateGif']); ?>" id="maxSizeAnimateGif">
<?php if (isset($_['note']) && $_['note'] !== '') : ?>
- <div id="note">
- <?php p($l->t('Note:')); p(' ' . $_['note']); ?>
+ <div id="notemenu" class="hidden">
+ <div class="icon-comment-white menutoggle" tabindex="0" role="button" aria-haspopup="true" aria-controls="note-content" aria-expanded="false">
+ <span class="hidden-visually"><?php p($l->t('Share note'))?></span>
+ </div>
+ <div id="note-content" class="menu" aria-label="Note content">
+ <div class="content">
+ <?php p($_['note']); ?>
+ </div>
+ </div>
</div>
<?php endif; ?>