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:
parent
a291ee6991
commit
cf3768718b
2 changed files with 13 additions and 9 deletions
|
@ -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;
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue