Skip to content

Commit 34d0946

Browse files
committed
Merge pull request #110 from jeremyben/master
Upgrade to Bootstrap 3.3.6
2 parents 546fe71 + e4432a5 commit 34d0946

26 files changed

+60
-49
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Bootstrap Stylus 3.3.5
1+
Bootstrap Stylus 3.3.6
22
======================
33

4-
Port of the amazing [Bootstrap 3.3.5](https://github.com/twbs/bootstrap) to [Stylus 0.47.0](http://learnboost.github.com/stylus/).
4+
Port of the amazing [Bootstrap 3.3.6](https://github.com/twbs/bootstrap) to [Stylus 0.47.0](http://learnboost.github.com/stylus/).
55

66
## Installing
77

bootstrap/button-groups.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@
159159
border-radius 0
160160

161161
&:first-child:not(:last-child)
162-
border-top-right-radius $btn-border-radius-base
162+
border-top-radius($btn-border-radius-base)
163163
border-bottom-radius(0)
164164

165165
&:last-child:not(:first-child)
166-
border-bottom-left-radius $btn-border-radius-base
167166
border-top-radius(0)
167+
border-bottom-radius($btn-border-radius-base)
168168

169169
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn
170170
border-radius 0

bootstrap/carousel.styl

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@
9292
color $carousel-control-color
9393
text-align center
9494
text-shadow $carousel-text-shadow
95+
background-color rgba(0, 0, 0, 0) // Fix IE9 click-thru bug
9596
// We can't have this transition here because WebKit cancels the carousel
9697
// animation if you trip this while in the middle of another animation.
9798

@@ -219,18 +220,18 @@
219220
.glyphicon-chevron-right,
220221
.icon-prev,
221222
.icon-next
222-
width 30px
223-
height 30px
224-
margin-top -15px
225-
font-size 30px
223+
width ($carousel-control-font-size * 1.5)
224+
height ($carousel-control-font-size * 1.5)
225+
margin-top ($carousel-control-font-size / -2)
226+
font-size ($carousel-control-font-size * 1.5)
226227

227228
.glyphicon-chevron-left,
228229
.icon-prev
229-
margin-left -15px
230+
margin-left ($carousel-control-font-size / -2)
230231

231232
.glyphicon-chevron-right,
232233
.icon-next
233-
margin-right -15px
234+
margin-right ($carousel-control-font-size / -2)
234235

235236
// Show and left align the captions
236237
.carousel-caption

bootstrap/forms.styl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,11 @@ output
122122
// Placeholder
123123
placeholder()
124124

125+
// Unstyle the caret on `<select>`s in IE10+.
126+
&::-ms-expand
127+
border: 0;
128+
background-color: transparent;
129+
125130
// Disabled and read-only inputs
126131
//
127132
// HTML5 says that controls under a fieldset > legend:first-child won't be

bootstrap/glyphicons.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
// Individual icons
2929
.glyphicon-asterisk
3030
&:before
31-
content "\2a"
31+
content "\002a"
3232
.glyphicon-plus
3333
&:before
34-
content "\2b"
34+
content "\002b"
3535
.glyphicon-euro,
3636
.glyphicon-eur
3737
&:before

bootstrap/index.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!!
2-
* Bootstrap v3.3.5 (http://getbootstrap.com)
2+
* Bootstrap v3.3.6 (http://getbootstrap.com)
33
* Copyright 2011-2015 Twitter, Inc.
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
55
*/

bootstrap/input-groups.styl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828

2929
width 100%
3030
margin-bottom 0
31+
32+
&:focus
33+
z-index 3
3134

3235
// Sizing options
3336
//
@@ -72,17 +75,17 @@
7275
text-align center
7376
background-color $input-group-addon-bg
7477
border 1px solid $input-group-addon-border-color
75-
border-radius $border-radius-base
78+
border-radius $input-border-radius
7679

7780
// Sizing
7881
&.input-sm
7982
padding $padding-small-vertical $padding-small-horizontal
8083
font-size $font-size-small
81-
border-radius $border-radius-small
84+
border-radius $input-border-radius-small
8285
&.input-lg
8386
padding $padding-large-vertical $padding-large-horizontal
8487
font-size $font-size-large
85-
border-radius $border-radius-large
88+
border-radius $input-border-radius-large
8689

8790
// Nuke default margins from checkboxes and radios to vertically center within.
8891
input[type="radio"],

bootstrap/mixins/vendor-prefixes.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Vendor Prefixes
22
//
33
// All vendor mixins are deprecated as of v3.2.0 due to the introduction of
4-
// Autoprefixer in our Gruntfile. They will be removed in v4.
4+
// Autoprefixer in our Gruntfile. They have been removed in v4.
55

66
// - Animations
77
// - Backface visibility

bootstrap/pagination.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
> li > span
3737
&:hover,
3838
&:focus
39-
z-index 3
39+
z-index 2
4040
color $pagination-hover-color
4141
background-color $pagination-hover-bg
4242
border-color $pagination-hover-border
@@ -46,7 +46,7 @@
4646
&,
4747
&:hover,
4848
&:focus
49-
z-index 2
49+
z-index 3
5050
color $pagination-active-color
5151
background-color $pagination-active-bg
5252
border-color $pagination-active-border

bootstrap/theme.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!!
2-
* Bootstrap v3.3.5 (http://getbootstrap.com)
2+
* Bootstrap v3.3.6 (http://getbootstrap.com)
33
* Copyright 2011-2015 Twitter, Inc.
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
55
*/

0 commit comments

Comments
 (0)