Skip to content

Commit e82238c

Browse files
committed
rake update[v4-dev]
1 parent 531ca35 commit e82238c

6 files changed

Lines changed: 7 additions & 8 deletions

File tree

assets/stylesheets/bootstrap/_alert.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@
6161
@include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
6262
}
6363
.alert-danger {
64-
@include alert-variant($alert-danger-bg, $alert-danger-border,$alert-danger-text);
64+
@include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
6565
}

assets/stylesheets/bootstrap/_card.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.card {
66
position: relative;
77
margin-bottom: $card-spacer-y;
8-
background-color: #fff;
8+
background-color: $card-bg;
99
border: $card-border-width solid $card-border-color;
1010
@include border-radius($card-border-radius);
1111
}

assets/stylesheets/bootstrap/_variables.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,7 @@ $card-border-radius: .25rem !default;
454454
$card-border-color: #e5e5e5 !default;
455455
$card-border-radius-inner: ($card-border-radius - $card-border-width) !default;
456456
$card-cap-bg: #f5f5f5 !default;
457+
$card-bg: #fff !default;
457458

458459
// Tooltips
459460

assets/stylesheets/bootstrap/mixins/_grid.scss

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
margin-left: auto;
88
padding-left: ($gutter / 2);
99
padding-right: ($gutter / 2);
10-
@if $enable-flex {
11-
} @else {
10+
@if not $enable-flex {
1211
@include clearfix();
1312
}
1413
}
@@ -36,9 +35,7 @@
3635

3736
@mixin make-col($gutter: $grid-gutter-width) {
3837
position: relative;
39-
@if $enable-flex {
40-
// Do nothing
41-
} @else {
38+
@if not $enable-flex {
4239
float: left;
4340
}
4441
min-height: 1px;

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 = '64cdb791dfa2f04bd50062b76fcf25345c073a36'
3+
BOOTSTRAP_SHA = '3497d9937a2d9c192e1818bdc671fd61b3542515'
44
end

templates/project/_bootstrap-variables.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,7 @@
455455
// $card-border-color: #e5e5e5;
456456
// $card-border-radius-inner: ($card-border-radius - $card-border-width);
457457
// $card-cap-bg: #f5f5f5;
458+
// $card-bg: #fff;
458459

459460
// Tooltips
460461

0 commit comments

Comments
 (0)