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
This commit is contained in:
parent
be4be01fcc
commit
b663e9e1c9
|
|
@ -50,6 +50,9 @@ table.table a {
|
||||||
|
|
||||||
.table-dark {
|
.table-dark {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
&.table-bordered{
|
||||||
|
border: 1px solid var(--global-divider-color) !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
figure,
|
figure,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue