Skip to content

Commit 59c9e03

Browse files
authored
Merge branch 'trunk' into add/icons-api/class-filters
2 parents 6872a21 + 1d9abc5 commit 59c9e03

20 files changed

Lines changed: 204 additions & 85 deletions

src/wp-admin/css/common.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1575,11 +1575,11 @@ div.error.notice-alt {
15751575

15761576
.notice-info {
15771577
border-left-color: #3858e9;
1578-
background-color: transparent;
1578+
background-color: #fff;
15791579
}
15801580

15811581
.notice-info.notice-alt {
1582-
background-color: transparent;
1582+
background-color: #fff;
15831583
}
15841584

15851585
#plugin-information-footer .update-now:not(.button-disabled):before {

src/wp-admin/css/edit.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,16 @@
7676
pointer-events: none;
7777
}
7878

79+
#titlewrap .skiplink {
80+
background: #fff;
81+
line-height: 2.30769231; /* 30px for 32px min-height */
82+
min-height: 32px;
83+
right: 4px;
84+
}
85+
7986
#titlewrap .skiplink:focus {
8087
clip: inherit;
8188
clip-path: inherit;
82-
right: 4px;
8389
top: 4px;
8490
width: auto;
8591
}
@@ -1061,10 +1067,6 @@ form#tags-filter {
10611067
#edit-slug-box {
10621068
padding: 0;
10631069
}
1064-
1065-
#titlewrap .skiplink:focus {
1066-
top: 5px;
1067-
}
10681070
}
10691071

10701072
@media only screen and (max-width: 1004px) {

src/wp-admin/css/list-tables.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1452,6 +1452,14 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
14521452
content: "\f147" / '';
14531453
}
14541454

1455+
.plugin-card .updated-message:before,
1456+
.plugin-card .updating-message:before {
1457+
line-height: 1;
1458+
position: relative;
1459+
top: -2px;
1460+
vertical-align: middle;
1461+
}
1462+
14551463
.plugin-install-php #the-list {
14561464
display: flex;
14571465
flex-wrap: wrap;

src/wp-admin/css/login.css

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ p {
4949
margin-top: 0;
5050
margin-left: 0;
5151
margin-bottom: 20px;
52-
background-color: transparent;
52+
background-color: #fff;
5353
word-wrap: break-word;
5454
}
5555

@@ -66,10 +66,6 @@ p {
6666
background-color: #eff9f1;
6767
}
6868

69-
.login .notice {
70-
background-color: #fff;
71-
}
72-
7369
/* Match border color from common.css */
7470
.login .notice-error {
7571
border-left-color: #cc1818;

src/wp-admin/css/themes.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ body.js .theme-browser.search-loading {
114114
}
115115

116116
/* Use compact size for space-constrained theme cards */
117+
.theme-browser .theme .theme-actions .button.updated-message,
118+
.theme-browser .theme .theme-actions .button.updating-message,
117119
.theme-browser .theme .theme-actions .button {
118120
float: none;
119121
margin-left: 3px;
@@ -122,6 +124,14 @@ body.js .theme-browser.search-loading {
122124
padding: 0 12px;
123125
}
124126

127+
.theme-browser .theme .theme-actions .button.updated-message::before,
128+
.theme-browser .theme .theme-actions .button.updating-message::before {
129+
line-height: 1;
130+
vertical-align: text-bottom;
131+
position: relative;
132+
top: 2px;
133+
}
134+
125135
/* Secondary buttons need white background for visibility on semi-transparent overlay */
126136
.theme-browser .theme .theme-actions .button:not(.button-primary) {
127137
background: #fff;

src/wp-admin/includes/class-wp-media-list-table.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -490,10 +490,8 @@ public function column_title( $post ) {
490490

491491
if ( current_user_can( 'edit_post', $post->ID ) && ! $this->is_trash ) {
492492
$link_start = sprintf(
493-
'<a href="%s" aria-label="%s">',
493+
'<a href="%s">',
494494
get_edit_post_link( $post->ID ),
495-
/* translators: %s: Attachment title. */
496-
esc_attr( sprintf( __( '&#8220;%s&#8221; (Edit)' ), $title ) )
497495
);
498496
$link_end = '</a>';
499497
}

src/wp-admin/includes/class-wp-posts-list-table.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,10 +1138,8 @@ public function column_title( $post ) {
11381138

11391139
if ( $can_edit_post && 'trash' !== $post->post_status ) {
11401140
printf(
1141-
'<a class="row-title" href="%s" aria-label="%s">%s%s</a>',
1141+
'<a class="row-title" href="%s">%s%s</a>',
11421142
get_edit_post_link( $post->ID ),
1143-
/* translators: %s: Post title. */
1144-
esc_attr( sprintf( __( '&#8220;%s&#8221; (Edit)' ), $title ) ),
11451143
$pad,
11461144
$title
11471145
);

src/wp-admin/includes/class-wp-terms-list-table.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -413,10 +413,8 @@ public function column_name( $tag ) {
413413
$edit_link
414414
);
415415
$name = sprintf(
416-
'<a class="row-title" href="%s" aria-label="%s">%s</a>',
416+
'<a class="row-title" href="%s">%s</a>',
417417
esc_url( $edit_link ),
418-
/* translators: %s: Taxonomy term name. */
419-
esc_attr( sprintf( __( '&#8220;%s&#8221; (Edit)' ), $tag->name ) ),
420418
$name
421419
);
422420
}

src/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ hr.wp-block-separator.is-style-dots::before {
885885
font-size: 16px;
886886
font-weight: 500;
887887
margin-top: 12px;
888-
text-transform: none;
888+
text-transform: inherit;
889889
}
890890

891891
.editor-styles-wrapper .wp-block-pullquote.has-text-color cite,

src/wp-content/themes/twentytwenty/assets/css/editor-style-block.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ hr.wp-block-separator.is-style-dots::before {
889889
font-size: 16px;
890890
font-weight: 500;
891891
margin-top: 12px;
892-
text-transform: none;
892+
text-transform: inherit;
893893
}
894894

895895
.editor-styles-wrapper .wp-block-pullquote.has-text-color cite,

0 commit comments

Comments
 (0)