From dcce524376d754de19594669fdfe2cb63ea4c7cc Mon Sep 17 00:00:00 2001 From: Sahil Batra Date: Mon, 27 Mar 2023 16:25:00 +0530 Subject: [PATCH] settings: Increase width of url field in edit custom field form. This commit increases the width of url field, displayed for custom external account type fields, in edit profile field form. The width of the input is increased as urls are generally long enough and did not fit in the width set previously in most cases. We increase the width to match the width in add custom profile field form. --- web/styles/settings.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/styles/settings.css b/web/styles/settings.css index 7103285f7a..2641b740eb 100644 --- a/web/styles/settings.css +++ b/web/styles/settings.css @@ -910,7 +910,8 @@ input[type="checkbox"] { } } -.admin-profile-field-form #custom_external_account_url_pattern input { +.admin-profile-field-form #custom_external_account_url_pattern input, +#edit-custom-profile-field-form-modal .custom_external_account_detail input { width: 70%; }