Browse Source

Fix click app names

Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
tags/v16.0.0alpha1
Michael Weimann 5 years ago
parent
commit
349687ac09
No account linked to committer's email address
2 changed files with 6 additions and 5 deletions
  1. 3
    2
      core/css/header.scss
  2. 3
    3
      core/templates/layout.user.php

+ 3
- 2
core/css/header.scss View File

@@ -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 */

+ 3
- 3
core/templates/layout.user.php View File

@@ -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"

Loading…
Cancel
Save