From 8814a557a21f45509523561c2e847836930a6ac5 Mon Sep 17 00:00:00 2001 From: Rakshit Date: Mon, 25 Aug 2025 12:42:00 +0000 Subject: [PATCH] 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. --- web/styles/app_components.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/styles/app_components.css b/web/styles/app_components.css index 04ebc0ca00..df35e92e83 100644 --- a/web/styles/app_components.css +++ b/web/styles/app_components.css @@ -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; }