
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 01:31 PM
Hi I have a requirement to change the color of the highlighted choice, in the picture it is like a light purple. I need it to be a different color and I have been trying to use the Inspect tool on the browser to figure out where to change this but I am having no luck. We have used the branding editor for minor changes on the Theme Color of the portal and also a stylesheet for some of the custom CSS.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 02:21 PM
Found it! It's in the theme.
- Go to the EC Theme on the esc portal
- Under CSS Includes, open the ec-theme-global Style Sheet
- Change this block to what you need it to be. This should update all the highlights for the classes mentioned.
.select2-results .select2-highlighted {
background-color: rgba($brand-primary-lightest, .5);
color: $text-color;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 02:21 PM
Found it! It's in the theme.
- Go to the EC Theme on the esc portal
- Under CSS Includes, open the ec-theme-global Style Sheet
- Change this block to what you need it to be. This should update all the highlights for the classes mentioned.
.select2-results .select2-highlighted {
background-color: rgba($brand-primary-lightest, .5);
color: $text-color;
}