From: Martin Volerich Date: Fri, 1 Mar 2013 20:06:26 +0000 (-0500) Subject: Update _top_bar.css to respect font-size overrides X-Git-Tag: v4.0.3~16^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1641%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Update _top_bar.css to respect font-size overrides The font-size of links in a top-bar section was hard set to 13px and did not respect any overrides set by the user. --- diff --git a/scss/foundation/components/_top-bar.scss b/scss/foundation/components/_top-bar.scss index a196c6707..587f9f932 100644 --- a/scss/foundation/components/_top-bar.scss +++ b/scss/foundation/components/_top-bar.scss @@ -209,7 +209,7 @@ $topbar-media-query: "only screen and (min-width:"#{$topbar-breakpoint}")" !defa width: 100%; padding: 12px 0 12px $topbar-height / 3; color: $topbar-link-color; - font-size: emCalc(13px); + font-size: $topbar-link-font-size; font-weight: bold; background: $topbar-dropdown-bg; @@ -218,7 +218,7 @@ $topbar-media-query: "only screen and (min-width:"#{$topbar-breakpoint}")" !defa &.button { background: $primary-color; - font-size: emCalc(13px); + font-size: $topbar-link-font-size; &:hover { background: darken($primary-color, 10%); } @@ -440,4 +440,4 @@ $topbar-media-query: "only screen and (min-width:"#{$topbar-breakpoint}")" !defa } -} \ No newline at end of file +}