diff options
| author | Martijn Cuppens <[email protected]> | 2020-04-21 10:13:38 +0200 |
|---|---|---|
| committer | Martijn Cuppens <[email protected]> | 2020-04-24 10:05:10 +0200 |
| commit | 6558664f4c138718b7beb63f61183ef2aaecc473 (patch) | |
| tree | 505c03f84c0512f7a672de1f215a149888b8d03b | |
| parent | eed27f35ccaf86adf84fda78e501427c7088df4b (diff) | |
| download | bootstrap-6558664f4c138718b7beb63f61183ef2aaecc473.tar.xz bootstrap-6558664f4c138718b7beb63f61183ef2aaecc473.zip | |
Customizable table group seperator colors
| -rw-r--r-- | scss/_tables.scss | 2 | ||||
| -rw-r--r-- | scss/_variables.scss | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss index 6b161434f..6aba4def2 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -41,7 +41,7 @@ // Highlight border color between thead, tbody and tfoot. // stylelint-disable-next-line selector-max-universal > :not(:last-child) > :last-child > * { - border-bottom-color: currentColor; + border-bottom-color: $table-group-seperator-color; } } diff --git a/scss/_variables.scss b/scss/_variables.scss index 9a2348df6..e95343496 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -492,6 +492,8 @@ $table-border-color: $border-color !default; $table-striped-order: odd !default; +$table-group-seperator-color: currentColor !default; + $table-caption-color: $text-muted !default; $table-bg-level: -9 !default; |
