aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2016-01-21 09:35:28 +0200
committerXhmikosR <[email protected]>2016-01-26 21:37:44 +0200
commite672d6064635334fa6ee48836a59bd507ff48d11 (patch)
tree2f7bb0e2038a8aa8e964e2ca89c8ee58f84f2c6a
parentf0ebb4c1503729eae775d674345a3c19454c86b1 (diff)
downloadbootstrap-e672d6064635334fa6ee48836a59bd507ff48d11.tar.xz
bootstrap-e672d6064635334fa6ee48836a59bd507ff48d11.zip
Update print styles to v5.3.0 of html5 boilerplate.
-rw-r--r--scss/_print.scss36
1 files changed, 32 insertions, 4 deletions
diff --git a/scss/_print.scss b/scss/_print.scss
index c6b8f35ab..782088811 100644
--- a/scss/_print.scss
+++ b/scss/_print.scss
@@ -2,14 +2,21 @@
// ==========================================================================
// Print styles.
-// Inlined to avoid the additional HTTP request: h5bp.com/r
+// Inlined to avoid the additional HTTP request:
+// http://www.phpied.com/delay-loading-your-print-css/
// ==========================================================================
@media print {
*,
*::before,
- *::after {
+ *::after,
+ *::first-letter,
+ *::first-line {
+ // Bootstrap specific; comment out `color` and `background`
+ //color: #000 !important; // Black prints faster:
+ // http://www.sanbeiji.com/archives/953
text-shadow: none !important;
+ //background: transparent !important;
box-shadow: none !important;
}
@@ -18,18 +25,39 @@
text-decoration: underline;
}
+ // Bootstrap specific; comment the following selector out
+ //a[href]::after {
+ // content: " (" attr(href) ")";
+ //}
+
abbr[title]::after {
content: " (" attr(title) ")";
}
+ // Bootstrap specific; comment the following selector out
+ //
+ // Don't show links that are fragment identifiers,
+ // or use the `javascript:` pseudo protocol
+ //
+
+ //a[href^="#"]::after,
+ //a[href^="javascript:"]::after {
+ // content: "";
+ //}
+
pre,
blockquote {
- border: $border-width solid #999;
+ border: $border-width solid #999; // Bootstrap custom code; using `$border-width` instead of 1px
page-break-inside: avoid;
}
+ //
+ // Printing Tables:
+ // http://css-discuss.incutio.com/wiki/Printing_Tables
+ //
+
thead {
- display: table-header-group; // h5bp.com/t
+ display: table-header-group;
}
tr,