diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2018-10-31 10:04:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 10:04:49 +0100 |
commit | 75f8b161f9e60be1e11ed20fb5f41384b23d8235 (patch) | |
tree | 5ee4231de2cd98810f5c618c7f0feb2eafba4770 /core/templates | |
parent | 708658afa34612667191fe06560ec1f37b1cab43 (diff) | |
parent | ac01522927ee7a14d00b3dc40d910b49416ed296 (diff) | |
download | nextcloud-server-75f8b161f9e60be1e11ed20fb5f41384b23d8235.tar.gz nextcloud-server-75f8b161f9e60be1e11ed20fb5f41384b23d8235.zip |
Merge pull request #12153 from nextcloud/appnames
Show all app titles on hovering app menu area, fix #10952, fix #4619
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index d82043b2572..6f0344aa600 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -47,7 +47,7 @@ <ul id="appmenu" <?php if ($_['themingInvertMenu']) { ?>class="inverted"<?php } ?>> <?php foreach ($_['navigation'] as $entry): ?> - <li data-id="<?php p($entry['id']); ?>" class="hidden"> + <li data-id="<?php p($entry['id']); ?>" class="hidden" tabindex="-1"> <a href="<?php print_unescaped($entry['href']); ?>" <?php if ($entry['active']): ?> class="active"<?php endif; ?> aria-label="<?php p($entry['name']); ?>"> @@ -69,7 +69,7 @@ aria-haspopup="true" aria-controls="navigation" aria-expanded="false"> <a href="#" aria-label="<?php p($l->t('More apps')); ?>"> <div class="icon-more-white"></div> - <span><?php p($l->t('More apps')); ?></span> + <span><?php p($l->t('More')); ?></span> </a> </li> </ul> |