(feature-2943) Perspective Accordion

you could technically override whatever CSS you want

there are some issues you might run into though

  1. CSS Specificity might cause your overridden CSS to not work, you could use !important to force it, but that’s not good CSS practice. You’ll notice that for my .ia_accordionComponent__body--expanded style I had to increase my CSS specificity by adding .ia_accordionComponent__body to it so that it has a higher CSS specificity than what the original style was. Further reading on specificity can be found here Specificity - CSS: Cascading Style Sheets | MDN
  2. Many of these class names, and HTML structure are subject to change. This frequently happens when a Component is fixed or enhanced, so your changes might not work in newer versions of Ignition/Perspective. You have to be prepared for them to break.
2 Likes