mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-10 21:00:59 +01:00
Twenty Fourteen: Resolves post content links not being underlined.
In the page list block the text decoration was not the same on the front as the editor. This adds underline to links when in the post editor classic or block. This does not resolve the font size issue that needs to be fixed in block editor reset styles. Props viralsampat, sabernhardt. Fixes #61441. Built from https://develop.svn.wordpress.org/trunk@58463 git-svn-id: http://core.svn.wordpress.org/trunk@57912 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5bde3fbd1f
commit
f46632a0f1
@ -294,6 +294,10 @@ a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
:where(.mce-content-body[class*="post-type-"], .wp-block-post-content) a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 5.0 Alignment
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.6-beta3-58462';
|
||||
$wp_version = '6.6-beta3-58463';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user