summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2018-11-01 12:32:53 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2018-11-01 12:32:53 +0100
commitcf3768718bad230b51f7e8d8fd9b91208e296525 (patch)
treef1c47f059633935234c4246c7dc2bce77366701b
parenta291ee69913f02a4b6b337b65dd1c7e48e050eca (diff)
downloadnextcloud-server-cf3768718bad230b51f7e8d8fd9b91208e296525.tar.gz
nextcloud-server-cf3768718bad230b51f7e8d8fd9b91208e296525.zip
Remove tooltip from sessions, just wrap lines for simplicity and no duplication
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r--settings/css/settings.scss18
-rw-r--r--settings/js/templates/authtoken.handlebars4
2 files changed, 13 insertions, 9 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss
index a028a62d2be..d37cc2e2a14 100644
--- a/settings/css/settings.scss
+++ b/settings/css/settings.scss
@@ -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;
diff --git a/settings/js/templates/authtoken.handlebars b/settings/js/templates/authtoken.handlebars
index 979cd142ff4..3653c3246e1 100644
--- a/settings/js/templates/authtoken.handlebars
+++ b/settings/js/templates/authtoken.handlebars
@@ -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>