Twenty Seventeen: Remove bottom border (box-shadow) from linked images.

Props mikachan, sabernhardt, nidhidhandhukiya, mukesh27, scruffian.
Fixes #55141.
Built from https://develop.svn.wordpress.org/trunk@52740


git-svn-id: http://core.svn.wordpress.org/trunk@52329 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-02-16 13:46:00 +00:00
parent 8f5f8b19c5
commit a04ccd9c90
2 changed files with 11 additions and 1 deletions

View File

@ -60,6 +60,16 @@ p.has-drop-cap:not(:focus)::first-letter {
margin-left: 1.5em;
}
.wp-block-image a,
.wp-block-image a:hover,
.wp-block-image a:focus,
.widget-area .wp-block-image a,
.widget-area .wp-block-image a:hover,
.widget-area .wp-block-image a:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
/* Gallery */
.wp-block-gallery {

View File

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