Skip to content

Commit

Permalink
Print color fix dark tables and dark theads (#26193)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnCuppens authored and mdo committed Apr 24, 2018
1 parent 9faf8e8 commit 0ee779b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scss/_print.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,30 @@
background-color: $white !important;
}
}

.table-bordered {
th,
td {
border: 1px solid $gray-300 !important;
}
}

.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
}
}

0 comments on commit 0ee779b

Please sign in to comment.