Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created June 19, 2021 16:55
Show Gist options
  • Save tdmrhn/820bed3d026f17f935eeb9d570f36981 to your computer and use it in GitHub Desktop.
Save tdmrhn/820bed3d026f17f935eeb9d570f36981 to your computer and use it in GitHub Desktop.
Lightweight Accordion Hover and Open State title color change
.lightweight-accordion details summary:hover {
background:var(--paletteColor3) !important;
color:var(--paletteColor8) !important;
}
.lightweight-accordion details[open] summary {
background:var(--paletteColor1) !important;
color:var(--paletteColor8) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment