From 6766375f84af2debaaa0d842b990568ee78b629f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 21 Aug 2020 15:42:05 +0000 Subject: [PATCH] Twenty Nineteen: Remove trailing commas after selectors in `style-editor.scss`. Remove one empty CSS block. Props justinahinon. Fixes #51095. Built from https://develop.svn.wordpress.org/trunk@48837 git-svn-id: http://core.svn.wordpress.org/trunk@48599 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentynineteen/style-editor.scss | 10 +++------- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/wp-content/themes/twentynineteen/style-editor.scss b/wp-content/themes/twentynineteen/style-editor.scss index ae465850ff..97876fe319 100644 --- a/wp-content/themes/twentynineteen/style-editor.scss +++ b/wp-content/themes/twentynineteen/style-editor.scss @@ -18,19 +18,19 @@ body { } .wp-block[data-align="left"], - .wp-block.alignleft, { + .wp-block.alignleft { margin-right: $size__spacing-unit; width: inherit; } .wp-block[data-align="right"], - .wp-block.alignright, { + .wp-block.alignright { margin-left: $size__spacing-unit; width: inherit; } .wp-block[data-align="center"], - .wp-block.aligncenter, { + .wp-block.aligncenter { margin-left: 0; } @@ -142,10 +142,6 @@ a { @include link-transition; color: $color__link; - *:visited { - - } - &:hover, &:active { color: $color__link-hover; diff --git a/wp-includes/version.php b/wp-includes/version.php index 1b30830fed..fb4dade518 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-48836'; +$wp_version = '5.6-alpha-48837'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.