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.
This commit is contained in:
Pratik Chanda
2024-12-03 00:04:32 +05:30
committed by Tim Abbott
parent 53ece78de7
commit 237aaf055e

View File

@@ -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 {