Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2018-04-24 07:51:48 +0300
committerMark Otto <markd.otto@gmail.com>2018-04-24 07:51:48 +0300
commit0ee779b6fcac4d1e3d8cae782f3f00e09f0a921c (patch)
tree2528a032b9004cc46cb4728bab807f47846b938e /scss
parent9faf8e85451ebc5981e85bd22d305f5275a4fd24 (diff)
Print color fix dark tables and dark theads (#26193)
Diffstat (limited to 'scss')
-rw-r--r--scss/_print.scss17
1 files changed, 17 insertions, 0 deletions
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
}
}