From 18d18dd9f6e4890153373fa2797c7554ecc9ae77 Mon Sep 17 00:00:00 2001 From: Lance Wilhelm Date: Thu, 28 Sep 2023 12:58:48 -0400 Subject: [PATCH] Fixing bootstrap dark-table top border (#1763) This addresses https://github.com/alshedivat/al-folio/issues/1425. Contributions: - Added border attribute to `.table-dark` within `_base.scss` to override bootstrap theme border settings for `.tabled-bordered`. Displays top border in dark mode for only those tables that are bordered --- _sass/_base.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_sass/_base.scss b/_sass/_base.scss index bbc216f49fa5..cba737d30095 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -50,6 +50,9 @@ table.table a { .table-dark { background-color: transparent; + &.table-bordered{ + border: 1px solid var(--global-divider-color) !important; + } } figure,