Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix click app names
Signed-off-by: Michael Weimann <[email protected]>
  • Loading branch information
weeman1337 authored and Backportbot committed Jan 14, 2019
commit 59efe5d0e6c777516595a033b20df4ac1fb08053
5 changes: 3 additions & 2 deletions core/css/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ nav[role='navigation'] {
a.active {
opacity: 1;
}

&:hover a + span,
a:focus + span,
&:hover span,
Expand All @@ -504,7 +504,7 @@ nav[role='navigation'] {
width: 20px;
height: 20px;
}

/* App title */
span {
opacity: 0;
Expand All @@ -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 */
Expand Down
6 changes: 3 additions & 3 deletions core/templates/layout.user.php
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down