From 75ac71a50ca68060923da351f782a6aee51905c1 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 26 May 2022 13:57:37 -0700 Subject: [PATCH 1/2] Update Sass for computing .table-group-divider border --- scss/_tables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_tables.scss b/scss/_tables.scss index 601d86cc9f40..aeb7467c11b2 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -42,7 +42,7 @@ } .table-group-divider { - border-top: calc(2 * $table-border-width) solid $table-group-separator-color; // stylelint-disable-line function-disallowed-list + border-top: ($table-border-width * 2) solid $table-group-separator-color; // stylelint-disable-line function-disallowed-list } // From 6c66cd5c4a804d418a28941d0d55109bfb59da6f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 26 May 2022 14:00:12 -0700 Subject: [PATCH 2/2] Remove stylelint rule --- scss/_tables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_tables.scss b/scss/_tables.scss index aeb7467c11b2..1fdd43c6bb5b 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -42,7 +42,7 @@ } .table-group-divider { - border-top: ($table-border-width * 2) solid $table-group-separator-color; // stylelint-disable-line function-disallowed-list + border-top: ($table-border-width * 2) solid $table-group-separator-color; } //