Skip to content

Commit 8b272e5

Browse files
committed
gh-pages v3.1.0
1 parent 8e6cb8c commit 8b272e5

File tree

239 files changed

+85903
-54935
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+85903
-54935
lines changed

bootstrap/less/bootstrap.less

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

bootstrap/less/button-groups.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@
173173
border-radius: 0;
174174
}
175175
&:first-child:not(:last-child) {
176-
.border-top-radius(@btn-border-radius-base);
176+
border-top-right-radius: @btn-border-radius-base;
177177
.border-bottom-radius(0);
178178
}
179179
&:last-child:not(:first-child) {
180+
border-bottom-left-radius: @btn-border-radius-base;
180181
.border-top-radius(0);
181-
.border-bottom-radius(@btn-border-radius-base);
182182
}
183183
}
184184
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

bootstrap/less/carousel.less

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@
101101
color: @carousel-control-color;
102102
text-align: center;
103103
text-shadow: @carousel-text-shadow;
104-
background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug
105104
// We can't have this transition here because WebKit cancels the carousel
106105
// animation if you trip this while in the middle of another animation.
107106

@@ -241,18 +240,18 @@
241240
.glyphicon-chevron-right,
242241
.icon-prev,
243242
.icon-next {
244-
width: (@carousel-control-font-size * 1.5);
245-
height: (@carousel-control-font-size * 1.5);
246-
margin-top: (@carousel-control-font-size / -2);
247-
font-size: (@carousel-control-font-size * 1.5);
243+
width: 30px;
244+
height: 30px;
245+
margin-top: -15px;
246+
font-size: 30px;
248247
}
249248
.glyphicon-chevron-left,
250249
.icon-prev {
251-
margin-left: (@carousel-control-font-size / -2);
250+
margin-left: -15px;
252251
}
253252
.glyphicon-chevron-right,
254253
.icon-next {
255-
margin-right: (@carousel-control-font-size / -2);
254+
margin-right: -15px;
256255
}
257256
}
258257

