From: Geoff Kimball Date: Fri, 15 Jan 2016 21:48:32 +0000 (-0800) Subject: Remove $tab-item-color and add $tab-item-font-size variables, closes #7675 X-Git-Tag: v6.2.0-rc.1~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=367ad63270eb39d602014f8f35d02b60debb705c;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Remove $tab-item-color and add $tab-item-font-size variables, closes #7675 --- diff --git a/scss/components/_tabs.scss b/scss/components/_tabs.scss index 3227d6053..1ab10f60d 100644 --- a/scss/components/_tabs.scss +++ b/scss/components/_tabs.scss @@ -22,9 +22,9 @@ $tab-background-active: $light-gray !default; /// @type Color $tab-border: $light-gray !default; -/// Default text color for items in a Menu. -/// @type Color -$tab-item-color: foreground($tab-background, $primary-color) !default; +/// Font size of tab items. +/// @type Number +$tab-item-font-size: rem-calc(12) !default; /// Default background color on hover for items in a Menu. $tab-item-background-hover: $white !default; @@ -79,8 +79,7 @@ $tab-content-padding: 1rem !default; display: block; padding: $tab-item-padding; line-height: 1; - font-size: 12px; - color: $tab-item-color; + font-size: $tab-item-font-size; &:hover { background: $tab-item-background-hover;