Update focus outline color (#9839)

pull/9865/head
Thibaud Colas 2023-01-10 00:23:56 +00:00 zatwierdzone przez GitHub
rodzic 959a802c76
commit 4230630ceb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
5 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -21,6 +21,7 @@ Changelog
* Base project template now populates the meta description tag from the search description field (Aman Pandey)
* Added support for `azure-mgmt-cdn` version >= 10 and `azure-mgmt-frontdoor` version >= 1 in the frontend cache invalidator (Sylvain Fankhauser)
* Add a system check to warn when a `django-storages` backend is configured to allow overwriting (Rishabh jain)
* Update admin focus outline color to have higher contrast against white backgrounds (Thibaud Colas)
* Fix: Make sure workflow timeline icons are visible in high-contrast mode (Loveth Omokaro)
* Fix: Ensure authentication forms (login, password reset) have a visible border in Windows high-contrast mode (Loveth Omokaro)
* Fix: Ensure visual consistency between buttons and links as buttons in Windows high-contrast mode (Albina Starykova)

Wyświetl plik

@ -16,6 +16,7 @@
display: inline-block;
background-color: $color-button;
border: 1px solid $color-button;
outline-offset: $focus-outline-width;
color: $color-white;
text-decoration: none;
white-space: nowrap;

Wyświetl plik

@ -257,6 +257,7 @@
li .button {
background-color: $color-white;
color: $color-button;
outline-offset: $focus-outline-width;
border: 0;
&:hover {

Wyświetl plik

@ -73,7 +73,7 @@ $color-link-hover: $color-teal-dark;
// The focus outline color is defined without reusing a named color variable
// because it shouldnt be reused for anything else in the UI.
$color-focus-outline: #ffbf47;
$color-focus-outline: #009072;
// System Colors
$media-forced-colours: active;

Wyświetl plik

@ -43,6 +43,7 @@ This feature was developed by Jake Howard.
* Base project template now populates the meta description tag from the search description field (Aman Pandey)
* Added support for `azure-mgmt-cdn` version >= 10 and `azure-mgmt-frontdoor` version >= 1 in the frontend cache invalidator (Sylvain Fankhauser)
* Add a system check to warn when a `django-storages` backend is configured to allow overwriting (Rishabh jain)
* Update admin focus outline color to have higher contrast against white backgrounds (Thibaud Colas)
### Bug fixes