From 7d057801ee2cdb4c67040ae54ca04529eec99bb4 Mon Sep 17 00:00:00 2001 From: Corentin Forler <10946971+cogk@users.noreply.github.com> Date: Thu, 24 Aug 2023 15:09:38 +0200 Subject: [PATCH] feat(grid): Extend clickable area of checkboxes --- frappe/public/scss/common/grid.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frappe/public/scss/common/grid.scss b/frappe/public/scss/common/grid.scss index 5e95963332..80356d0977 100644 --- a/frappe/public/scss/common/grid.scss +++ b/frappe/public/scss/common/grid.scss @@ -118,6 +118,15 @@ .grid-row-check { margin-top: 2px; + + &::after { + // Extend the checkbox's clickable area + display: block; + content: ""; + inset: -8px; + position: absolute; + opacity: 0; + } } .template-row-index {