twitter-bootswatch-rails 3.2.0.0 → 3.3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +272 -213
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/javascripts/twitter/bootstrap/affix.js +44 -24
- data/app/assets/javascripts/twitter/bootstrap/alert.js +7 -5
- data/app/assets/javascripts/twitter/bootstrap/button.js +17 -11
- data/app/assets/javascripts/twitter/bootstrap/carousel.js +31 -17
- data/app/assets/javascripts/twitter/bootstrap/collapse.js +70 -29
- data/app/assets/javascripts/twitter/bootstrap/dropdown.js +21 -11
- data/app/assets/javascripts/twitter/bootstrap/modal.js +68 -24
- data/app/assets/javascripts/twitter/bootstrap/popover.js +4 -4
- data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +13 -8
- data/app/assets/javascripts/twitter/bootstrap/tab.js +42 -17
- data/app/assets/javascripts/twitter/bootstrap/tooltip.js +54 -39
- data/app/assets/javascripts/twitter/bootstrap/transition.js +2 -2
- data/lib/generators/bootswatch/import/import_generator.rb +0 -4
- data/lib/generators/bootswatch/install/templates/variables.less.tt +33 -22
- data/lib/twitter/bootswatch/rails/version.rb +1 -1
- data/vendor/toolkit/twitter/bootstrap/alerts.less +5 -0
- data/vendor/toolkit/twitter/bootstrap/badges.less +11 -1
- data/vendor/toolkit/twitter/bootstrap/button-groups.less +18 -15
- data/vendor/toolkit/twitter/bootstrap/buttons.less +8 -5
- data/vendor/toolkit/twitter/bootstrap/carousel.less +26 -0
- data/vendor/toolkit/twitter/bootstrap/close.less +1 -0
- data/vendor/toolkit/twitter/bootstrap/code.less +1 -0
- data/vendor/toolkit/twitter/bootstrap/component-animations.less +5 -2
- data/vendor/toolkit/twitter/bootstrap/dropdowns.less +5 -6
- data/vendor/toolkit/twitter/bootstrap/forms.less +70 -44
- data/vendor/toolkit/twitter/bootstrap/glyphicons.less +69 -1
- data/vendor/toolkit/twitter/bootstrap/jumbotron.less +7 -5
- data/vendor/toolkit/twitter/bootstrap/list-group.less +1 -8
- data/vendor/toolkit/twitter/bootstrap/media.less +35 -30
- data/vendor/toolkit/twitter/bootstrap/mixins/buttons.less +2 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/forms.less +5 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/grid-framework.less +2 -2
- data/vendor/toolkit/twitter/bootstrap/mixins/image.less +0 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/labels.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/vendor-prefixes.less +6 -3
- data/vendor/toolkit/twitter/bootstrap/modals.less +3 -5
- data/vendor/toolkit/twitter/bootstrap/navbar.less +31 -25
- data/vendor/toolkit/twitter/bootstrap/navs.less +3 -1
- data/vendor/toolkit/twitter/bootstrap/normalize.less +5 -3
- data/vendor/toolkit/twitter/bootstrap/pager.less +1 -2
- data/vendor/toolkit/twitter/bootstrap/pagination.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/panels.less +26 -4
- data/vendor/toolkit/twitter/bootstrap/popovers.less +6 -4
- data/vendor/toolkit/twitter/bootstrap/print.less +102 -96
- data/vendor/toolkit/twitter/bootstrap/progress-bars.less +1 -19
- data/vendor/toolkit/twitter/bootstrap/responsive-embed.less +2 -1
- data/vendor/toolkit/twitter/bootstrap/scaffolding.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/tables.less +14 -13
- data/vendor/toolkit/twitter/bootstrap/theme.less +26 -11
- data/vendor/toolkit/twitter/bootstrap/thumbnails.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/tooltip.less +12 -4
- data/vendor/toolkit/twitter/bootstrap/type.less +0 -11
- data/vendor/toolkit/twitter/bootstrap/utilities.less +0 -1
- data/vendor/toolkit/twitter/bootstrap/variables.less +33 -22
- metadata +33 -14
@@ -12,6 +12,7 @@
|
|
12
12
|
font-weight: @btn-font-weight;
|
13
13
|
text-align: center;
|
14
14
|
vertical-align: middle;
|
15
|
+
touch-action: manipulation;
|
15
16
|
cursor: pointer;
|
16
17
|
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
17
18
|
border: 1px solid transparent;
|
@@ -22,13 +23,15 @@
|
|
22
23
|
&,
|
23
24
|
&:active,
|
24
25
|
&.active {
|
25
|
-
&:focus
|
26
|
+
&:focus,
|
27
|
+
&.focus {
|
26
28
|
.tab-focus();
|
27
29
|
}
|
28
30
|
}
|
29
31
|
|
30
32
|
&:hover,
|
31
|
-
&:focus
|
33
|
+
&:focus,
|
34
|
+
&.focus {
|
32
35
|
color: @btn-default-color;
|
33
36
|
text-decoration: none;
|
34
37
|
}
|
@@ -43,7 +46,7 @@
|
|
43
46
|
&.disabled,
|
44
47
|
&[disabled],
|
45
48
|
fieldset[disabled] & {
|
46
|
-
cursor:
|
49
|
+
cursor: @cursor-disabled;
|
47
50
|
pointer-events: none; // Future-proof disabling of clicks
|
48
51
|
.opacity(.65);
|
49
52
|
.box-shadow(none);
|
@@ -85,11 +88,11 @@
|
|
85
88
|
.btn-link {
|
86
89
|
color: @link-color;
|
87
90
|
font-weight: normal;
|
88
|
-
cursor: pointer;
|
89
91
|
border-radius: 0;
|
90
92
|
|
91
93
|
&,
|
92
94
|
&:active,
|
95
|
+
&.active,
|
93
96
|
&[disabled],
|
94
97
|
fieldset[disabled] & {
|
95
98
|
background-color: transparent;
|
@@ -104,7 +107,7 @@
|
|
104
107
|
&:hover,
|
105
108
|
&:focus {
|
106
109
|
color: @link-hover-color;
|
107
|
-
text-decoration:
|
110
|
+
text-decoration: @link-hover-decoration;
|
108
111
|
background-color: transparent;
|
109
112
|
}
|
110
113
|
&[disabled],
|
@@ -24,6 +24,30 @@
|
|
24
24
|
&:extend(.img-responsive);
|
25
25
|
line-height: 1;
|
26
26
|
}
|
27
|
+
|
28
|
+
// WebKit CSS3 transforms for supported devices
|
29
|
+
@media all and (transform-3d), (-webkit-transform-3d) {
|
30
|
+
.transition-transform(~'0.6s ease-in-out');
|
31
|
+
.backface-visibility(~'hidden');
|
32
|
+
.perspective(1000);
|
33
|
+
|
34
|
+
&.next,
|
35
|
+
&.active.right {
|
36
|
+
.translate3d(100%, 0, 0);
|
37
|
+
left: 0;
|
38
|
+
}
|
39
|
+
&.prev,
|
40
|
+
&.active.left {
|
41
|
+
.translate3d(-100%, 0, 0);
|
42
|
+
left: 0;
|
43
|
+
}
|
44
|
+
&.next.left,
|
45
|
+
&.prev.right,
|
46
|
+
&.active {
|
47
|
+
.translate3d(0, 0, 0);
|
48
|
+
left: 0;
|
49
|
+
}
|
50
|
+
}
|
27
51
|
}
|
28
52
|
|
29
53
|
> .active,
|
@@ -124,6 +148,7 @@
|
|
124
148
|
width: 20px;
|
125
149
|
height: 20px;
|
126
150
|
margin-top: -10px;
|
151
|
+
line-height: 1;
|
127
152
|
font-family: serif;
|
128
153
|
}
|
129
154
|
|
@@ -171,6 +196,7 @@
|
|
171
196
|
// Internet Explorer 8-9 does not support clicks on elements without a set
|
172
197
|
// `background-color`. We cannot use `filter` since that's not viewed as a
|
173
198
|
// background color by the browser. Thus, a hack is needed.
|
199
|
+
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
|
174
200
|
//
|
175
201
|
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
|
176
202
|
// set alpha transparency for the best results possible.
|
@@ -23,6 +23,7 @@
|
|
23
23
|
// Additional properties for button version
|
24
24
|
// iOS requires the button element instead of an anchor tag.
|
25
25
|
// If you want the anchor version, it requires `href="#"`.
|
26
|
+
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
26
27
|
button& {
|
27
28
|
padding: 0;
|
28
29
|
cursor: pointer;
|
@@ -17,8 +17,9 @@
|
|
17
17
|
|
18
18
|
.collapse {
|
19
19
|
display: none;
|
20
|
+
visibility: hidden;
|
20
21
|
|
21
|
-
&.in { display: block; }
|
22
|
+
&.in { display: block; visibility: visible; }
|
22
23
|
tr&.in { display: table-row; }
|
23
24
|
tbody&.in { display: table-row-group; }
|
24
25
|
}
|
@@ -27,5 +28,7 @@
|
|
27
28
|
position: relative;
|
28
29
|
height: 0;
|
29
30
|
overflow: hidden;
|
30
|
-
.transition(height
|
31
|
+
.transition-property(~"height, visibility");
|
32
|
+
.transition-duration(.35s);
|
33
|
+
.transition-timing-function(ease);
|
31
34
|
}
|
@@ -16,6 +16,7 @@
|
|
16
16
|
}
|
17
17
|
|
18
18
|
// The dropdown wrapper (div)
|
19
|
+
.dropup,
|
19
20
|
.dropdown {
|
20
21
|
position: relative;
|
21
22
|
}
|
@@ -103,16 +104,15 @@
|
|
103
104
|
&:focus {
|
104
105
|
color: @dropdown-link-disabled-color;
|
105
106
|
}
|
106
|
-
|
107
|
-
// Nuke hover/focus effects
|
108
|
-
.dropdown-menu > .disabled > a {
|
107
|
+
|
108
|
+
// Nuke hover/focus effects
|
109
109
|
&:hover,
|
110
110
|
&:focus {
|
111
111
|
text-decoration: none;
|
112
112
|
background-color: transparent;
|
113
113
|
background-image: none; // Remove CSS gradient
|
114
114
|
.reset-filter();
|
115
|
-
cursor:
|
115
|
+
cursor: @cursor-disabled;
|
116
116
|
}
|
117
117
|
}
|
118
118
|
|
@@ -191,7 +191,7 @@
|
|
191
191
|
.dropdown-menu {
|
192
192
|
top: auto;
|
193
193
|
bottom: 100%;
|
194
|
-
margin-bottom:
|
194
|
+
margin-bottom: 2px;
|
195
195
|
}
|
196
196
|
}
|
197
197
|
|
@@ -212,4 +212,3 @@
|
|
212
212
|
}
|
213
213
|
}
|
214
214
|
}
|
215
|
-
|
@@ -123,7 +123,7 @@ output {
|
|
123
123
|
background-color: @input-bg;
|
124
124
|
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
125
125
|
border: 1px solid @input-border;
|
126
|
-
border-radius: @input-border-radius;
|
126
|
+
border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
|
127
127
|
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
128
128
|
.transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
|
129
129
|
|
@@ -141,9 +141,9 @@ output {
|
|
141
141
|
&[disabled],
|
142
142
|
&[readonly],
|
143
143
|
fieldset[disabled] & {
|
144
|
-
cursor:
|
144
|
+
cursor: @cursor-disabled;
|
145
145
|
background-color: @input-bg-disabled;
|
146
|
-
opacity: 1; // iOS fix for unreadable disabled content
|
146
|
+
opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
|
147
147
|
}
|
148
148
|
|
149
149
|
// Reset height for `textarea`s
|
@@ -168,24 +168,26 @@ input[type="search"] {
|
|
168
168
|
// Special styles for iOS temporal inputs
|
169
169
|
//
|
170
170
|
// In Mobile Safari, setting `display: block` on temporal inputs causes the
|
171
|
-
// text within the input to become vertically misaligned.
|
172
|
-
//
|
173
|
-
//
|
174
|
-
|
175
|
-
|
176
|
-
input[type="date"],
|
177
|
-
input[type="time"],
|
178
|
-
input[type="datetime-local"],
|
179
|
-
input[type="month"] {
|
180
|
-
|
181
|
-
|
182
|
-
|
171
|
+
// text within the input to become vertically misaligned. As a workaround, we
|
172
|
+
// set a pixel line-height that matches the given height of the input, but only
|
173
|
+
// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
|
174
|
+
|
175
|
+
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
176
|
+
input[type="date"],
|
177
|
+
input[type="time"],
|
178
|
+
input[type="datetime-local"],
|
179
|
+
input[type="month"] {
|
180
|
+
line-height: @input-height-base;
|
181
|
+
|
182
|
+
&.input-sm,
|
183
|
+
.input-group-sm & {
|
184
|
+
line-height: @input-height-small;
|
185
|
+
}
|
183
186
|
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
line-height: @input-height-large;
|
187
|
+
&.input-lg,
|
188
|
+
.input-group-lg & {
|
189
|
+
line-height: @input-height-large;
|
190
|
+
}
|
189
191
|
}
|
190
192
|
}
|
191
193
|
|
@@ -208,11 +210,11 @@ input[type="month"] {
|
|
208
210
|
.checkbox {
|
209
211
|
position: relative;
|
210
212
|
display: block;
|
211
|
-
min-height: @line-height-computed; // clear the floating input if there is no label text
|
212
213
|
margin-top: 10px;
|
213
214
|
margin-bottom: 10px;
|
214
215
|
|
215
216
|
label {
|
217
|
+
min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text
|
216
218
|
padding-left: 20px;
|
217
219
|
margin-bottom: 0;
|
218
220
|
font-weight: normal;
|
@@ -258,7 +260,7 @@ input[type="checkbox"] {
|
|
258
260
|
&[disabled],
|
259
261
|
&.disabled,
|
260
262
|
fieldset[disabled] & {
|
261
|
-
cursor:
|
263
|
+
cursor: @cursor-disabled;
|
262
264
|
}
|
263
265
|
}
|
264
266
|
// These classes are used directly on <label>s
|
@@ -266,7 +268,7 @@ input[type="checkbox"] {
|
|
266
268
|
.checkbox-inline {
|
267
269
|
&.disabled,
|
268
270
|
fieldset[disabled] & {
|
269
|
-
cursor:
|
271
|
+
cursor: @cursor-disabled;
|
270
272
|
}
|
271
273
|
}
|
272
274
|
// These classes are used on elements with <label> descendants
|
@@ -275,7 +277,7 @@ input[type="checkbox"] {
|
|
275
277
|
&.disabled,
|
276
278
|
fieldset[disabled] & {
|
277
279
|
label {
|
278
|
-
cursor:
|
280
|
+
cursor: @cursor-disabled;
|
279
281
|
}
|
280
282
|
}
|
281
283
|
}
|
@@ -305,13 +307,38 @@ input[type="checkbox"] {
|
|
305
307
|
//
|
306
308
|
// Build on `.form-control` with modifier classes to decrease or increase the
|
307
309
|
// height and font-size of form controls.
|
310
|
+
//
|
311
|
+
// The `.form-group-* form-control` variations are sadly duplicated to avoid the
|
312
|
+
// issue documented in https://github.com/twbs/bootstrap/issues/15074.
|
308
313
|
|
309
314
|
.input-sm {
|
310
|
-
.input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
|
315
|
+
.input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);
|
316
|
+
}
|
317
|
+
.form-group-sm {
|
318
|
+
.form-control {
|
319
|
+
.input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);
|
320
|
+
}
|
321
|
+
.form-control-static {
|
322
|
+
height: @input-height-small;
|
323
|
+
padding: @padding-small-vertical @padding-small-horizontal;
|
324
|
+
font-size: @font-size-small;
|
325
|
+
line-height: @line-height-small;
|
326
|
+
}
|
311
327
|
}
|
312
328
|
|
313
329
|
.input-lg {
|
314
|
-
.input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
|
330
|
+
.input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);
|
331
|
+
}
|
332
|
+
.form-group-lg {
|
333
|
+
.form-control {
|
334
|
+
.input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);
|
335
|
+
}
|
336
|
+
.form-control-static {
|
337
|
+
height: @input-height-large;
|
338
|
+
padding: @padding-large-vertical @padding-large-horizontal;
|
339
|
+
font-size: @font-size-large;
|
340
|
+
line-height: @line-height-large;
|
341
|
+
}
|
315
342
|
}
|
316
343
|
|
317
344
|
|
@@ -331,7 +358,7 @@ input[type="checkbox"] {
|
|
331
358
|
// Feedback icon (requires .glyphicon classes)
|
332
359
|
.form-control-feedback {
|
333
360
|
position: absolute;
|
334
|
-
top:
|
361
|
+
top: 0;
|
335
362
|
right: 0;
|
336
363
|
z-index: 2; // Ensure icon is above input groups
|
337
364
|
display: block;
|
@@ -339,6 +366,7 @@ input[type="checkbox"] {
|
|
339
366
|
height: @input-height-base;
|
340
367
|
line-height: @input-height-base;
|
341
368
|
text-align: center;
|
369
|
+
pointer-events: none;
|
342
370
|
}
|
343
371
|
.input-lg + .form-control-feedback {
|
344
372
|
width: @input-height-large;
|
@@ -362,10 +390,15 @@ input[type="checkbox"] {
|
|
362
390
|
.form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);
|
363
391
|
}
|
364
392
|
|
393
|
+
// Reposition feedback icon if input has visible label above
|
394
|
+
.has-feedback label {
|
365
395
|
|
366
|
-
|
367
|
-
|
368
|
-
|
396
|
+
& ~ .form-control-feedback {
|
397
|
+
top: (@line-height-computed + 5); // Height of the `label` and its margin
|
398
|
+
}
|
399
|
+
&.sr-only ~ .form-control-feedback {
|
400
|
+
top: 0;
|
401
|
+
}
|
369
402
|
}
|
370
403
|
|
371
404
|
|
@@ -382,7 +415,6 @@ input[type="checkbox"] {
|
|
382
415
|
}
|
383
416
|
|
384
417
|
|
385
|
-
|
386
418
|
// Inline forms
|
387
419
|
//
|
388
420
|
// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
|
@@ -412,6 +444,11 @@ input[type="checkbox"] {
|
|
412
444
|
vertical-align: middle;
|
413
445
|
}
|
414
446
|
|
447
|
+
// Make static controls behave like regular ones
|
448
|
+
.form-control-static {
|
449
|
+
display: inline-block;
|
450
|
+
}
|
451
|
+
|
415
452
|
.input-group {
|
416
453
|
display: inline-table;
|
417
454
|
vertical-align: middle;
|
@@ -434,8 +471,7 @@ input[type="checkbox"] {
|
|
434
471
|
}
|
435
472
|
|
436
473
|
// Remove default margin on radios/checkboxes that were used for stacking, and
|
437
|
-
// then undo the floating of radios and checkboxes to match
|
438
|
-
// a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
|
474
|
+
// then undo the floating of radios and checkboxes to match.
|
439
475
|
.radio,
|
440
476
|
.checkbox {
|
441
477
|
display: inline-block;
|
@@ -453,10 +489,7 @@ input[type="checkbox"] {
|
|
453
489
|
margin-left: 0;
|
454
490
|
}
|
455
491
|
|
456
|
-
//
|
457
|
-
//
|
458
|
-
// Reposition the icon because it's now within a grid column and columns have
|
459
|
-
// `position: relative;` on them. Also accounts for the grid gutter padding.
|
492
|
+
// Re-override the feedback icon.
|
460
493
|
.has-feedback .form-control-feedback {
|
461
494
|
top: 0;
|
462
495
|
}
|
@@ -509,7 +542,6 @@ input[type="checkbox"] {
|
|
509
542
|
// Reposition the icon because it's now within a grid column and columns have
|
510
543
|
// `position: relative;` on them. Also accounts for the grid gutter padding.
|
511
544
|
.has-feedback .form-control-feedback {
|
512
|
-
top: 0;
|
513
545
|
right: (@grid-gutter-width / 2);
|
514
546
|
}
|
515
547
|
|
@@ -523,9 +555,6 @@ input[type="checkbox"] {
|
|
523
555
|
padding-top: ((@padding-large-vertical * @line-height-large) + 1);
|
524
556
|
}
|
525
557
|
}
|
526
|
-
.form-control {
|
527
|
-
&:extend(.input-lg);
|
528
|
-
}
|
529
558
|
}
|
530
559
|
.form-group-sm {
|
531
560
|
@media (min-width: @screen-sm-min) {
|
@@ -533,8 +562,5 @@ input[type="checkbox"] {
|
|
533
562
|
padding-top: (@padding-small-vertical + 1);
|
534
563
|
}
|
535
564
|
}
|
536
|
-
.form-control {
|
537
|
-
&:extend(.input-sm);
|
538
|
-
}
|
539
565
|
}
|
540
566
|
}
|
@@ -12,6 +12,7 @@
|
|
12
12
|
font-family: 'Glyphicons Halflings';
|
13
13
|
src: asset-url('@{icon-font-path}@{icon-font-name}.eot');
|
14
14
|
src: asset-url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
|
15
|
+
asset-url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
|
15
16
|
asset-url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
|
16
17
|
asset-url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
|
17
18
|
asset-url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
|
@@ -33,7 +34,8 @@
|
|
33
34
|
// Individual icons
|
34
35
|
.glyphicon-asterisk { &:before { content: "\2a"; } }
|
35
36
|
.glyphicon-plus { &:before { content: "\2b"; } }
|
36
|
-
.glyphicon-euro
|
37
|
+
.glyphicon-euro,
|
38
|
+
.glyphicon-eur { &:before { content: "\20ac"; } }
|
37
39
|
.glyphicon-minus { &:before { content: "\2212"; } }
|
38
40
|
.glyphicon-cloud { &:before { content: "\2601"; } }
|
39
41
|
.glyphicon-envelope { &:before { content: "\2709"; } }
|
@@ -231,3 +233,69 @@
|
|
231
233
|
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
|
232
234
|
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
|
233
235
|
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
|
236
|
+
.glyphicon-cd { &:before { content: "\e201"; } }
|
237
|
+
.glyphicon-save-file { &:before { content: "\e202"; } }
|
238
|
+
.glyphicon-open-file { &:before { content: "\e203"; } }
|
239
|
+
.glyphicon-level-up { &:before { content: "\e204"; } }
|
240
|
+
.glyphicon-copy { &:before { content: "\e205"; } }
|
241
|
+
.glyphicon-paste { &:before { content: "\e206"; } }
|
242
|
+
// The following 2 Glyphicons are omitted for the time being because
|
243
|
+
// they currently use Unicode codepoints that are outside the
|
244
|
+
// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
|
245
|
+
// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
|
246
|
+
// Notably, the bug affects some older versions of the Android Browser.
|
247
|
+
// More info: https://github.com/twbs/bootstrap/issues/10106
|
248
|
+
// .glyphicon-door { &:before { content: "\1f6aa"; } }
|
249
|
+
// .glyphicon-key { &:before { content: "\1f511"; } }
|
250
|
+
.glyphicon-alert { &:before { content: "\e209"; } }
|
251
|
+
.glyphicon-equalizer { &:before { content: "\e210"; } }
|
252
|
+
.glyphicon-king { &:before { content: "\e211"; } }
|
253
|
+
.glyphicon-queen { &:before { content: "\e212"; } }
|
254
|
+
.glyphicon-pawn { &:before { content: "\e213"; } }
|
255
|
+
.glyphicon-bishop { &:before { content: "\e214"; } }
|
256
|
+
.glyphicon-knight { &:before { content: "\e215"; } }
|
257
|
+
.glyphicon-baby-formula { &:before { content: "\e216"; } }
|
258
|
+
.glyphicon-tent { &:before { content: "\26fa"; } }
|
259
|
+
.glyphicon-blackboard { &:before { content: "\e218"; } }
|
260
|
+
.glyphicon-bed { &:before { content: "\e219"; } }
|
261
|
+
.glyphicon-apple { &:before { content: "\f8ff"; } }
|
262
|
+
.glyphicon-erase { &:before { content: "\e221"; } }
|
263
|
+
.glyphicon-hourglass { &:before { content: "\231b"; } }
|
264
|
+
.glyphicon-lamp { &:before { content: "\e223"; } }
|
265
|
+
.glyphicon-duplicate { &:before { content: "\e224"; } }
|
266
|
+
.glyphicon-piggy-bank { &:before { content: "\e225"; } }
|
267
|
+
.glyphicon-scissors { &:before { content: "\e226"; } }
|
268
|
+
.glyphicon-bitcoin { &:before { content: "\e227"; } }
|
269
|
+
.glyphicon-yen { &:before { content: "\00a5"; } }
|
270
|
+
.glyphicon-ruble { &:before { content: "\20bd"; } }
|
271
|
+
.glyphicon-scale { &:before { content: "\e230"; } }
|
272
|
+
.glyphicon-ice-lolly { &:before { content: "\e231"; } }
|
273
|
+
.glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } }
|
274
|
+
.glyphicon-education { &:before { content: "\e233"; } }
|
275
|
+
.glyphicon-option-horizontal { &:before { content: "\e234"; } }
|
276
|
+
.glyphicon-option-vertical { &:before { content: "\e235"; } }
|
277
|
+
.glyphicon-menu-hamburger { &:before { content: "\e236"; } }
|
278
|
+
.glyphicon-modal-window { &:before { content: "\e237"; } }
|
279
|
+
.glyphicon-oil { &:before { content: "\e238"; } }
|
280
|
+
.glyphicon-grain { &:before { content: "\e239"; } }
|
281
|
+
.glyphicon-sunglasses { &:before { content: "\e240"; } }
|
282
|
+
.glyphicon-text-size { &:before { content: "\e241"; } }
|
283
|
+
.glyphicon-text-color { &:before { content: "\e242"; } }
|
284
|
+
.glyphicon-text-background { &:before { content: "\e243"; } }
|
285
|
+
.glyphicon-object-align-top { &:before { content: "\e244"; } }
|
286
|
+
.glyphicon-object-align-bottom { &:before { content: "\e245"; } }
|
287
|
+
.glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
|
288
|
+
.glyphicon-object-align-left { &:before { content: "\e247"; } }
|
289
|
+
.glyphicon-object-align-vertical { &:before { content: "\e248"; } }
|
290
|
+
.glyphicon-object-align-right { &:before { content: "\e249"; } }
|
291
|
+
.glyphicon-triangle-right { &:before { content: "\e250"; } }
|
292
|
+
.glyphicon-triangle-left { &:before { content: "\e251"; } }
|
293
|
+
.glyphicon-triangle-bottom { &:before { content: "\e252"; } }
|
294
|
+
.glyphicon-triangle-top { &:before { content: "\e253"; } }
|
295
|
+
.glyphicon-console { &:before { content: "\e254"; } }
|
296
|
+
.glyphicon-superscript { &:before { content: "\e255"; } }
|
297
|
+
.glyphicon-subscript { &:before { content: "\e256"; } }
|
298
|
+
.glyphicon-menu-left { &:before { content: "\e257"; } }
|
299
|
+
.glyphicon-menu-right { &:before { content: "\e258"; } }
|
300
|
+
.glyphicon-menu-down { &:before { content: "\e259"; } }
|
301
|
+
.glyphicon-menu-up { &:before { content: "\e260"; } }
|