diff --git a/wp-includes/js/tinymce/skins/wordpress/wp-content.css b/wp-includes/js/tinymce/skins/wordpress/wp-content.css index 84ae59c39b..a09829bf38 100644 --- a/wp-includes/js/tinymce/skins/wordpress/wp-content.css +++ b/wp-includes/js/tinymce/skins/wordpress/wp-content.css @@ -171,6 +171,27 @@ img[data-mce-selected]::selection { background: transparent url( images/pagebreak.png ) repeat-y scroll center center; } +/* Styles for formatting the boundaries of anchors and code elements */ +.mce-content-body a[data-mce-selected] { + padding: 0 2px; + margin: 0 -2px; + border-radius: 2px; + box-shadow: 0 0 0 1px #bfe6ff; + background: #bfe6ff; +} + +.mce-content-body code { + padding: 2px 4px; + margin: 0; + border-radius: 2px; + color: #222; + background: #f2f4f5; +} + +.mce-content-body code[data-mce-selected] { + background: #e9ebec; +} + /* Gallery, audio, video placeholders */ .mce-content-body img.wp-media { border: 1px solid #aaa; diff --git a/wp-includes/version.php b/wp-includes/version.php index 8eca71e06d..3d66bf0e62 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-beta1-40782'; +$wp_version = '4.8-beta1-40783'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.