From 9d0f5a826c02e570e370b276d8b19b2505f740e1 Mon Sep 17 00:00:00 2001 From: Carlos Henrique Santos Silveira <109424074+CarlosDcomp@users.noreply.github.com> Date: Tue, 21 Mar 2023 10:00:15 -0300 Subject: [PATCH] fix: now the checkbox is only marked when the click is inside it --- themes/default/css/template2.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/themes/default/css/template2.css b/themes/default/css/template2.css index ea14a1381..42dab4de4 100644 --- a/themes/default/css/template2.css +++ b/themes/default/css/template2.css @@ -420,4 +420,13 @@ input[type="checkbox"] { .t-button-primary { border: none; -} \ No newline at end of file +} + +.checkbox { + pointer-events: none; + } + + .checkbox > input[type="checkbox"] { + pointer-events: auto; + } + \ No newline at end of file