Browse Source

Fix missing keyboard focus ability and feedback for sessions action menu

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
tags/v15.0.0beta1
Jan-Christoph Borchardt 5 years ago
parent
commit
0f89354035
No account linked to committer's email address
2 changed files with 4 additions and 3 deletions
  1. 3
    2
      settings/css/settings.scss
  2. 1
    1
      settings/js/templates/authtoken.handlebars

+ 3
- 2
settings/css/settings.scss View File

@@ -458,7 +458,7 @@ table.nostyle {
}
.token-list {
td > a.icon-more {
transition: opacity 0.5s;
transition: opacity var(--animation-quick);
}
a.icon-more {
padding: 14px;
@@ -469,8 +469,9 @@ table.nostyle {
}
tr {
&:hover td > a.icon,
td > a.icon:focus,
&.active td > a.icon {
opacity: 0.7;
opacity: 1;
}
}
}

+ 1
- 1
settings/js/templates/authtoken.handlebars View File

@@ -8,7 +8,7 @@
<td>
<span class="last-activity has-tooltip" title="{{lastActivityTime}}">{{lastActivity}}</span></td>
<td class="more">
{{#if showMore}}<a class="icon icon-more"/>{{/if}}
{{#if showMore}}<a class="icon icon-more" tabindex="0"/>{{/if}}
<div class="popovermenu menu">
{{#if canScope}}
<li><span class="menuitem">

Loading…
Cancel
Save