WAIT: Slider (Nestable) Arrow Hover Color Not Applied Correctly

When styling slider arrows, the hover color for the icon doesn’t apply.

Generated CSS

#brxe-xxxxxx .splide__arrow {
  background-color: white;
  color: black;
}

#brxe-xxxxxx .splide__arrow svg {
  fill: black;
}

#brxe-xxxxxx .splide__arrow:hover {
  background-color: white;
  color: red;
}

Problem
The SVG has a fixed fill: black, so it overrides the color on hover.

Expected
Icon color should change on hover.

Fix suggestion
Either:

.splide__arrow svg {
  fill: currentColor;
}

or:

#brxe-xxxxxx .splide__arrow:hover svg {
  fill: red;
}

Works fine at this end. Do you have any additional plugins or custom CSS that might be conflicting?

Video: Watch Styles-–-Made-by-Shingen | Streamable

Hi Rico,
Thanks so much for your report!

Unfortunately, I cannot reproduce the issue with the default or custom arrows.

Could you please share the SVG file and a link to the website where the problem can be seen?
That would be a big help!

Best regards,
timmse