Remove tooltip from sessions, just wrap lines for simplicity and no duplication

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2018-11-01 12:32:53 +01:00
parent a291ee6991
commit cf3768718b
No known key found for this signature in database
GPG key ID: CBD846FC845CBE17
2 changed files with 13 additions and 9 deletions

View file

@ -424,11 +424,22 @@ table.nostyle {
}
}
.token-list td {
border-top: 1px solid var(--color-border);
max-width: 200px;
white-space: normal;
vertical-align: middle;
position: relative;
&%icon {
overflow: visible;
position: relative;
width: 16px;
}
&.token-name {
padding: 10px 0;
}
&.more {
@extend %icon;
}
@ -441,13 +452,6 @@ table.nostyle {
height: 44px;
}
}
border-top: 1px solid var(--color-border);
text-overflow: ellipsis;
max-width: 200px;
white-space: nowrap;
overflow: hidden;
vertical-align: middle;
position: relative;
}
tr > *:nth-child(3) {
text-align: right;

View file

@ -2,8 +2,8 @@
<td class="client">
<div class="{{icon}}" />
</td>
<td class="has-tooltip" title="{{title}}">
<span class="token-name">{{name}}</span>
<td class="token-name">
{{name}}
</td>
<td>
<span class="last-activity has-tooltip" title="{{lastActivityTime}}">{{lastActivity}}</span></td>