Last active
September 4, 2015 16:20
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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