From: Даниил Пронин Date: Mon, 11 Aug 2014 05:32:01 +0000 (+1100) Subject: change `background` to `background-color` in tabs to allow styling of theis other... X-Git-Tag: v5.4.1~5^2~4^2^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F5604%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git change `background` to `background-color` in tabs to allow styling of theis other background properties --- diff --git a/scss/foundation/components/_tabs.scss b/scss/foundation/components/_tabs.scss index 734818d42..818c1bd78 100755 --- a/scss/foundation/components/_tabs.scss +++ b/scss/foundation/components/_tabs.scss @@ -39,14 +39,25 @@ $tabs-vertical-navigation-margin-bottom: 1.25rem !default; float: $default-float; > a { display: block; - background: $tabs-navigation-bg-color; + background: { + color: $tabs-navigation-bg-color; + } color: $tabs-navigation-font-color; padding: $tabs-navigation-padding $tabs-navigation-padding * 2; font-family: $tabs-navigation-font-family; font-size: $tabs-navigation-font-size; - &:hover { background: $tabs-navigation-hover-bg-color; } + &:hover { + background: { + color: $tabs-navigation-hover-bg-color; + } + } } - &.active a { background: $tabs-navigation-active-bg-color; color:$tabs-navigation-active-font-color; } + &.active a { + background: { + color: $tabs-navigation-active-bg-color; + } + color:$tabs-navigation-active-font-color; + } } &.radius { dd:first-child, .tab:first-child {