Skip to content

Commit

Permalink
fix: avoid unwanted/doubled table borders
Browse files Browse the repository at this point in the history
re #26673
  • Loading branch information
Simon Sendler committed Jan 24, 2025
1 parent 1388b67 commit 6e2fe48
Showing 1 changed file with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -59,7 +54,6 @@

// Border color: all borders, one color
.gw-table {
tbody,
td,
tfoot,
th,
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -450,4 +444,4 @@ th {
// body style to display cursor as resize regardless of position
.table-resizing {
cursor: ew-resize;
}
}

0 comments on commit 6e2fe48

Please sign in to comment.