mirror of
https://github.com/h5bp/html5-boilerplate.git
synced 2026-01-10 15:18:27 -05:00
Change print color for ::first-letter and ::first-line pseudo-elements
Pseudo-elements `::first-letter` and `::first-line` now get printed black by default as `::before` and `::after` are. All pseudo-elements: https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements Closes #1715.
This commit is contained in:
committed by
Hans Christian Reinl
parent
85d79ed6cc
commit
fc05bc82ab
@@ -1,3 +1,8 @@
|
||||
### HEAD
|
||||
|
||||
* Change print color for ::first-letter and ::first-line pseudo-elements
|
||||
([#1715](https://github.com/h5bp/html5-boilerplate/pull/1715)).
|
||||
|
||||
### 5.2.0 (May 1, 2015)
|
||||
|
||||
* Update jQuery to `v1.11.3`
|
||||
|
||||
4
dist/css/main.css
vendored
4
dist/css/main.css
vendored
@@ -211,7 +211,9 @@ textarea {
|
||||
@media print {
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
*:after,
|
||||
*:first-letter,
|
||||
*:first-line {
|
||||
background: transparent !important;
|
||||
color: #000 !important; /* Black prints faster:
|
||||
http://www.sanbeiji.com/archives/953 */
|
||||
|
||||
@@ -203,7 +203,9 @@ textarea {
|
||||
@media print {
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
*:after,
|
||||
*:first-letter,
|
||||
*:first-line {
|
||||
background: transparent !important;
|
||||
color: #000 !important; /* Black prints faster:
|
||||
http://www.sanbeiji.com/archives/953 */
|
||||
|
||||
Reference in New Issue
Block a user