From 0ee779b6fcac4d1e3d8cae782f3f00e09f0a921c Mon Sep 17 00:00:00 2001
From: Martijn Cuppens <martijn.cuppens@gmail.com>
Date: Tue, 24 Apr 2018 06:51:48 +0200
Subject: [PATCH] Print color fix dark tables and dark theads (#26193)

---
 scss/_print.scss | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

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