Set table text colors explicitly.

This commit is contained in:
Christopher C. Wells 2019-02-24 08:18:12 -08:00
parent 2f57e9396f
commit 3824ea7ca0
8 changed files with 9 additions and 7 deletions

View File

@ -69,7 +69,9 @@ $mark-bg: #fcf8e3 !default;
// Customizes the `.table` component with basic values, each used across all table variations.
$table-border-color: $gray-800;
$table-color: $body-color;
$table-head-bg: theme-color('primary');
$table-hover-color: $body-color;
$table-inverse-bg: theme-color('primary');
$table-accent-bg: rgba(theme-color('primary'), .1);

View File

@ -1056,7 +1056,7 @@ pre {
.table {
width: 100%;
margin-bottom: 1rem;
color: #212529; }
color: #ced4da; }
.table th,
.table td {
padding: 0.75rem;
@ -1091,7 +1091,7 @@ pre {
background-color: rgba(34, 111, 151, 0.1); }
.table-hover tbody tr:hover {
color: #212529;
color: #ced4da;
background-color: rgba(0, 0, 0, 0.075); }
.table-primary,

Binary file not shown.

View File

@ -1056,7 +1056,7 @@ pre {
.table {
width: 100%;
margin-bottom: 1rem;
color: #212529; }
color: #ced4da; }
.table th,
.table td {
padding: 0.75rem;
@ -1091,7 +1091,7 @@ pre {
background-color: rgba(34, 111, 151, 0.1); }
.table-hover tbody tr:hover {
color: #212529;
color: #ced4da;
background-color: rgba(0, 0, 0, 0.075); }
.table-primary,

Binary file not shown.

View File

@ -1056,7 +1056,7 @@ pre {
.table {
width: 100%;
margin-bottom: 1rem;
color: #212529; }
color: #ced4da; }
.table th,
.table td {
padding: 0.75rem;
@ -1091,7 +1091,7 @@ pre {
background-color: rgba(34, 111, 151, 0.1); }
.table-hover tbody tr:hover {
color: #212529;
color: #ced4da;
background-color: rgba(0, 0, 0, 0.075); }
.table-primary,

File diff suppressed because one or more lines are too long