Looking to create a selector where users can pick a color. I tried changing the background color for each option, but when hovering over them, the background turns blue - which is not what I want. Check out the pictures for clarification: https://i.sstatic.net/CSOOU.png
https://i.sstatic.net/ESK02.png
After doing some research, it seems that overriding this behavior with CSS is not possible. The code I found did not work for me:
select.decorated option:hover {
box-shadow: 0 0 10px 100px #1882A8 inset;
}
-Any ideas on how to solve this issue? I am using angular 5 with bootstrap.