css: Set white-space: nowrap for channel dropdowns in org_settings.

This commit ensures that long channel names, including those
containing multiple words, are properly abbreviated in the channel
dropdown widgets in organization settings.

Follow up to commit:
9ae704510f org_settings: Correctly display long channel names,
which handled long single-word channel names.
This commit is contained in:
Saubhagya Patel
2025-06-07 14:25:03 +05:30
committed by Tim Abbott
parent 45f38795e9
commit 6e38b56405

View File

@@ -858,6 +858,7 @@ input[type="checkbox"] {
.decorated-channel-name {
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}