Commit f17a0e2aee for wordpress.org

commit f17a0e2aee1bfcdbfa9658b84d19b8ab0fb31774
Author: joedolson <joedolson@git.wordpress.org>
Date:   Sun Oct 13 21:22:15 2024 +0000

    Bundled Theme: Twenty Eleven: Fix positioning to make links clickable in mobile.

    Fix a combination of floated and absolutely positioned content that caused previous and next links to be stacked under other content, making them unclickable on mobile devices. Adjust the position of the post date so that focus order matches visible order. Prevent overlap of 'Edit' button on post title.

    Props kel-dc, parthvataliya, dhruvang21, sabernhardt, wpeople, itpathsolutions, balub, dilip2615, tirth03.
    Fixes #62008.
    Built from https://develop.svn.wordpress.org/trunk@59226


    git-svn-id: http://core.svn.wordpress.org/trunk@58618 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-content/themes/twentyeleven/rtl.css b/wp-content/themes/twentyeleven/rtl.css
index feedd94cdb..7779f715d4 100644
--- a/wp-content/themes/twentyeleven/rtl.css
+++ b/wp-content/themes/twentyeleven/rtl.css
@@ -229,10 +229,6 @@ a.assistive-text:focus {
 .singular .entry-header .entry-meta {
 	padding-left: 0;
 }
-.singular .entry-header .entry-meta {
-	left: auto;
-	right: 0;
-}
 .singular .entry-meta .edit-link a {
 	left: auto;
 	right: 50px;
@@ -356,10 +352,6 @@ section.recent-posts .other-recent-posts .comments-link > span {
 }

 /* Singular navigation */
-#nav-single {
-	float: left;
-	text-align: left;
-}
 #nav-single .nav-next {
 	padding-left: 0;
 	padding-right: .5em;
@@ -517,6 +509,9 @@ section.recent-posts .other-recent-posts .comments-link > span {
 		left: auto;
 		right: 0;
 	}
+	.singular #author-info {
+		margin: 2.2em -8.8% 0;
+	}
 	/* Make sure we have room for our comment avatars */
 	.commentlist > li.comment,
 	.commentlist .pingback {
diff --git a/wp-content/themes/twentyeleven/style.css b/wp-content/themes/twentyeleven/style.css
index dca83cfe9a..aa20b44017 100644
--- a/wp-content/themes/twentyeleven/style.css
+++ b/wp-content/themes/twentyeleven/style.css
@@ -1129,7 +1129,7 @@ article.format-status .entry-content {
 /* Singular content styles for Posts and Pages */
 .singular .hentry {
 	border-bottom: none;
-	padding: 4.875em 0 0;
+	padding: 1.875em 0 0;
 	position: relative;
 }
 .singular.page .hentry {
@@ -1145,11 +1145,6 @@ article.format-status .entry-content {
 .singular .entry-header .entry-meta {
 	padding-right: 0;
 }
-.singular .entry-header .entry-meta {
-	position: absolute;
-	top: 0;
-	left: 0;
-}
 blockquote.pull {
 	font-size: 21px;
 	font-weight: bold;
@@ -1187,7 +1182,7 @@ blockquote.pull.alignright {
 	left: 50px;
 	position: absolute;
 	right: auto;
-	top: 80px;
+	top: 40px;
 }


@@ -1795,10 +1790,7 @@ video {

 /* Singular navigation */
 #nav-single {
-	float: right;
 	position: relative;
-	top: -0.3em;
-	text-align: right;
 	z-index: 1;
 }
 #nav-single .nav-previous,
@@ -2487,7 +2479,7 @@ p.comment-form-comment {
 	.singular .entry-meta .edit-link a {
 		left: 0;
 		position: absolute;
-		top: 40px;
+		top: 20px;
 	}
 	.singular #author-info {
 		margin: 2.2em -8.8% 0;
@@ -2577,14 +2569,6 @@ p.comment-form-comment {
 		margin-left: 0;
 		margin-right: 0;
 	}
-	/* Make sure the post-post navigation doesn't collide with anything */
-	#nav-single {
-		display: block;
-		position: static;
-	}
-	.singular .hentry {
-		padding: 1.625em 0 0;
-	}
 	.singular.page .hentry {
 		padding: 1.625em 0 0;
 	}
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 69811380a3..f101534e0a 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '6.7-beta2-59225';
+$wp_version = '6.7-beta2-59226';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.