A11y: Fix color contrast on added menu items in Customizer

Changes the color on items added to menus in the Customizer from `#8c8f94` (a contrast ratio of 3.24:1) to `#646970` (a contrast ratio of 5.53:1). 

Props joedolson, sabernhardt, wilcosky, showravhasan, emptyopssphere, ozgursar.
Fixes #64013.
Built from https://develop.svn.wordpress.org/trunk@61511


git-svn-id: http://core.svn.wordpress.org/trunk@60822 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
joedolson
2026-01-22 22:33:34 +00:00
parent 84b291c319
commit 49ea53a048
5 changed files with 5 additions and 5 deletions

View File

@@ -673,7 +673,7 @@
#available-menu-items .menu-item-handle.item-added .item-title,
#available-menu-items .menu-item-handle.item-added:hover .item-add,
#available-menu-items .menu-item-handle.item-added .item-add:focus {
color: #8c8f94;
color: #646970;
}
#available-menu-items .menu-item-handle.item-added .item-add:before {

File diff suppressed because one or more lines are too long

View File

@@ -672,7 +672,7 @@
#available-menu-items .menu-item-handle.item-added .item-title,
#available-menu-items .menu-item-handle.item-added:hover .item-add,
#available-menu-items .menu-item-handle.item-added .item-add:focus {
color: #8c8f94;
color: #646970;
}
#available-menu-items .menu-item-handle.item-added .item-add:before {

File diff suppressed because one or more lines are too long

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '7.0-alpha-61509';
$wp_version = '7.0-alpha-61511';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.