bot: Fix extra spacing for bot avatar.

The issue of excessive spacing between the bot avatar
heading and the button has been fixed.
This commit is contained in:
sujal shah 2024-09-11 01:12:42 +05:30
parent 3ccd53ce20
commit ed4a9e45e1
3 changed files with 8 additions and 4 deletions

View File

@ -682,7 +682,7 @@ export function show_edit_bot_info_modal(user_id: number, $container: JQuery): v
full_name: bot.full_name,
user_role_values: settings_config.user_role_values,
disable_role_dropdown: !current_user.is_admin || (bot.is_owner && !current_user.is_owner),
bot_avatar_url: bot.avatar_url,
bot_avatar_url: bot.avatar_url ?? people.medium_avatar_url_for_person(bot),
owner_full_name,
current_bot_owner: bot.bot_owner_id,
is_incoming_webhook_bot: bot.bot_type === INCOMING_WEBHOOK_BOT_TYPE,
@ -873,7 +873,6 @@ export function show_edit_bot_info_modal(user_id: number, $container: JQuery): v
// Show the avatar if the user has cleared the image
$("#bot-edit-form").on("click", ".edit_bot_avatar_clear_button", () => {
$("#current_bot_avatar_image").show();
$(".edit_bot_avatar_file_input").trigger("input");
});
$("#bot-edit-form").on("click", ".deactivate_bot_button", (e) => {

View File

@ -1513,6 +1513,9 @@
226.35deg 82.53% 55.1% / 38.82%
);
--color-typeahead-option-label: var(--grey-400);
/* Bot avatar */
--bot-avatar-size: 100px; /* Define the avatar size */
}
@media screen {

View File

@ -983,6 +983,8 @@ input[type="checkbox"] {
#current_bot_avatar_image {
margin: 5px 0 8px;
width: var(--bot-avatar-size);
height: var(--bot-avatar-size);
}
.edit_bot_avatar_preview_text {
@ -996,8 +998,8 @@ input[type="checkbox"] {
.edit_bot_avatar_preview_image,
#add_bot_preview_image {
height: 100px;
width: 100px;
height: var(--bot-avatar-size);
width: var(--bot-avatar-size);
margin: 2px 0 8px;
}