diff --git a/wp-content/themes/twentytwenty/style-rtl.css b/wp-content/themes/twentytwenty/style-rtl.css index ef552c21b8..4b40b5cc99 100644 --- a/wp-content/themes/twentytwenty/style-rtl.css +++ b/wp-content/themes/twentytwenty/style-rtl.css @@ -809,7 +809,7 @@ input:-ms-input-placeholder { } input::-moz-placeholder { - line-height: normal; + line-height: revert; /* Reset to the value from the user-agent stylesheet. */ } input[type="search"]::-webkit-search-decoration, @@ -4522,6 +4522,15 @@ a.to-the-top > * { margin-top: -1.8rem; } + /* Template -------------------------------- */ + + /* TEMPLATE: COVER */ + + .template-cover .post-inner .post-meta-wrapper, + .template-cover .post-inner .author-bio { + width: calc( 100% - 4rem ); + } + } @media ( min-width: 600px ) { diff --git a/wp-content/themes/twentytwenty/style.css b/wp-content/themes/twentytwenty/style.css index d845fc0223..f27a87c080 100644 --- a/wp-content/themes/twentytwenty/style.css +++ b/wp-content/themes/twentytwenty/style.css @@ -4556,6 +4556,15 @@ a.to-the-top > * { margin-top: -1.8rem; } + /* Template -------------------------------- */ + + /* TEMPLATE: COVER */ + + .template-cover .post-inner .post-meta-wrapper, + .template-cover .post-inner .author-bio { + width: calc( 100% - 4rem ); + } + } @media ( min-width: 600px ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 9387ef16fd..a180f7d158 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47240'; +$wp_version = '5.4-alpha-47241'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.