1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Fixed #35065 -- Corrected border color for autocomplete fields with errors in admin.

This commit is contained in:
Rigoberto Villalta 2023-12-28 03:20:47 -06:00 committed by GitHub
parent 61aae838f7
commit 63076e3693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,3 +273,7 @@ select.admin-autocomplete {
display: block;
padding: 6px;
}
.errors .select2-selection {
border: 1px solid var(--error-fg);
}