From 237aaf055eadc8fda99d6142a682215e749b435c Mon Sep 17 00:00:00 2001 From: Pratik Chanda Date: Tue, 3 Dec 2024 00:04:32 +0530 Subject: [PATCH] css: Fix overflow in channel dropdown widget in user profile. This commit fixes the channel name overflow in dropdown widget after selecting a long channel name and abbreviates the channel name. --- web/styles/popovers.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/styles/popovers.css b/web/styles/popovers.css index 3fc646e95e..aac389ce3d 100644 --- a/web/styles/popovers.css +++ b/web/styles/popovers.css @@ -602,6 +602,12 @@ ul.popover-group-menu-member-list { align-items: baseline; padding-top: 2px; } + + .dropdown_widget_value { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } } .stream-list-top-section {