Sfoglia il codice sorgente

Added ellipsis for longer usernames.

Towards #7281

Signed-off-by: Abijeet <abijeetpatro@gmail.com>
tags/v14.0.0beta1
Abijeet 6 anni fa
parent
commit
6d2716dceb
1 ha cambiato i file con 6 aggiunte e 1 eliminazioni
  1. 6
    1
      apps/comments/css/comments.scss

+ 6
- 1
apps/comments/css/comments.scss Vedi File

@@ -159,11 +159,16 @@
.atwho-view-ul * .avatar-name-wrapper {
white-space: nowrap;
}

#commentsTabView .comment .author,
#commentsTabView .comment .date {
opacity: .5;
}
#commentsTabView .comment .author {
max-width: 210px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
#commentsTabView .comment .date {
margin-left: auto;
/** this is to fix the tooltip being too close due to the margin-top applied

Loading…
Annulla
Salva