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

github.com/JugglerX/hugo-whisper-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/bootstrap/_print.scss')
-rwxr-xr-xassets/scss/bootstrap/_print.scss29
1 files changed, 23 insertions, 6 deletions
diff --git a/assets/scss/bootstrap/_print.scss b/assets/scss/bootstrap/_print.scss
index 5e2ce3a..61b60b9 100755
--- a/assets/scss/bootstrap/_print.scss
+++ b/assets/scss/bootstrap/_print.scss
@@ -5,7 +5,7 @@
// ==========================================================================
// Print styles.
// Inlined to avoid the additional HTTP request:
-// http://www.phpied.com/delay-loading-your-print-css/
+// https://www.phpied.com/delay-loading-your-print-css/
// ==========================================================================
@if $enable-print-styles {
@@ -14,7 +14,7 @@
*::before,
*::after {
// Bootstrap specific; comment out `color` and `background`
- //color: #000 !important; // Black prints faster: http://www.sanbeiji.com/archives/953
+ //color: $black !important; // Black prints faster
text-shadow: none !important;
//background: transparent !important;
box-shadow: none !important;
@@ -51,7 +51,7 @@
}
pre,
blockquote {
- border: $border-width solid #999; // Bootstrap custom code; using `$border-width` instead of 1px
+ border: $border-width solid $gray-500; // Bootstrap custom code; using `$border-width` instead of 1px
page-break-inside: avoid;
}
@@ -101,7 +101,7 @@
display: none;
}
.badge {
- border: $border-width solid #000;
+ border: $border-width solid $black;
}
.table {
@@ -109,16 +109,33 @@
td,
th {
- background-color: #fff !important;
+ background-color: $white !important;
}
}
+
.table-bordered {
th,
td {
- border: 1px solid #ddd !important;
+ 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
}
}