bootstrap-sass 3.0.0.0 → 3.0.1.0.rc
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bootstrap-sass might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/lib/bootstrap-sass/version.rb +2 -2
- data/tasks/converter.rb +16 -773
- data/tasks/converter/char_string_scanner.rb +38 -0
- data/tasks/converter/fonts_conversion.rb +12 -0
- data/tasks/converter/js_conversion.rb +22 -0
- data/tasks/converter/less_conversion.rb +612 -0
- data/tasks/converter/logger.rb +64 -0
- data/tasks/converter/network.rb +110 -0
- data/test/compilation_test.rb +5 -1
- data/test/dummy/app/views/pages/root.html.slim +10 -2
- data/vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +200 -199
- data/vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/vendor/assets/javascripts/bootstrap/affix.js +2 -2
- data/vendor/assets/javascripts/bootstrap/alert.js +1 -1
- data/vendor/assets/javascripts/bootstrap/button.js +1 -1
- data/vendor/assets/javascripts/bootstrap/carousel.js +2 -2
- data/vendor/assets/javascripts/bootstrap/collapse.js +2 -2
- data/vendor/assets/javascripts/bootstrap/dropdown.js +2 -2
- data/vendor/assets/javascripts/bootstrap/modal.js +2 -2
- data/vendor/assets/javascripts/bootstrap/popover.js +2 -2
- data/vendor/assets/javascripts/bootstrap/scrollspy.js +2 -2
- data/vendor/assets/javascripts/bootstrap/tab.js +3 -3
- data/vendor/assets/javascripts/bootstrap/tooltip.js +2 -2
- data/vendor/assets/javascripts/bootstrap/transition.js +1 -1
- data/vendor/assets/stylesheets/bootstrap/_alerts.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss +2 -2
- data/vendor/assets/stylesheets/bootstrap/_button-groups.scss +6 -1
- data/vendor/assets/stylesheets/bootstrap/_buttons.scss +2 -4
- data/vendor/assets/stylesheets/bootstrap/_carousel.scss +32 -10
- data/vendor/assets/stylesheets/bootstrap/_code.scss +5 -8
- data/vendor/assets/stylesheets/bootstrap/_dropdowns.scss +1 -2
- data/vendor/assets/stylesheets/bootstrap/_forms.scss +16 -3
- data/vendor/assets/stylesheets/bootstrap/_glyphicons.scss +16 -11
- data/vendor/assets/stylesheets/bootstrap/_grid.scss +32 -285
- data/vendor/assets/stylesheets/bootstrap/_input-groups.scss +9 -0
- data/vendor/assets/stylesheets/bootstrap/_jumbotron.scss +2 -2
- data/vendor/assets/stylesheets/bootstrap/_list-group.scss +15 -17
- data/vendor/assets/stylesheets/bootstrap/_mixins.scss +160 -29
- data/vendor/assets/stylesheets/bootstrap/_modals.scss +2 -16
- data/vendor/assets/stylesheets/bootstrap/_navbar.scss +10 -7
- data/vendor/assets/stylesheets/bootstrap/_navs.scss +53 -20
- data/vendor/assets/stylesheets/bootstrap/_normalize.scss +16 -6
- data/vendor/assets/stylesheets/bootstrap/_pagination.scss +2 -0
- data/vendor/assets/stylesheets/bootstrap/_panels.scss +31 -7
- data/vendor/assets/stylesheets/bootstrap/_print.scss +6 -1
- data/vendor/assets/stylesheets/bootstrap/_progress-bars.scss +4 -7
- data/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss +57 -68
- data/vendor/assets/stylesheets/bootstrap/_scaffolding.scss +1 -12
- data/vendor/assets/stylesheets/bootstrap/_tables.scss +40 -40
- data/vendor/assets/stylesheets/bootstrap/_theme.scss +26 -11
- data/vendor/assets/stylesheets/bootstrap/_thumbnails.scss +6 -6
- data/vendor/assets/stylesheets/bootstrap/_tooltip.scss +8 -8
- data/vendor/assets/stylesheets/bootstrap/_type.scss +71 -30
- data/vendor/assets/stylesheets/bootstrap/_utilities.scss +15 -1
- data/vendor/assets/stylesheets/bootstrap/_variables.scss +56 -39
- data/vendor/assets/stylesheets/bootstrap/bootstrap.scss +0 -10
- metadata +9 -3
Binary file
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: affix.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#affix
|
4
4
|
* ========================================================================
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
* you may not use this file except in compliance with the License.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: alert.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#alerts
|
4
4
|
* ========================================================================
|
5
5
|
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: button.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#buttons
|
4
4
|
* ========================================================================
|
5
5
|
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: carousel.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#carousel
|
4
4
|
* ========================================================================
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
* you may not use this file except in compliance with the License.
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: collapse.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#collapse
|
4
4
|
* ========================================================================
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
* you may not use this file except in compliance with the License.
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: dropdown.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#dropdowns
|
4
4
|
* ========================================================================
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
* you may not use this file except in compliance with the License.
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: modal.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#modals
|
4
4
|
* ========================================================================
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
* you may not use this file except in compliance with the License.
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: popover.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#popovers
|
4
4
|
* ========================================================================
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
* you may not use this file except in compliance with the License.
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: scrollspy.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#scrollspy
|
4
4
|
* ========================================================================
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
* you may not use this file except in compliance with the License.
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: tab.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#tabs
|
4
4
|
* ========================================================================
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
* you may not use this file except in compliance with the License.
|
@@ -30,7 +30,7 @@
|
|
30
30
|
Tab.prototype.show = function () {
|
31
31
|
var $this = this.element
|
32
32
|
var $ul = $this.closest('ul:not(.dropdown-menu)')
|
33
|
-
var selector = $this.
|
33
|
+
var selector = $this.data('target')
|
34
34
|
|
35
35
|
if (!selector) {
|
36
36
|
selector = $this.attr('href')
|
@@ -1,9 +1,9 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: tooltip.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#tooltip
|
4
4
|
* Inspired by the original jQuery.tipsy by Jason Frame
|
5
5
|
* ========================================================================
|
6
|
-
* Copyright
|
6
|
+
* Copyright 2013 Twitter, Inc.
|
7
7
|
*
|
8
8
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
9
9
|
* you may not use this file except in compliance with the License.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* ========================================================================
|
2
2
|
* Bootstrap: transition.js v3.0.0
|
3
|
-
* http://
|
3
|
+
* http://getbootstrap.com/javascript/#transitions
|
4
4
|
* ========================================================================
|
5
5
|
* Copyright 2013 Twitter, Inc.
|
6
6
|
*
|
@@ -15,7 +15,7 @@
|
|
15
15
|
// Headings for larger alerts
|
16
16
|
h4 {
|
17
17
|
margin-top: 0;
|
18
|
-
// Specified for the h4 to prevent conflicts of changing $
|
18
|
+
// Specified for the h4 to prevent conflicts of changing $headings-color
|
19
19
|
color: inherit;
|
20
20
|
}
|
21
21
|
// Provide class for links that match alerts
|
@@ -11,8 +11,8 @@
|
|
11
11
|
border-radius: $border-radius-base;
|
12
12
|
> li {
|
13
13
|
display: inline-block;
|
14
|
-
|
15
|
-
content: "
|
14
|
+
+ li:before {
|
15
|
+
content: "#{$breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
|
16
16
|
padding: 0 5px;
|
17
17
|
color: $breadcrumb-color;
|
18
18
|
}
|
@@ -19,7 +19,7 @@
|
|
19
19
|
}
|
20
20
|
}
|
21
21
|
.dropup {
|
22
|
-
|
22
|
+
.btn-default .caret {
|
23
23
|
border-bottom-color: $btn-default-color;
|
24
24
|
}
|
25
25
|
.btn-primary,
|
@@ -150,6 +150,11 @@
|
|
150
150
|
// Remove the gradient and set the same inset shadow as the :active state
|
151
151
|
.btn-group.open .dropdown-toggle {
|
152
152
|
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
153
|
+
|
154
|
+
// Show no shadow for `.btn-link` since it has no other button styles.
|
155
|
+
&.btn-link {
|
156
|
+
@include box-shadow(none);
|
157
|
+
}
|
153
158
|
}
|
154
159
|
|
155
160
|
|
@@ -9,17 +9,15 @@
|
|
9
9
|
// Core styles
|
10
10
|
.btn {
|
11
11
|
display: inline-block;
|
12
|
-
padding: $padding-base-vertical $padding-base-horizontal;
|
13
12
|
margin-bottom: 0; // For input.btn
|
14
|
-
font-size: $font-size-base;
|
15
13
|
font-weight: $btn-font-weight;
|
16
|
-
line-height: $line-height-base;
|
17
14
|
text-align: center;
|
18
15
|
vertical-align: middle;
|
19
16
|
cursor: pointer;
|
17
|
+
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
20
18
|
border: 1px solid transparent;
|
21
|
-
border-radius: $border-radius-base;
|
22
19
|
white-space: nowrap;
|
20
|
+
@include button-size($padding-base-vertical, $padding-base-horizontal, $font-size-base, $line-height-base, $border-radius-base);
|
23
21
|
@include user-select(none);
|
24
22
|
|
25
23
|
&:focus {
|
@@ -75,7 +75,7 @@
|
|
75
75
|
color: $carousel-control-color;
|
76
76
|
text-align: center;
|
77
77
|
text-shadow: $carousel-text-shadow;
|
78
|
-
// We can't have this transition here because
|
78
|
+
// We can't have this transition here because WebKit cancels the carousel
|
79
79
|
// animation if you trip this while in the middle of another animation.
|
80
80
|
|
81
81
|
// Set gradients for backgrounds
|
@@ -103,11 +103,18 @@
|
|
103
103
|
.glyphicon-chevron-right {
|
104
104
|
position: absolute;
|
105
105
|
top: 50%;
|
106
|
-
left: 50%;
|
107
106
|
z-index: 5;
|
108
107
|
display: inline-block;
|
109
108
|
}
|
110
109
|
.icon-prev,
|
110
|
+
.glyphicon-chevron-left {
|
111
|
+
left: 50%;
|
112
|
+
}
|
113
|
+
.icon-next,
|
114
|
+
.glyphicon-chevron-right {
|
115
|
+
right: 50%;
|
116
|
+
}
|
117
|
+
.icon-prev,
|
111
118
|
.icon-next {
|
112
119
|
width: 20px;
|
113
120
|
height: 20px;
|
@@ -153,6 +160,17 @@
|
|
153
160
|
border: 1px solid $carousel-indicator-border-color;
|
154
161
|
border-radius: 10px;
|
155
162
|
cursor: pointer;
|
163
|
+
|
164
|
+
// IE8-9 hack for event handling
|
165
|
+
//
|
166
|
+
// Internet Explorer 8-9 does not support clicks on elements without a set
|
167
|
+
// `background-color`. We cannot use `filter` since that's not viewed as a
|
168
|
+
// background color by the browser. Thus, a hack is needed.
|
169
|
+
//
|
170
|
+
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
|
171
|
+
// set alpha transparency for the best results possible.
|
172
|
+
background-color: #000 \9; // IE8
|
173
|
+
background-color: rgba(0,0,0,0); // IE9
|
156
174
|
}
|
157
175
|
.active {
|
158
176
|
margin: 0;
|
@@ -183,16 +201,20 @@
|
|
183
201
|
|
184
202
|
|
185
203
|
// Scale up controls for tablets and up
|
186
|
-
@media screen and (min-width: $screen-
|
204
|
+
@media screen and (min-width: $screen-sm-min) {
|
187
205
|
|
188
206
|
// Scale up the controls a smidge
|
189
|
-
.carousel-control
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
207
|
+
.carousel-control {
|
208
|
+
.glyphicons-chevron-left,
|
209
|
+
.glyphicons-chevron-right,
|
210
|
+
.icon-prev,
|
211
|
+
.icon-next {
|
212
|
+
width: 30px;
|
213
|
+
height: 30px;
|
214
|
+
margin-top: -15px;
|
215
|
+
margin-left: -15px;
|
216
|
+
font-size: 30px;
|
217
|
+
}
|
196
218
|
}
|
197
219
|
|
198
220
|
// Show and left align the captions
|
@@ -1,11 +1,13 @@
|
|
1
1
|
//
|
2
|
-
// Code (inline and
|
2
|
+
// Code (inline and block)
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
5
5
|
|
6
6
|
// Inline and block code styles
|
7
7
|
code,
|
8
|
-
|
8
|
+
kbd,
|
9
|
+
pre,
|
10
|
+
samp {
|
9
11
|
font-family: $font-family-monospace;
|
10
12
|
}
|
11
13
|
|
@@ -33,11 +35,6 @@ pre {
|
|
33
35
|
border: 1px solid $pre-border-color;
|
34
36
|
border-radius: $border-radius-base;
|
35
37
|
|
36
|
-
// Make prettyprint styles more spaced out for readability
|
37
|
-
&.prettyprint {
|
38
|
-
margin-bottom: $line-height-computed;
|
39
|
-
}
|
40
|
-
|
41
38
|
// Account for some code outputs that place code tags in pre tags
|
42
39
|
code {
|
43
40
|
padding: 0;
|
@@ -45,7 +42,7 @@ pre {
|
|
45
42
|
color: inherit;
|
46
43
|
white-space: pre-wrap;
|
47
44
|
background-color: transparent;
|
48
|
-
border: 0;
|
45
|
+
border-radius: 0;
|
49
46
|
}
|
50
47
|
}
|
51
48
|
|
@@ -16,7 +16,6 @@
|
|
16
16
|
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once fixed,
|
17
17
|
// we can just straight up remove this.
|
18
18
|
border-bottom: 0 dotted;
|
19
|
-
content: "";
|
20
19
|
}
|
21
20
|
|
22
21
|
// The dropdown wrapper (div)
|
@@ -167,7 +166,7 @@
|
|
167
166
|
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once this
|
168
167
|
// gets fixed, restore `border-top: 0;`.
|
169
168
|
border-top: 0 dotted;
|
170
|
-
border-bottom:
|
169
|
+
border-bottom: $caret-width-base solid $dropdown-caret-color;
|
171
170
|
content: "";
|
172
171
|
}
|
173
172
|
// Different positioning for bottom up menu
|
@@ -82,6 +82,15 @@ input[type="number"] {
|
|
82
82
|
}
|
83
83
|
}
|
84
84
|
|
85
|
+
// Adjust output element
|
86
|
+
output {
|
87
|
+
display: block;
|
88
|
+
padding-top: ($padding-base-vertical + 1);
|
89
|
+
font-size: $font-size-base;
|
90
|
+
line-height: $line-height-base;
|
91
|
+
color: $input-color;
|
92
|
+
vertical-align: middle;
|
93
|
+
}
|
85
94
|
|
86
95
|
// Placeholder
|
87
96
|
//
|
@@ -124,6 +133,7 @@ input[type="number"] {
|
|
124
133
|
color: $input-color;
|
125
134
|
vertical-align: middle;
|
126
135
|
background-color: $input-bg;
|
136
|
+
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
127
137
|
border: 1px solid $input-border;
|
128
138
|
border-radius: $input-border-radius;
|
129
139
|
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
@@ -256,7 +266,6 @@ input[type="checkbox"],
|
|
256
266
|
|
257
267
|
.form-control-static {
|
258
268
|
margin-bottom: 0; // Remove default margin from `p`
|
259
|
-
padding-top: ($padding-base-vertical + 1);
|
260
269
|
}
|
261
270
|
|
262
271
|
|
@@ -288,7 +297,7 @@ input[type="checkbox"],
|
|
288
297
|
.form-inline {
|
289
298
|
|
290
299
|
// Kick in the inline
|
291
|
-
@media (min-width: $screen-
|
300
|
+
@media (min-width: $screen-sm) {
|
292
301
|
// Inline-block all the things for "inline"
|
293
302
|
.form-group {
|
294
303
|
display: inline-block;
|
@@ -343,8 +352,12 @@ input[type="checkbox"],
|
|
343
352
|
@include make-row();
|
344
353
|
}
|
345
354
|
|
355
|
+
.form-control-static {
|
356
|
+
padding-top: ($padding-base-vertical + 1);
|
357
|
+
}
|
358
|
+
|
346
359
|
// Only right align form labels here when the columns stop stacking
|
347
|
-
@media (min-width: $screen-
|
360
|
+
@media (min-width: $screen-sm-min) {
|
348
361
|
.control-label {
|
349
362
|
text-align: right;
|
350
363
|
}
|
@@ -14,7 +14,7 @@
|
|
14
14
|
src: font-url('#{$icon-font-path}#{$icon-font-name}.eot?#iefix') format('embedded-opentype'),
|
15
15
|
font-url('#{$icon-font-path}#{$icon-font-name}.woff') format('woff'),
|
16
16
|
font-url('#{$icon-font-path}#{$icon-font-name}.ttf') format('truetype'),
|
17
|
-
font-url('#{$icon-font-path}#{$icon-font-name}.svg#
|
17
|
+
font-url('#{$icon-font-path}#{$icon-font-name}.svg#glyphicons_halflingsregular') format('svg');
|
18
18
|
}
|
19
19
|
|
20
20
|
// Catchall baseclass
|
@@ -27,6 +27,11 @@
|
|
27
27
|
font-weight: normal;
|
28
28
|
line-height: 1;
|
29
29
|
-webkit-font-smoothing: antialiased;
|
30
|
+
-moz-osx-font-smoothing: grayscale;
|
31
|
+
|
32
|
+
&:empty {
|
33
|
+
width: 1em;
|
34
|
+
}
|
30
35
|
}
|
31
36
|
|
32
37
|
// Individual icons
|
@@ -68,6 +73,7 @@
|
|
68
73
|
.glyphicon-repeat { &:before { content: "\e030"; } }
|
69
74
|
.glyphicon-refresh { &:before { content: "\e031"; } }
|
70
75
|
.glyphicon-list-alt { &:before { content: "\e032"; } }
|
76
|
+
.glyphicon-lock { &:before { content: "\e033"; } }
|
71
77
|
.glyphicon-flag { &:before { content: "\e034"; } }
|
72
78
|
.glyphicon-headphones { &:before { content: "\e035"; } }
|
73
79
|
.glyphicon-volume-off { &:before { content: "\e036"; } }
|
@@ -78,7 +84,9 @@
|
|
78
84
|
.glyphicon-tag { &:before { content: "\e041"; } }
|
79
85
|
.glyphicon-tags { &:before { content: "\e042"; } }
|
80
86
|
.glyphicon-book { &:before { content: "\e043"; } }
|
87
|
+
.glyphicon-bookmark { &:before { content: "\e044"; } }
|
81
88
|
.glyphicon-print { &:before { content: "\e045"; } }
|
89
|
+
.glyphicon-camera { &:before { content: "\e046"; } }
|
82
90
|
.glyphicon-font { &:before { content: "\e047"; } }
|
83
91
|
.glyphicon-bold { &:before { content: "\e048"; } }
|
84
92
|
.glyphicon-italic { &:before { content: "\e049"; } }
|
@@ -132,10 +140,12 @@
|
|
132
140
|
.glyphicon-exclamation-sign { &:before { content: "\e101"; } }
|
133
141
|
.glyphicon-gift { &:before { content: "\e102"; } }
|
134
142
|
.glyphicon-leaf { &:before { content: "\e103"; } }
|
143
|
+
.glyphicon-fire { &:before { content: "\e104"; } }
|
135
144
|
.glyphicon-eye-open { &:before { content: "\e105"; } }
|
136
145
|
.glyphicon-eye-close { &:before { content: "\e106"; } }
|
137
146
|
.glyphicon-warning-sign { &:before { content: "\e107"; } }
|
138
147
|
.glyphicon-plane { &:before { content: "\e108"; } }
|
148
|
+
.glyphicon-calendar { &:before { content: "\e109"; } }
|
139
149
|
.glyphicon-random { &:before { content: "\e110"; } }
|
140
150
|
.glyphicon-comment { &:before { content: "\e111"; } }
|
141
151
|
.glyphicon-magnet { &:before { content: "\e112"; } }
|
@@ -149,6 +159,7 @@
|
|
149
159
|
.glyphicon-resize-horizontal { &:before { content: "\e120"; } }
|
150
160
|
.glyphicon-hdd { &:before { content: "\e121"; } }
|
151
161
|
.glyphicon-bullhorn { &:before { content: "\e122"; } }
|
162
|
+
.glyphicon-bell { &:before { content: "\e123"; } }
|
152
163
|
.glyphicon-certificate { &:before { content: "\e124"; } }
|
153
164
|
.glyphicon-thumbs-up { &:before { content: "\e125"; } }
|
154
165
|
.glyphicon-thumbs-down { &:before { content: "\e126"; } }
|
@@ -161,13 +172,17 @@
|
|
161
172
|
.glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
|
162
173
|
.glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
|
163
174
|
.glyphicon-globe { &:before { content: "\e135"; } }
|
175
|
+
.glyphicon-wrench { &:before { content: "\e136"; } }
|
164
176
|
.glyphicon-tasks { &:before { content: "\e137"; } }
|
165
177
|
.glyphicon-filter { &:before { content: "\e138"; } }
|
178
|
+
.glyphicon-briefcase { &:before { content: "\e139"; } }
|
166
179
|
.glyphicon-fullscreen { &:before { content: "\e140"; } }
|
167
180
|
.glyphicon-dashboard { &:before { content: "\e141"; } }
|
181
|
+
.glyphicon-paperclip { &:before { content: "\e142"; } }
|
168
182
|
.glyphicon-heart-empty { &:before { content: "\e143"; } }
|
169
183
|
.glyphicon-link { &:before { content: "\e144"; } }
|
170
184
|
.glyphicon-phone { &:before { content: "\e145"; } }
|
185
|
+
.glyphicon-pushpin { &:before { content: "\e146"; } }
|
171
186
|
.glyphicon-usd { &:before { content: "\e148"; } }
|
172
187
|
.glyphicon-gbp { &:before { content: "\e149"; } }
|
173
188
|
.glyphicon-sort { &:before { content: "\e150"; } }
|
@@ -220,13 +235,3 @@
|
|
220
235
|
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
|
221
236
|
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
|
222
237
|
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
|
223
|
-
.glyphicon-briefcase { &:before { content: "\1f4bc"; } }
|
224
|
-
.glyphicon-calendar { &:before { content: "\1f4c5"; } }
|
225
|
-
.glyphicon-pushpin { &:before { content: "\1f4cc"; } }
|
226
|
-
.glyphicon-paperclip { &:before { content: "\1f4ce"; } }
|
227
|
-
.glyphicon-camera { &:before { content: "\1f4f7"; } }
|
228
|
-
.glyphicon-lock { &:before { content: "\1f512"; } }
|
229
|
-
.glyphicon-bell { &:before { content: "\1f514"; } }
|
230
|
-
.glyphicon-bookmark { &:before { content: "\1f516"; } }
|
231
|
-
.glyphicon-fire { &:before { content: "\1f525"; } }
|
232
|
-
.glyphicon-wrench { &:before { content: "\1f527"; } }
|