Skip to content

Commit 794327d

Browse files
committed
Merge pull request #112 from kane-c/bootstrap-3.3.6
Bootstrap 3.3.6
2 parents dbdeb7b + 749ed90 commit 794327d

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

bootstrap/forms.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ input[type="checkbox"]
534534
.form-group-lg
535535
@media (min-width $screen-sm-min)
536536
.control-label
537-
padding-top (($padding-large-vertical * $line-height-large) + 1)
537+
padding-top ($padding-large-vertical + 1)
538538
font-size $font-size-large
539539

540540
.form-group-sm

bootstrap/jumbotron.styl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
.container &,
2626
.container-fluid &
2727
border-radius $border-radius-large // Only round corners at higher resolutions if contained in a container
28+
padding-left ($grid-gutter-width / 2)
29+
padding-right ($grid-gutter-width / 2)
2830

2931
.container
3032
max-width 100%

bootstrap/mixins/buttons.styl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,9 @@ button-variant($color, $background, $border)
4040
&.disabled,
4141
&[disabled],
4242
fieldset[disabled] &
43-
&,
4443
&:hover,
4544
&:focus,
46-
&.focus,
47-
&:active,
48-
&.active
45+
&.focus
4946
background-color $background
5047
border-color $border
5148

bootstrap/mixins/grid.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
container-fixed($gutter = $grid-gutter-width)
77
margin-right auto
88
margin-left auto
9-
padding-left ($gutter / 2)
10-
padding-right ($gutter / 2)
9+
padding-left floor($gutter / 2)
10+
padding-right ceil($gutter / 2)
1111
clearfix()
1212

1313
// Creates a wrapper for a series of columns

bootstrap/mixins/hide-text.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// Source https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
88

9-
// Deprecated as of v3.01(will be removed in v4)
9+
// Deprecated as of v3.01 (has been removed in v4)
1010
hide-text()
1111
font unquote('0/0') a
1212
color transparent

bootstrap/modals.styl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@
8080
.modal-header
8181
padding $modal-title-padding
8282
border-bottom 1px solid $modal-header-border-color
83-
min-height ($modal-title-padding + $modal-title-line-height)
83+
clearfix()
84+
8485
// Close icon
8586
.modal-header .close
8687
margin-top -2px

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"version": "5.0.3",
1313
"devDependencies": {
1414
"grunt": "~0.4.5",
15-
"stylus": "~0.47.0",
16-
"grunt-autoprefixer": "~3.0.0",
17-
"grunt-contrib-stylus": "0.18.0",
18-
"grunt-contrib-watch": "~0.6.1",
19-
"grunt-contrib-cssmin": "~0.12.3",
15+
"grunt-autoprefixer": "~3.0.3",
16+
"grunt-contrib-cssmin": "~0.14.0",
2017
"grunt-contrib-clean": "~0.6.0",
21-
"grunt-contrib-uglify": "~0.9.1"
18+
"grunt-contrib-stylus": "~0.18.0",
19+
"grunt-contrib-uglify": "~0.9.2",
20+
"grunt-contrib-watch": "~0.6.1",
21+
"stylus": "~0.47.0"
2222
},
2323
"dependencies": {},
2424
"main": "index.js"

0 commit comments

Comments
 (0)