mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
settings: Abbreviate long bot owner names in bot management modal.
Previously, long owner names could wrap onto two lines in the bot management modal, breaking the layout. This commit adds CSS to keep names on a single line and abbreviate with an ellipsis if too long. Fixes #23266.
This commit is contained in:
@@ -1137,6 +1137,12 @@ input.settings_text_input {
|
||||
}
|
||||
}
|
||||
|
||||
#edit_bot_owner_widget .dropdown_widget_value {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.dropdown_widget_with_label_wrapper {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
Reference in New Issue
Block a user