Improve contrast of disabled inputs

Fixes #5649
pull/5673/head
Nick Smith 2019-10-24 11:05:10 +01:00 zatwierdzone przez LB
rodzic 6ce9f3a717
commit 1c1341e477
3 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -7,6 +7,7 @@ Changelog
* Removed leftover Python 2.x compatibility code (Sergey Fedoseev)
* Combine flake8 configurations (Sergey Fedoseev)
* Improved diffing behavior for text fields (Aliosha Padovani)
* Improve contrast of disabled inputs (Nick Smith)
* Fix: Rename documents listing column 'uploaded' to 'created' (LB (Ben Johnston))
* Fix: Submenu items longer then the page height are no longer broken by the submenu footer (Igor van Spengen)
* Fix: Unbundle the l18n library as it was bundled to avoid installation errors which have been resolved (Matt Westcott)

Wyświetl plik

@ -94,9 +94,9 @@ select,
&[disabled],
&:disabled:hover,
&[disabled]:hover {
background-color: inherit;
cursor: default;
color: $color-grey-4;
background-color: $color-grey-4;
cursor: not-allowed;
color: $color-grey-2;
}
}

Wyświetl plik

@ -17,6 +17,7 @@ Other features
* Removed leftover Python 2.x compatibility code (Sergey Fedoseev)
* Combine flake8 configurations (Sergey Fedoseev)
* Improved diffing behavior for text fields (Aliosha Padovani)
* Improve contrast of disabled inputs (Nick Smith)
Bug fixes