In the Bootstrap 5 SCSS, there's 4 instances of escape-svg() used, e.g., here
|
background-image: escape-svg($form-select-indicator), escape-svg($icon); |
I think this is double-encoding the content, resulting in broken results. That is, escape-svg() is encoding the # in the color value to %23, etc., but since it's already wrapped in url(), the double-processing produces a broken result.
In the Bootstrap 5 SCSS, there's 4 instances of
escape-svg()used, e.g., heretom-select/src/scss/tom-select.bootstrap5.scss
Line 68 in 1601afc
I think this is double-encoding the content, resulting in broken results. That is, escape-svg() is encoding the # in the color value to %23, etc., but since it's already wrapped in url(), the double-processing produces a broken result.