org_settings: Correctly display long channel names.

This commit is contained in:
Karl Stolley
2025-04-29 12:28:49 -05:00
committed by Tim Abbott
parent 3cf4251944
commit 9ae704510f

View File

@@ -830,6 +830,23 @@ input[type="checkbox"] {
#organization-settings {
.dropdown-widget-button {
color: hsl(0deg 0% 33%);
.dropdown_widget_value {
/* The max-width should account for the
16px-square box (at 16px/1em) for the
chevron icon. */
max-width: calc(100% - 1em);
display: flex;
align-items: baseline;
/* Mimic the space from the previous inline
layout. */
gap: 0.4ch;
}
.decorated-channel-name {
overflow-x: hidden;
text-overflow: ellipsis;
}
}
}