From c477661af00173ecc5df9c88a3d241b825657157 Mon Sep 17 00:00:00 2001 From: Maxim Shishmarev Date: Fri, 11 Oct 2019 15:49:16 +1100 Subject: [PATCH] Prevent chat member's pubkey from overflowing --- stylesheets/_mentions.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/stylesheets/_mentions.scss b/stylesheets/_mentions.scss index 150e94237..6e9fee47f 100644 --- a/stylesheets/_mentions.scss +++ b/stylesheets/_mentions.scss @@ -14,6 +14,9 @@ } background-color: $color-light-10; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; .name-part { font-weight: 300; @@ -22,6 +25,7 @@ .pubkey-part { margin-left: 6px; + color: darkslategrey; } } @@ -60,6 +64,10 @@ background-color: $color-dark-70; color: white; + + .pubkey-part { + color: rgb(230, 230, 230); + } } .member-selected {