0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 05:02:57 +01:00

Fix chooser buttons focus color is too dark in dark mode

Fixes #10875
This commit is contained in:
Rohit Sharma 2023-11-29 10:55:21 +00:00 committed by LB (Ben Johnston)
parent 175b7ac044
commit 50bdb724b5
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ Changelog
* Add `WAGTAILADMIN_LOGIN_URL` setting to allow customising the login URL (Neeraj Yetheendran)
* Replace legacy dropdown component with new Tippy dropdown-button (Thibaud Colas)
* Add ability to filter by existence of child pages in the page listing view (Matt Westcott)
* Polish dark theme styles and update color tokens (Thibaud Colas)
* Polish dark theme styles and update color tokens (Thibaud Colas, Rohit Sharma)
* Keep database state of pages and snippets updated while in draft state (Stefan Hammer)
* Fix: Update system check for overwriting storage backends to recognise the `STORAGES` setting introduced in Django 4.2 (phijma-leukeleu)
* Fix: Prevent password change form from raising a validation error when browser autocomplete fills in the "Old password" field (Chiemezuo Akujobi)

View File

@ -28,7 +28,7 @@ $preview-size: 2.625rem; // 42px
&:hover,
&:focus {
color: theme('colors.surface-button-hover');
color: theme('colors.text-link-hover');
background-color: theme('colors.surface-page');
}
}

View File

@ -72,7 +72,7 @@ Thank you to Thibaud Colas, Badr Fourane, and Sage Abdullah for their work on th
* Add `WAGTAILADMIN_LOGIN_URL` setting to allow customising the login URL (Neeraj Yetheendran)
* Replace legacy dropdown component with new Tippy dropdown-button (Thibaud Colas)
* Add ability to filter by existence of child pages in the page listing view (Matt Westcott)
* Polish dark theme styles and update color tokens (Thibaud Colas)
* Polish dark theme styles and update color tokens (Thibaud Colas, Rohit Sharma)
* Keep database state of pages and snippets updated while in draft state (Stefan Hammer)