From: Martijn Cuppens Date: Tue, 24 Apr 2018 04:51:48 +0000 (+0200) Subject: Print color fix dark tables and dark theads (#26193) X-Git-Tag: v4.1.1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ee779b6fcac4d1e3d8cae782f3f00e09f0a921c;p=thirdparty%2Fbootstrap.git Print color fix dark tables and dark theads (#26193) --- diff --git a/scss/_print.scss b/scss/_print.scss index 410216dd74..1df9487358 100644 --- a/scss/_print.scss +++ b/scss/_print.scss @@ -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 } }