]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Add `$form-text-font-weight` (#30617)
authorCatalin Zalog <c@zalog.ro>
Mon, 20 Apr 2020 06:19:06 +0000 (09:19 +0300)
committerGitHub <noreply@github.com>
Mon, 20 Apr 2020 06:19:06 +0000 (08:19 +0200)
scss/_variables.scss
scss/forms/_form-text.scss

index a6e47b2857ccbd16edaa556a2c60a47aec7fc631..fb71319866a21a566a19ff00e8cca627e95b5f40 100644 (file)
@@ -572,6 +572,7 @@ $btn-transition:              color .15s ease-in-out, background-color .15s ease
 $form-text-margin-top:                  .25rem !default;
 $form-text-font-size:                   $small-font-size !default;
 $form-text-font-style:                  null !default;
+$form-text-font-weight:                 null !default;
 $form-text-color:                       $text-muted !default;
 
 $form-label-margin-bottom:              .5rem !default;
index e25bbeb1d83bff5413c482082c14f863d2e429e1..f080d1a23437b8d2bfc4a0109dd998661fcff87f 100644 (file)
@@ -6,5 +6,6 @@
   margin-top: $form-text-margin-top;
   @include font-size($form-text-font-size);
   font-style: $form-text-font-style;
+  font-weight: $form-text-font-weight;
   color: $form-text-color;
 }