From 725ad814bcbe40d5a3488c1fd49fd95dd773c6ac Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 8 Sep 2022 16:19:06 +0530 Subject: [PATCH] fix: hide grid row index if table is used in column break (#18056) (#18064) (cherry picked from commit d7875638498f17e7555d0dee48c0ad87f93941b7) Co-authored-by: Shariq Ansari <30859809+shariquerik@users.noreply.github.com> --- frappe/public/scss/common/grid.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/scss/common/grid.scss b/frappe/public/scss/common/grid.scss index 07ab6d75a9..965652ffee 100644 --- a/frappe/public/scss/common/grid.scss +++ b/frappe/public/scss/common/grid.scss @@ -45,7 +45,7 @@ // hide row index in 6 column child tables .form-column.col-sm-6 .form-grid { - .row-index > span { + .row-index { display: none; } @@ -56,7 +56,7 @@ } } -.modal .form-grid .row-index > span { +.modal .form-grid .row-index { display: none; }