Skip to content

Commit c0b4859

Browse files
Portugal, MarceloPortugal, Marcelo
authored andcommitted
gh-pages v4.8.0
1 parent 90944b4 commit c0b4859

File tree

443 files changed

+110111
-24764
lines changed

Some content is hidden

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

443 files changed

+110111
-24764
lines changed

bootstrap/less/alerts.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
// Headings for larger alerts
1616
h4 {
1717
margin-top: 0;
18-
// Specified for the h4 to prevent conflicts of changing @headings-color
19-
color: inherit;
18+
color: inherit; // Specified for the h4 to prevent conflicts of changing @headings-color
2019
}
2120

2221
// Provide class for links that match alerts
@@ -39,7 +38,8 @@
3938
//
4039
// Expand the right padding and account for the close button's positioning.
4140

42-
.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
41+
// The misspelled .alert-dismissable was deprecated in 3.2.0.
42+
.alert-dismissable,
4343
.alert-dismissible {
4444
padding-right: (@alert-padding + 20);
4545

bootstrap/less/badges.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
padding: 3px 7px;
1111
font-size: @font-size-small;
1212
font-weight: @badge-font-weight;
13-
color: @badge-color;
1413
line-height: @badge-line-height;
15-
vertical-align: middle;
16-
white-space: nowrap;
14+
color: @badge-color;
1715
text-align: center;
16+
white-space: nowrap;
17+
vertical-align: middle;
1818
background-color: @badge-bg;
1919
border-radius: @badge-border-radius;
2020

bootstrap/less/bootstrap.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap v3.3.7 (http://getbootstrap.com)
3-
* Copyright 2011-2016 Twitter, Inc.
2+
* Bootstrap v3.4.1 (https://getbootstrap.com/)
3+
* Copyright 2011-2019 Twitter, Inc.
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
55
*/
66

bootstrap/less/breadcrumbs.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
display: inline-block;
1515

1616
+ li:before {
17-
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
1817
padding: 0 5px;
1918
color: @breadcrumb-color;
19+
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
2020
}
2121
}
2222

bootstrap/less/button-groups.less

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// stylelint-disable selector-no-qualifying-type */
2+
13
//
24
// Button groups
35
// --------------------------------------------------
@@ -103,18 +105,18 @@
103105

104106
// Give the line between buttons some depth
105107
.btn-group > .btn + .dropdown-toggle {
106-
padding-left: 8px;
107108
padding-right: 8px;
109+
padding-left: 8px;
108110
}
109111
.btn-group > .btn-lg + .dropdown-toggle {
110-
padding-left: 12px;
111112
padding-right: 12px;
113+
padding-left: 12px;
112114
}
113115

114116
// The clickable button for toggling the menu
115117
// Remove the gradient and set the same inset shadow as the :active state
116118
.btn-group.open .dropdown-toggle {
117-
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
119+
.box-shadow(inset 0 3px 5px rgba(0, 0, 0, .125));
118120

119121
// Show no shadow for `.btn-link` since it has no other button styles.
120122
&.btn-link {
@@ -205,8 +207,8 @@
205207
border-collapse: separate;
206208
> .btn,
207209
> .btn-group {
208-
float: none;
209210
display: table-cell;
211+
float: none;
210212
width: 1%;
211213
}
212214
> .btn-group .btn {
@@ -237,7 +239,7 @@
237239
input[type="radio"],
238240
input[type="checkbox"] {
239241
position: absolute;
240-
clip: rect(0,0,0,0);
242+
clip: rect(0, 0, 0, 0);
241243
pointer-events: none;
242244
}
243245
}

bootstrap/less/buttons.less

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// stylelint-disable selector-no-qualifying-type
2+
13
//
24
// Buttons
35
// --------------------------------------------------
@@ -11,12 +13,12 @@
1113
margin-bottom: 0; // For input.btn
1214
font-weight: @btn-font-weight;
1315
text-align: center;
16+
white-space: nowrap;
1417
vertical-align: middle;
1518
touch-action: manipulation;
1619
cursor: pointer;
1720
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
1821
border: 1px solid transparent;
19-
white-space: nowrap;
2022
.button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);
2123
.user-select(none);
2224

@@ -38,9 +40,9 @@
3840

3941
&:active,
4042
&.active {
41-
outline: 0;
4243
background-image: none;
43-
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
44+
outline: 0;
45+
.box-shadow(inset 0 3px 5px rgba(0, 0, 0, .125));
4446
}
4547

4648
&.disabled,
@@ -92,8 +94,8 @@
9294

9395
// Make a button look and behave like a link
9496
.btn-link {
97+
font-weight: 400;
9598
color: @link-color;
96-
font-weight: normal;
9799
border-radius: 0;
98100

99101
&,

bootstrap/less/carousel.less

Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// stylelint-disable media-feature-name-no-unknown
2+
13
//
24
// Carousel
35
// --------------------------------------------------
@@ -10,12 +12,12 @@
1012

1113
.carousel-inner {
1214
position: relative;
13-
overflow: hidden;
1415
width: 100%;
16+
overflow: hidden;
1517

1618
> .item {
17-
display: none;
1819
position: relative;
20+
display: none;
1921
.transition(.6s ease-in-out left);
2022

2123
// Account for jankitude on images
@@ -27,8 +29,8 @@
2729

2830
// WebKit CSS3 transforms for supported devices
2931
@media all and (transform-3d), (-webkit-transform-3d) {
30-
.transition-transform(~'0.6s ease-in-out');
31-
.backface-visibility(~'hidden');
32+
.transition-transform(~"0.6s ease-in-out");
33+
.backface-visibility(~"hidden");
3234
.perspective(1000px);
3335

3436
&.next,
@@ -93,34 +95,34 @@
9395
.carousel-control {
9496
position: absolute;
9597
top: 0;
96-
left: 0;
9798
bottom: 0;
99+
left: 0;
98100
width: @carousel-control-width;
99-
.opacity(@carousel-control-opacity);
100101
font-size: @carousel-control-font-size;
101102
color: @carousel-control-color;
102103
text-align: center;
103104
text-shadow: @carousel-text-shadow;
104105
background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug
106+
.opacity(@carousel-control-opacity);
105107
// We can't have this transition here because WebKit cancels the carousel
106108
// animation if you trip this while in the middle of another animation.
107109

108110
// Set gradients for backgrounds
109111
&.left {
110-
#gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));
112+
#gradient > .horizontal(@start-color: rgba(0, 0, 0, .5); @end-color: rgba(0, 0, 0, .0001));
111113
}
112114
&.right {
113-
left: auto;
114115
right: 0;
115-
#gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));
116+
left: auto;
117+
#gradient > .horizontal(@start-color: rgba(0, 0, 0, .0001); @end-color: rgba(0, 0, 0, .5));
116118
}
117119

118120
// Hover/focus state
119121
&:hover,
120122
&:focus {
121-
outline: 0;
122123
color: @carousel-control-color;
123124
text-decoration: none;
125+
outline: 0;
124126
.opacity(.9);
125127
}
126128

@@ -131,9 +133,9 @@
131133
.glyphicon-chevron-right {
132134
position: absolute;
133135
top: 50%;
134-
margin-top: -10px;
135136
z-index: 5;
136137
display: inline-block;
138+
margin-top: -10px;
137139
}
138140
.icon-prev,
139141
.glyphicon-chevron-left {
@@ -147,21 +149,20 @@
147149
}
148150
.icon-prev,
149151
.icon-next {
150-
width: 20px;
152+
width: 20px;
151153
height: 20px;
152-
line-height: 1;
153154
font-family: serif;
155+
line-height: 1;
154156
}
155157

156-
157158
.icon-prev {
158159
&:before {
159-
content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
160+
content: "\2039";// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
160161
}
161162
}
162163
.icon-next {
163164
&:before {
164-
content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
165+
content: "\203a";// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
165166
}
166167
}
167168
}
@@ -177,21 +178,18 @@
177178
left: 50%;
178179
z-index: 15;
179180
width: 60%;
180-
margin-left: -30%;
181181
padding-left: 0;
182-
list-style: none;
182+
margin-left: -30%;
183183
text-align: center;
184+
list-style: none;
184185

185186
li {
186187
display: inline-block;
187-
width: 10px;
188+
width: 10px;
188189
height: 10px;
189190
margin: 1px;
190191
text-indent: -999px;
191-
border: 1px solid @carousel-indicator-border-color;
192-
border-radius: 10px;
193192
cursor: pointer;
194-
195193
// IE8-9 hack for event handling
196194
//
197195
// Internet Explorer 8-9 does not support clicks on elements without a set
@@ -202,12 +200,16 @@
202200
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
203201
// set alpha transparency for the best results possible.
204202
background-color: #000 \9; // IE8
205-
background-color: rgba(0,0,0,0); // IE9
203+
background-color: rgba(0, 0, 0, 0); // IE9
204+
205+
border: 1px solid @carousel-indicator-border-color;
206+
border-radius: 10px;
206207
}
208+
207209
.active {
208-
margin: 0;
209-
width: 12px;
210+
width: 12px;
210211
height: 12px;
212+
margin: 0;
211213
background-color: @carousel-indicator-active-bg;
212214
}
213215
}
@@ -217,15 +219,16 @@
217219
// Hidden by default for smaller viewports
218220
.carousel-caption {
219221
position: absolute;
220-
left: 15%;
221222
right: 15%;
222223
bottom: 20px;
224+
left: 15%;
223225
z-index: 10;
224226
padding-top: 20px;
225227
padding-bottom: 20px;
226228
color: @carousel-caption-color;
227229
text-align: center;
228230
text-shadow: @carousel-text-shadow;
231+
229232
& .btn {
230233
text-shadow: none; // No shadow for button elements in carousel-caption
231234
}
@@ -258,8 +261,8 @@
258261

259262
// Show and left align the captions
260263
.carousel-caption {
261-
left: 20%;
262264
right: 20%;
265+
left: 20%;
263266
padding-bottom: 30px;
264267
}
265268

bootstrap/less/close.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// stylelint-disable property-no-vendor-prefix
2+
13
//
24
// Close icons
35
// --------------------------------------------------
@@ -30,5 +32,6 @@
3032
background: transparent;
3133
border: 0;
3234
-webkit-appearance: none;
35+
appearance: none;
3336
}
3437
}

bootstrap/less/code.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ kbd {
2727
color: @kbd-color;
2828
background-color: @kbd-bg;
2929
border-radius: @border-radius-small;
30-
box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
30+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
3131

3232
kbd {
3333
padding: 0;
3434
font-size: 100%;
35-
font-weight: bold;
35+
font-weight: 700;
3636
box-shadow: none;
3737
}
3838
}
@@ -44,9 +44,9 @@ pre {
4444
margin: 0 0 (@line-height-computed / 2);
4545
font-size: (@font-size-base - 1); // 14px to 13px
4646
line-height: @line-height-base;
47+
color: @pre-color;
4748
word-break: break-all;
4849
word-wrap: break-word;
49-
color: @pre-color;
5050
background-color: @pre-bg;
5151
border: 1px solid @pre-border-color;
5252
border-radius: @border-radius-base;

bootstrap/less/component-animations.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// stylelint-disable selector-no-qualifying-type
2+
13
//
24
// Component animations
35
// --------------------------------------------------
@@ -10,6 +12,7 @@
1012
.fade {
1113
opacity: 0;
1214
.transition(opacity .15s linear);
15+
1316
&.in {
1417
opacity: 1;
1518
}

0 commit comments

Comments
 (0)