Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Last active September 4, 2015 16:20
Show Gist options
  • Select an option

  • Save cliffordp/4c09b8bc554c85a4cacc to your computer and use it in GitHub Desktop.

Select an option

Save cliffordp/4c09b8bc554c85a4cacc to your computer and use it in GitHub Desktop.
A fix for J.K. for PageLines DMS third-party Single Bits section's link color inherit
// Fix .section-elsue-single-bits a { color: inherit; } making links the same color as regular text
#site .section-elsue-single-bits a {
color: #1C5E91; // or the LESS Variable @pl-link if that's the same
&:hover {
color: #40BBBF; // could use another LESS variable like @linkColorHover
}
&:visited {
color: #647875; // could use LESS variable if set -- or even something like darken( @pl-link, 10% );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment