Fixes #18916: Fix styling of dynamic dropdowns with invalid selection

This commit is contained in:
Jeremy Stretch 2025-08-25 15:58:21 -04:00
parent b334931513
commit 81579b6739
2 changed files with 6 additions and 0 deletions

Binary file not shown.

View File

@ -6,3 +6,9 @@
} }
} }
} }
// Replicate styling of tom-selected <select> fields tagged with .is-invalid to
// their corresponding TomSelect dropdowns
select.tomselected.is-invalid + div.ts-wrapper {
@extend .is-invalid;
}