Print color fix dark tables and dark theads (#26193)

This commit is contained in:
Martijn Cuppens 2018-04-24 06:51:48 +02:00 committed by Mark Otto
parent 9faf8e8545
commit 0ee779b6fc

View File

@ -112,6 +112,7 @@
background-color: $white !important;
}
}
.table-bordered {
th,
td {
@ -119,6 +120,22 @@
}
}
.table-dark {
color: inherit;
th,
td,
thead th,
tbody + tbody {
border-color: $table-border-color;
}
}
.table .thead-dark th {
color: inherit;
border-color: $table-border-color;
}
// Bootstrap specific changes end
}
}