]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
add scss var for input font weight 8763/head
authorAndy Cochran <acochran@council.nyc.gov>
Tue, 10 May 2016 15:59:34 +0000 (11:59 -0400)
committerAndy Cochran <acochran@council.nyc.gov>
Tue, 10 May 2016 15:59:34 +0000 (11:59 -0400)
scss/forms/_text.scss
scss/settings/_settings.scss

index a61db361549b817c8badbaa75c1957cac18488a3..311ef67bcf803ac68aa9fbd528587b1eb87d6173 100644 (file)
@@ -22,6 +22,10 @@ $input-font-family: inherit !default;
 /// @type Number
 $input-font-size: rem-calc(16) !default;
 
+/// Font weight of text inputs.
+/// @type Keyword
+$input-font-weight: $global-weight-normal !default;
+
 /// Background color of text inputs.
 /// @type Color
 $input-background: $white !default;
@@ -79,6 +83,7 @@ $input-radius: $global-radius !default;
 
   font-family: $input-font-family;
   font-size: $input-font-size;
+  font-weight: $input-font-weight;
   color: $input-color;
   background-color: $input-background;
   box-shadow: $input-shadow;
index c28cdfe3f3058f207a2249c484dc319e14161e03..34ef8013629cb0c282e0a37d9fd157171b64d1be 100644 (file)
@@ -346,6 +346,7 @@ $input-color: $black;
 $input-placeholder-color: $medium-gray;
 $input-font-family: inherit;
 $input-font-size: rem-calc(16);
+$input-font-weight: $global-weight-normal;
 $input-background: $white;
 $input-background-focus: $white;
 $input-background-disabled: $light-gray;