Twenty Nineteen: Adds URL in for print css.

The print styles is meant to append the URL to links. These rules weren't working correctly and this refreshed patch resolves that.

Props kjellr, laurelfulford, sabernhardt, poena, shailu25.
Fixes #45944.

Built from https://develop.svn.wordpress.org/trunk@58100


git-svn-id: http://core.svn.wordpress.org/trunk@57565 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2024-05-06 11:11:14 +00:00
parent 0b17c7e5f4
commit faae6b565b
2 changed files with 6 additions and 7 deletions

View File

@ -182,15 +182,14 @@ Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272
/* Remove image filters from featured image */
.image-filters-enabled {
*:after {
display: none !important;
}
.site-header.featured-image .site-featured-image:before {
.entry .post-thumbnail:after,
.site-header.featured-image .site-featured-image:before,
.site-header.featured-image .site-featured-image:after,
.site-header.featured-image:after {
display: none;
}
.entry .post-thumbnail .post-thumbnail-inner,
.site-header.featured-image .site-featured-image .post-thumbnail img {
filter: none;
}

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.6-alpha-58099';
$wp_version = '6.6-alpha-58100';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.