From: Tiff Ting Date: Sat, 18 Oct 2014 03:18:01 +0000 (-0500) Subject: Fixed bug so that anchors in callouts have a different hover color X-Git-Tag: v5.5.0~75^2~10^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F5948%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fixed bug so that anchors in callouts have a different hover color --- diff --git a/scss/foundation/components/_panels.scss b/scss/foundation/components/_panels.scss index 3ce476f9a..b3018e32e 100644 --- a/scss/foundation/components/_panels.scss +++ b/scss/foundation/components/_panels.scss @@ -28,6 +28,7 @@ $panel-font-color-alt: $white !default; $panel-header-adjust: true !default; $callout-panel-link-color: $primary-color !default; +$callout-panel-link-color-hover: scale-color($callout-panel-link-color, $lightness: -14%) !default; // // @mixins // @@ -82,6 +83,11 @@ $callout-panel-link-color: $primary-color !default; @include panel(scale-color($primary-color, $lightness: 94%)); a:not(.button) { color: $callout-panel-link-color; + + &:hover, + &:focus { + color: $callout-panel-link-color-hover; + } } }