From d99c6d527bf9aa48e85209407407f6dfac919cf3 Mon Sep 17 00:00:00 2001 From: rledley Date: Wed, 19 Feb 2014 16:25:49 -0500 Subject: [PATCH] Stop fixed-width-text from clobbering font-weight --- framework/blueprint/stylesheets/blueprint/_typography.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/blueprint/stylesheets/blueprint/_typography.scss b/framework/blueprint/stylesheets/blueprint/_typography.scss index b2bc7be..ab2e889 100644 --- a/framework/blueprint/stylesheets/blueprint/_typography.scss +++ b/framework/blueprint/stylesheets/blueprint/_typography.scss @@ -36,7 +36,7 @@ $blueprint-font-size: 12px !default; } @mixin normal-text { font-family: $blueprint-font-family; color: $font-color; } -@mixin fixed-width-text { font: 1em $blueprint-fixed-font-family; line-height: 1.5; } +@mixin fixed-width-text { font: 1em $blueprint-fixed-font-family; line-height: 1.5; font-weight: inherit;} @mixin header-text { font-weight: normal; color: $header-color; } @mixin quiet { color: $quiet-color; } @mixin loud { color: $loud-color; }