Skip to content

Commit 92839da

Browse files
authored
Merge branch 'trunk' into fix/65068-oembed-provider-validation
2 parents 506e752 + 5044e95 commit 92839da

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/wp-admin/css/common.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3340,7 +3340,7 @@ img {
33403340
.postbox .handle-order-higher:focus,
33413341
.postbox .handle-order-lower:focus,
33423342
.postbox .handlediv:focus {
3343-
box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
3343+
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color);
33443344
border-radius: 50%;
33453345
/* Only visible in Windows High Contrast mode */
33463346
outline: 2px solid transparent;

src/wp-admin/css/install.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ body {
1616
}
1717

1818
a {
19-
color: #2271b1;
19+
color: var(--wp-admin-theme-color);
2020
}
2121

2222
a:hover,
2323
a:active {
24-
color: #135e96;
24+
color: var(--wp-admin-theme-color-darker-20);
2525
}
2626

2727
a:focus {
28-
color: #043959;
28+
color: var(--wp-admin-theme-color-darker-20);
2929
border-radius: 2px;
3030
box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9);
3131
/* Only visible in Windows High Contrast mode */

src/wp-includes/functions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3975,14 +3975,14 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
39753975
font-size: 14px ;
39763976
}
39773977
a {
3978-
color: #2271b1;
3978+
color: #3858e9;
39793979
}
39803980
a:hover,
39813981
a:active {
3982-
color: #135e96;
3982+
color: #183ad6;
39833983
}
39843984
a:focus {
3985-
color: #043959;
3985+
color: #183ad6;
39863986
box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9);
39873987
outline: 2px solid transparent;
39883988
}

tests/phpunit/tests/oembed/WpEmbed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @coversDefaultClass WP_Embed
77
*/
8-
class Tests_WP_Embed extends WP_UnitTestCase {
8+
class Tests_oEmbed_WpEmbed extends WP_UnitTestCase {
99
/**
1010
* @var WP_Embed
1111
*/

tests/phpunit/tests/oembed/wpOembed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @coversDefaultClass WP_oEmbed
77
*/
8-
class Tests_WP_oEmbed extends WP_UnitTestCase {
8+
class Tests_oEmbed_wpOembed extends WP_UnitTestCase {
99
/**
1010
* @var WP_oEmbed
1111
*/

0 commit comments

Comments
 (0)