Skip to content

Commit a839232

Browse files
committed
update to 64cdb791dfa2f04bd50062b76fcf25345c073a36
1 parent 26ad228 commit a839232

5 files changed

Lines changed: 16 additions & 13 deletions

File tree

assets/stylesheets/bootstrap/_forms.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
// For use with horizontal and inline forms, when you need the label text to
7777
// align with the form controls.
7878
.form-control-label {
79-
padding: ($input-padding-y + $border-width) $input-padding-x;
79+
padding: $input-padding-y $input-padding-x;
8080
margin-bottom: 0; // Override the `<label>` default
8181
}
8282

@@ -120,8 +120,8 @@
120120
.form-control-static {
121121
min-height: $input-height;
122122
// Size it appropriately next to real form controls
123-
padding-top: ($input-padding-y + $border-width);
124-
padding-bottom: ($input-padding-y + $border-width);
123+
padding-top: $input-padding-y;
124+
padding-bottom: $input-padding-y;
125125
// Remove default margin from `p`
126126
margin-bottom: 0;
127127

assets/stylesheets/bootstrap/_variables.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ $enable-grid-classes: true !default;
6060
$spacer: 1rem !default;
6161
$spacer-x: $spacer !default;
6262
$spacer-y: $spacer !default;
63-
$border-width: .0625rem !default;
63+
$border-width: 1px !default;
6464

6565

6666
// Body
@@ -283,9 +283,9 @@ $input-padding-y-sm: .275rem !default;
283283
$input-padding-x-lg: 1.25rem !default;
284284
$input-padding-y-lg: .75rem !default;
285285

286-
$input-height: (($font-size-base * $line-height) + ($input-padding-y * 2) + ($border-width * 2)) !default;
287-
$input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2) + ($border-width * 2)) !default;
288-
$input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2) + ($border-width * 2)) !default;
286+
$input-height: (($font-size-base * $line-height) + ($input-padding-y * 2)) !default;
287+
$input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2)) !default;
288+
$input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2)) !default;
289289

290290
$form-group-margin-bottom: $spacer-y !default;
291291

assets/stylesheets/bootstrap/mixins/_grid.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
margin-left: auto;
88
padding-left: ($gutter / 2);
99
padding-right: ($gutter / 2);
10-
@include clearfix();
10+
@if $enable-flex {
11+
} @else {
12+
@include clearfix();
13+
}
1114
}
1215

1316

lib/bootstrap/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module Bootstrap
22
VERSION = '4.0.0.dev'
3-
BOOTSTRAP_SHA = 'b811f8cf9628dbcbfe994f71588c5a0c921a092d'
3+
BOOTSTRAP_SHA = '64cdb791dfa2f04bd50062b76fcf25345c073a36'
44
end

templates/project/_bootstrap-variables.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
// $spacer: 1rem;
6262
// $spacer-x: $spacer;
6363
// $spacer-y: $spacer;
64-
// $border-width: .0625rem;
64+
// $border-width: 1px;
6565

6666

6767
// Body
@@ -284,9 +284,9 @@
284284
// $input-padding-x-lg: 1.25rem;
285285
// $input-padding-y-lg: .75rem;
286286

287-
// $input-height: (($font-size-base * $line-height) + ($input-padding-y * 2) + ($border-width * 2));
288-
// $input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2) + ($border-width * 2));
289-
// $input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2) + ($border-width * 2));
287+
// $input-height: (($font-size-base * $line-height) + ($input-padding-y * 2));
288+
// $input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2));
289+
// $input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2));
290290

291291
// $form-group-margin-bottom: $spacer-y;
292292

0 commit comments

Comments
 (0)