1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +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

View File

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