Skip to content

Commit 73d7b26

Browse files
committed
rake update[v4-dev]
1 parent 6014a8d commit 73d7b26

11 files changed

Lines changed: 242 additions & 18 deletions

File tree

assets/javascripts/bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if (typeof jQuery === 'undefined') {
2727

2828
'use strict';
2929

30-
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };
30+
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };
3131

3232
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
3333

assets/javascripts/bootstrap.min.js

Lines changed: 215 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/bootstrap/popover.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/stylesheets/bootstrap/_forms.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
// Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214.
1616
background-image: none;
1717
border: $border-width solid $input-border;
18-
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
18+
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
1919
@include border-radius($input-border-radius);
2020
@include box-shadow($input-box-shadow);
2121
@include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);
2222

2323
// Make inputs at least the height of their button counterpart (base line-height + padding + border).
24-
// Only apply the height to textual inputs and some selcts.
24+
// Only apply the height to textual inputs and some selects.
2525
// &:not(textarea),
2626
// &:not(select[size]),
2727
// &:not(select[multiple]) {

assets/stylesheets/bootstrap/_grid.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,4 @@
7373
.col-#{$breakpoint}-bottom { align-self: flex-end; }
7474
}
7575
}
76-
7776
}

assets/stylesheets/bootstrap/_progress.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
@include gradient-striped();
112112
background-size: $spacer-y $spacer-y;
113113
}
114+
// IE9
114115
@media screen and (min-width:0\0) {
115116
.progress-bar-striped {
116117
@include gradient-striped();
@@ -129,6 +130,7 @@
129130
.progress-animated[value]::-moz-progress-bar {
130131
animation: progress-bar-stripes 2s linear infinite;
131132
}
133+
// IE9
132134
@media screen and (min-width:0\0) {
133135
.progress-animated .progress-bar-striped {
134136
animation: progress-bar-stripes 2s linear infinite;

assets/stylesheets/bootstrap/_tables.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@
109109
.table-responsive {
110110
display: block;
111111
width: 100%;
112+
min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
112113
overflow-x: auto;
113114

114-
// Todo: find out if we need this still.
115+
// TODO: find out if we need this still.
115116
//
116117
// border: 1px solid $table-border-color;
117-
// -ms-overflow-style: -ms-autohiding-scrollbar;
118-
// min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
118+
// -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
119119
}
120120

121121

assets/stylesheets/bootstrap/_type.scss

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,22 @@ h6, .h6 {
1919
margin-bottom: $headings-margin-bottom;
2020
}
2121

22-
h1, .h1 { font-size: $font-size-h1; }
23-
h2, .h2 { font-size: $font-size-h2; }
24-
h3, .h3 { font-size: $font-size-h3; }
25-
h4, .h4 { font-size: $font-size-h4; }
26-
h5, .h5 { font-size: $font-size-h5; }
27-
h6, .h6 { font-size: $font-size-h6; }
22+
h1 { font-size: $font-size-h1; }
23+
h2 { font-size: $font-size-h2; }
24+
h3 { font-size: $font-size-h3; }
25+
h4 { font-size: $font-size-h4; }
26+
h5 { font-size: $font-size-h5; }
27+
h6 { font-size: $font-size-h6; }
28+
29+
// These declarations are kept separate from and placed after
30+
// the previous tag-based declarations so that the classes beat the tags in
31+
// the CSS cascade, and thus <h1 class="h2"> will be styled like an h2.
32+
.h1 { font-size: $font-size-h1; }
33+
.h2 { font-size: $font-size-h2; }
34+
.h3 { font-size: $font-size-h3; }
35+
.h4 { font-size: $font-size-h4; }
36+
.h5 { font-size: $font-size-h5; }
37+
.h6 { font-size: $font-size-h6; }
2838

2939
.lead {
3040
font-size: $lead-font-size;

assets/stylesheets/bootstrap/mixins/_background-variant.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// Contextual backgrounds
22

3-
// [converter] $parent hack
43
@mixin bg-variant($parent, $color) {
54
#{$parent} {
65
color: #fff;

assets/stylesheets/bootstrap/mixins/_progress.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
background-color: $color;
1010
}
1111

12+
// IE9
1213
@media screen and (min-width:0\0) {
1314
.progress-bar {
1415
background-color: $color;

0 commit comments

Comments
 (0)