Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaël Poupard <gael+github@ffoodd.fr>2021-10-14 18:12:39 +0300
committerGaël Poupard <gael+github@ffoodd.fr>2021-10-14 18:19:50 +0300
commit45a4c0c75d959f5022ce76d2c9cc3d153bc22a7d (patch)
treea13eac4dc5aa64c83a33a949809ec09a0f9e8b58
parentb991a6b8510216ba25cff02e0cc6c338f9f76113 (diff)
fix(tables): less naive table children separator
-rw-r--r--scss/_tables.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index 30e898b580..d0e6727c53 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -41,7 +41,7 @@
}
// Highlight border color between thead, tbody and tfoot.
- > :not(:first-child) {
+ > :not(caption):not(colgroup) + * {
border-top: (2 * $table-border-width) solid $table-group-separator-color;
}
}