From: Kevin Chu Date: Tue, 18 Apr 2017 16:47:31 +0000 (-0700) Subject: Updating blue hero style X-Git-Tag: v6.4.0-rc1~46^2~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ffaa4aa6cfcc8bd7eae875499f9521d14aa2844;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Updating blue hero style --- diff --git a/docs/assets/scss/_accordion-content.scss b/docs/assets/scss/_accordion-content.scss index 43337abb4..bc6e3d1ec 100644 --- a/docs/assets/scss/_accordion-content.scss +++ b/docs/assets/scss/_accordion-content.scss @@ -22,9 +22,15 @@ } } - .accordion-title:hover, - .accordion-title:focus { + .accordion-title:hover { color: $black; + background: lighten($light-gray,7%); + transition: color 0.3s ease; + transition: background 0.3s ease; + } + + .accordion-title:focus, + .accordion-title:active { background: none; } @@ -37,10 +43,19 @@ background: none; border: none; border-bottom: 1px dashed #e6e6e6; + transition: color 0.3s ease; + transition: background 0.3s ease; } .accordion-title::before { - color: $medium-gray; + color: $dark-gray; + font-size: 1.25rem; + transition: color 0.3s ease; + } + + .accordion-title:hover::before { + color: $black; + transition: color 0.3s ease; } }