From 76123aca68bced59eee213c28a4cdd6c24c5ee28 Mon Sep 17 00:00:00 2001 From: tylermachado Date: Tue, 14 May 2024 15:30:04 -0400 Subject: [PATCH] darken hover/active state for PostPicker post list, to align with Gutenberg hover state --- .../src/components/post-picker/post-list.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/block-editor-tools/src/components/post-picker/post-list.scss b/packages/block-editor-tools/src/components/post-picker/post-list.scss index 697a4fad..e82ddae4 100644 --- a/packages/block-editor-tools/src/components/post-picker/post-list.scss +++ b/packages/block-editor-tools/src/components/post-picker/post-list.scss @@ -23,11 +23,11 @@ } &:hover { - background-color: #f5f5f5; + background-color: #f0f0f0; } &.is-selected { - background-color: #f5f5f5; + background-color: #f0f0f0; } }