From 53eec4c152f3d67ebfbeb48b0fcb84a84dd2db1c Mon Sep 17 00:00:00 2001 From: "kush.varade.19" Date: Thu, 19 Mar 2026 09:27:34 +0530 Subject: [PATCH 1/2] Check URL label is added --- core/static/core/js/emlo-io.js | 2 +- core/static/core/scss/emlo-common.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/static/core/js/emlo-io.js b/core/static/core/js/emlo-io.js index 61b43ac9..d6c6f668 100644 --- a/core/static/core/js/emlo-io.js +++ b/core/static/core/js/emlo-io.js @@ -10,7 +10,7 @@ function setup_url_checker() { jqe_container = jqe_input.parent() // button - let jqe_btn = $(''); jqe_btn.on('click', (jqe_btn_e) => { jqe_btn_e.preventDefault() window.open($(jqe_btn_e.target).parent().find('input').val(), '_blank') diff --git a/core/static/core/scss/emlo-common.scss b/core/static/core/scss/emlo-common.scss index ecd72607..6384089b 100644 --- a/core/static/core/scss/emlo-common.scss +++ b/core/static/core/scss/emlo-common.scss @@ -3,7 +3,7 @@ display: flex; button { - background-color: black; + width: 140px; } } From 514e5ee04654688c1cfaa8d9525a69f4ef193e79 Mon Sep 17 00:00:00 2001 From: "kush.varade.19" Date: Sat, 11 Apr 2026 15:19:01 +0530 Subject: [PATCH 2/2] Input and button for check URL updated as per review --- core/static/core/scss/emlo-common.scss | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/core/static/core/scss/emlo-common.scss b/core/static/core/scss/emlo-common.scss index 6384089b..bfc6e43e 100644 --- a/core/static/core/scss/emlo-common.scss +++ b/core/static/core/scss/emlo-common.scss @@ -1,11 +1,21 @@ .url_checker_div { display: flex; + align-items: stretch; - button { - width: 140px; + input { + flex: 1; + margin-bottom: 0; } + button { + height: auto; + display: flex; + align-items: center; + justify-content: center; + margin: 0; + margin-left: 10px; + } } .standtext_btn {