bootstrap/less/forms.less

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,6 @@ output {
132132
// Placeholder
133133
.placeholder();
134134

135-
// Unstyle the caret on `<select>`s in IE10+.
136-
&::-ms-expand {
137-
border: 0;
138-
background-color: transparent;
139-
}
140-
141135
// Disabled and read-only inputs
142136
//
143137
// HTML5 says that controls under a fieldset > legend:first-child won't be
@@ -439,10 +433,10 @@ input[type="checkbox"] {
439433
.has-feedback label {
440434

441435
& ~ .form-control-feedback {
442-
top: (@line-height-computed + 5); // Height of the `label` and its margin
436+
top: (@line-height-computed + 5); // Height of the `label` and its margin
443437
}
444438
&.sr-only ~ .form-control-feedback {
445-
top: 0;
439+
top: 0;
446440
}
447441
}
448442

@@ -597,7 +591,7 @@ input[type="checkbox"] {
597591
.form-group-lg {
598592
@media (min-width: @screen-sm-min) {
599593
.control-label {
600-
padding-top: (@padding-large-vertical + 1);
594+
padding-top: ((@padding-large-vertical * @line-height-large) + 1);
601595
font-size: @font-size-large;
602596
}
603597
}

bootstrap/less/glyphicons.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
}
3333

3434
// Individual icons
35-
.glyphicon-asterisk { &:before { content: "\002a"; } }
36-
.glyphicon-plus { &:before { content: "\002b"; } }
35+
.glyphicon-asterisk { &:before { content: "\2a"; } }
36+
.glyphicon-plus { &:before { content: "\2b"; } }
3737
.glyphicon-euro,
3838
.glyphicon-eur { &:before { content: "\20ac"; } }
3939
.glyphicon-minus { &:before { content: "\2212"; } }

bootstrap/less/input-groups.less

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@
2929

3030
width: 100%;
3131
margin-bottom: 0;
32-
33-
&:focus {
34-
z-index: 3;
35-
}
3632
}
3733
}
3834

@@ -83,18 +79,18 @@
8379
text-align: center;
8480
background-color: @input-group-addon-bg;
8581
border: 1px solid @input-group-addon-border-color;
86-
border-radius: @input-border-radius;
82+
border-radius: @border-radius-base;
8783

8884
// Sizing
8985
&.input-sm {
9086
padding: @padding-small-vertical @padding-small-horizontal;
9187
font-size: @font-size-small;
92-
border-radius: @input-border-radius-small;
88+
border-radius: @border-radius-small;
9389
}
9490
&.input-lg {
9591
padding: @padding-large-vertical @padding-large-horizontal;
9692
font-size: @font-size-large;
97-
border-radius: @input-border-radius-large;
93+
border-radius: @border-radius-large;
9894
}
9995

10096
// Nuke default margins from checkboxes and radios to vertically center within.

bootstrap/less/jumbotron.less

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
.container &,
2929
.container-fluid & {
3030
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
31-
padding-left: (@grid-gutter-width / 2);
32-
padding-right: (@grid-gutter-width / 2);
3331
}
3432

3533
.container {

bootstrap/less/mixins/buttons.less

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,12 @@
4242
&.disabled,
4343
&[disabled],
4444
fieldset[disabled] & {
45+
&,
4546
&:hover,
4647
&:focus,
47-
&.focus {
48+
&.focus,
49+
&:active,
50+
&.active {
4851
background-color: @background;
4952
border-color: @border;
5053
}

bootstrap/less/mixins/grid.less

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: floor((@gutter / 2));
10-
padding-right: ceil((@gutter / 2));
9+
padding-left: (@gutter / 2);
10+
padding-right: (@gutter / 2);
1111
&:extend(.clearfix all);
1212
}
1313

bootstrap/less/mixins/hide-text.less

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.0.1 (has been removed in v4)
9+
// Deprecated as of v3.0.1 (will be removed in v4)
1010
.hide-text() {
1111
font: ~"0/0" a;
1212
color: transparent;

bootstrap/less/mixins/vendor-prefixes.less

Lines changed: 2 additions & 2 deletions
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 have been removed in v4.
4+
// Autoprefixer in our Gruntfile. They will be removed in v4.
55

66
// - Animations
77
// - Backface visibility
@@ -54,7 +54,7 @@
5454
// Prevent browsers from flickering when using CSS 3D transforms.
5555
// Default value is `visible`, but can be changed to `hidden`
5656

57-
.backface-visibility(@visibility) {
57+
.backface-visibility(@visibility){
5858
-webkit-backface-visibility: @visibility;
5959
-moz-backface-visibility: @visibility;
6060
backface-visibility: @visibility;

bootstrap/less/modals.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
.modal-header {
8080
padding: @modal-title-padding;
8181
border-bottom: 1px solid @modal-header-border-color;
82-
&:extend(.clearfix all);
82+
min-height: (@modal-title-padding + @modal-title-line-height);
8383
}
8484
// Close icon
8585
.modal-header .close {

bootstrap/less/pagination.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
> li > span {
4141
&:hover,
4242
&:focus {
43-
z-index: 2;
43+
z-index: 3;
4444
color: @pagination-hover-color;
4545
background-color: @pagination-hover-bg;
4646
border-color: @pagination-hover-border;
@@ -52,7 +52,7 @@
5252
&,
5353
&:hover,
5454
&:focus {
55-
z-index: 3;
55+
z-index: 2;
5656
color: @pagination-active-color;
5757
background-color: @pagination-active-bg;
5858
border-color: @pagination-active-border;

bootstrap/less/theme.less

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

bootstrap/less/type.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ dd {
211211
&:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present
212212
}
213213

214-
@media (min-width: @dl-horizontal-breakpoint) {
214+
@media (min-width: @grid-float-breakpoint) {
215215
dt {
216216
float: left;
217217
width: (@dl-horizontal-offset - 20);

bootstrap/less/variables.less

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,5 @@
863863
@page-header-border-color: @gray-lighter;
864864
//** Width of horizontal description list titles
865865
@dl-horizontal-offset: @component-offset-horizontal;
866-
//** Point at which .dl-horizontal becomes horizontal
867-
@dl-horizontal-breakpoint: @grid-float-breakpoint;
868866
//** Horizontal line color.
869867
@hr-border: @gray-lighter;

0 commit comments

Comments
 (0)