Hello!
I am trying to change the colors of the accordion header. At first, they are white, but when you hover the links are red and when I open it, I got the icon to be red but I don´t get to change the text-color.
I’ve tried adding the following custom css:
.x-accordion-heading .x-accordion-toggle.collapsed::before {
color: white;
}
.x-accordion-heading .x-accordion-toggle:hover:before {
color: #f50c2a;
}
.x-accordion-heading .x-accordion-toggle:before {
color: #f50c2a;
}
.x-accordion-heading .x-accordion-toggle.collapsed:hover {
color: #f50c2a;
}