From 273e4d812b64d88de323090d5734725bb7bc3e72 Mon Sep 17 00:00:00 2001 From: Martijn Cuppens Date: Tue, 3 Apr 2018 15:00:38 +0200 Subject: [PATCH] Print color fix dark tables and dark theads --- scss/_print.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/scss/_print.scss b/scss/_print.scss index 410216dd74c2..1df948735821 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 } }