diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-01-14 12:24:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-14 12:24:47 +0100 |
commit | eeec3c7e8689bad0d3a80f9eb1c393833f6a0c3c (patch) | |
tree | 9ba76ee3f91c120ab66bff1698871afed6a2856b | |
parent | 2e03cb01f019235bb47746567cd4a0892de21b7f (diff) | |
parent | 349687ac0937f095c29cb945ea2cfa583101032b (diff) | |
download | nextcloud-server-eeec3c7e8689bad0d3a80f9eb1c393833f6a0c3c.tar.gz nextcloud-server-eeec3c7e8689bad0d3a80f9eb1c393833f6a0c3c.zip |
Merge pull request #13566 from nextcloud/fix/13519/click-app-names
Fix click app names
-rw-r--r-- | core/css/header.scss | 5 | ||||
-rw-r--r-- | core/templates/layout.user.php | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index 020154ebb0f..dd6596ac14f 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -482,7 +482,7 @@ nav[role='navigation'] { a.active { opacity: 1; } - + &:hover a + span, a:focus + span, &:hover span, @@ -504,7 +504,7 @@ nav[role='navigation'] { width: 20px; height: 20px; } - + /* App title */ span { opacity: 0; @@ -516,6 +516,7 @@ nav[role='navigation'] { overflow: hidden; text-overflow: ellipsis; transition: all var(--animation-quick) ease; + pointer-events: none; } /* Set up transitions for showing app titles on hover */ diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 6f0344aa600..dfa96c5d1c8 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -59,10 +59,10 @@ </svg> <div class="icon-loading-small-dark" style="display:none;"></div> + <span> + <?php p($entry['name']); ?> + </span> </a> - <span> - <?php p($entry['name']); ?> - </span> </li> <?php endforeach; ?> <li id="more-apps" class="menutoggle" |