From 1c73d3fb2fdcaea21a5f63d09147c3da6a3e5e7f Mon Sep 17 00:00:00 2001 From: Tiff Ting Date: Fri, 17 Oct 2014 22:18:01 -0500 Subject: [PATCH] Fixed bug so that anchors in callouts have a different hover color --- scss/foundation/components/_panels.scss | 6 ++++++ 1 file changed, 6 insertions(+) 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; + } } } -- 2.47.2