/// @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;
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;
$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;