From 6d2716dceb7791ef23f56510f9ceb29144b62dc1 Mon Sep 17 00:00:00 2001
From: Abijeet <abijeetpatro@gmail.com>
Date: Sun, 25 Feb 2018 20:10:56 +0530
Subject: [PATCH] Added ellipsis for longer usernames.

Towards #7281

Signed-off-by: Abijeet <abijeetpatro@gmail.com>
---
 apps/comments/css/comments.scss | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/apps/comments/css/comments.scss b/apps/comments/css/comments.scss
index 5e0bbce28a1..ec400a68090 100644
--- a/apps/comments/css/comments.scss
+++ b/apps/comments/css/comments.scss
@@ -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
-- 
GitLab