From: Martijn Cuppens Date: Tue, 21 Apr 2020 08:13:38 +0000 (+0200) Subject: Customizable table group seperator colors X-Git-Tag: v5.0.0-alpha1~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6558664f4c138718b7beb63f61183ef2aaecc473;p=thirdparty%2Fbootstrap.git Customizable table group seperator colors --- diff --git a/scss/_tables.scss b/scss/_tables.scss index 6b161434fa..6aba4def2a 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 9a2348df66..e95343496a 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;