From 6e2fe48aa0635f06352d20085d72b496d6cacead Mon Sep 17 00:00:00 2001 From: Simon Sendler Date: Fri, 24 Jan 2025 09:24:20 +0100 Subject: [PATCH] fix: avoid unwanted/doubled table borders re #26673 --- .../css/src/components/_tables-custom.scss | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/main/webapp/uii/templatePG/css/src/components/_tables-custom.scss b/src/main/webapp/uii/templatePG/css/src/components/_tables-custom.scss index fc651dcc0..6232ad565 100644 --- a/src/main/webapp/uii/templatePG/css/src/components/_tables-custom.scss +++ b/src/main/webapp/uii/templatePG/css/src/components/_tables-custom.scss @@ -40,11 +40,6 @@ max-width: 100%; } -.box--padded .table, -.section-body-padded .table { - border-inline: 1px solid var(--clr-neutral-300); -} - .table > :not(caption) > * > * { padding: 0.375rem; } @@ -59,7 +54,6 @@ // Border color: all borders, one color .gw-table { - tbody, td, tfoot, th, @@ -216,12 +210,12 @@ } .gw-table__filters__search-bar .input-group-text:has(.fa-search) { - padding: 0; - width: 0; + display: none; } @media screen and (min-width: 660px) { .gw-table__filters__search-bar .input-group-text:has(.fa-search) { + display: block; padding: 0.375rem 0.75rem; width: auto; } @@ -450,4 +444,4 @@ th { // body style to display cursor as resize regardless of position .table-resizing { cursor: ew-resize; -} \ No newline at end of file +}