bootstrap-sass-rails 3.0.0.0.rc2 → 3.0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. data/README.md +0 -20
  2. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
  3. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +228 -0
  4. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  5. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
  6. data/app/assets/javascripts/twitter/bootstrap/dropdown.js +3 -3
  7. data/app/assets/javascripts/twitter/bootstrap/modal.js +5 -3
  8. data/app/assets/javascripts/twitter/bootstrap/tooltip.js +9 -5
  9. data/app/assets/javascripts/twitter/bootstrap/transition.js +1 -1
  10. data/app/assets/stylesheets/twitter/bootstrap.css.scss +17 -21
  11. data/app/assets/stylesheets/twitter/bootstrap/_alerts.scss +7 -11
  12. data/app/assets/stylesheets/twitter/bootstrap/_button-groups.scss +14 -10
  13. data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +9 -20
  14. data/app/assets/stylesheets/twitter/bootstrap/_carousel.scss +7 -2
  15. data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +23 -5
  16. data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +36 -15
  17. data/app/assets/stylesheets/twitter/bootstrap/_glyphicons.scss +209 -179
  18. data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +9 -3
  19. data/app/assets/stylesheets/twitter/bootstrap/_input-groups.scss +1 -1
  20. data/app/assets/stylesheets/twitter/bootstrap/_jumbotron.scss +16 -5
  21. data/app/assets/stylesheets/twitter/bootstrap/_labels.scss +9 -5
  22. data/app/assets/stylesheets/twitter/bootstrap/_list-group.scss +5 -5
  23. data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +86 -59
  24. data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +8 -0
  25. data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +253 -191
  26. data/app/assets/stylesheets/twitter/bootstrap/_navs.scss +13 -12
  27. data/app/assets/stylesheets/twitter/bootstrap/_pager.scss +1 -1
  28. data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +20 -9
  29. data/app/assets/stylesheets/twitter/bootstrap/_panels.scss +28 -8
  30. data/app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +6 -10
  31. data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +69 -45
  32. data/app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +37 -18
  33. data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +84 -59
  34. data/app/assets/stylesheets/twitter/bootstrap/_theme.scss +232 -0
  35. data/app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +8 -19
  36. data/app/assets/stylesheets/twitter/bootstrap/_type.scss +2 -2
  37. data/app/assets/stylesheets/twitter/bootstrap/_variables.scss +63 -50
  38. data/lib/bootstrap/sass/rails/version.rb +1 -1
  39. data/test/cases/usage_css_spec.rb +6 -4
  40. metadata +14 -11
  41. data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.eot +0 -0
  42. data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.otf +0 -0
  43. data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.svg +0 -175
  44. data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.ttf +0 -0
  45. data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.woff +0 -0
@@ -18,16 +18,18 @@
18
18
  border-top-color: #fff;
19
19
  }
20
20
  }
21
- .dropup .caret {
22
- .btn-default & {
21
+ .dropup {
22
+ & .btn-default .caret {
23
23
  border-bottom-color: $btn-default-color;
24
24
  }
25
- .btn-primary &,
26
- .btn-success &,
27
- .btn-warning &,
28
- .btn-danger &,
29
- .btn-info & {
30
- border-bottom-color: #fff;
25
+ .btn-primary,
26
+ .btn-success,
27
+ .btn-warning,
28
+ .btn-danger,
29
+ .btn-info {
30
+ .caret {
31
+ border-bottom-color: #fff;
32
+ }
31
33
  }
32
34
  }
33
35
 
@@ -157,11 +159,12 @@
157
159
  }
158
160
  // Carets in other button sizes
159
161
  .btn-lg .caret {
160
- border-width: $caret-width-large;
162
+ border-width: $caret-width-large $caret-width-large 0;
163
+ border-bottom-width: 0;
161
164
  }
162
165
  // Upside down carets for .dropup
163
166
  .dropup .btn-lg .caret {
164
- border-bottom-width: $caret-width-large;
167
+ border-width: 0 $caret-width-large $caret-width-large;
165
168
  }
166
169
 
167
170
 
@@ -229,6 +232,7 @@
229
232
  display: table;
230
233
  width: 100%;
231
234
  table-layout: fixed;
235
+ border-collapse: separate;
232
236
  .btn {
233
237
  float: none;
234
238
  display: table-cell;
@@ -35,13 +35,14 @@
35
35
  &:active,
36
36
  &.active {
37
37
  outline: 0;
38
+ background-image: none;
38
39
  @include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
39
40
  }
40
41
 
41
42
  &.disabled,
42
43
  &[disabled],
43
44
  fieldset[disabled] & {
44
- cursor: default;
45
+ cursor: not-allowed;
45
46
  pointer-events: none; // Future-proof disabling of clicks
46
47
  @include opacity(.65);
47
48
  @include box-shadow(none);
@@ -53,28 +54,16 @@
53
54
  // Alternate buttons
54
55
  // --------------------------------------------------
55
56
 
56
- .btn-default {
57
- @include button-variant($btn-default-color, $btn-default-bg, $btn-default-border);
58
- }
59
- .btn-primary {
60
- @include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
61
- }
57
+ @include button-variant('.btn-default', $btn-default-color, $btn-default-bg, $btn-default-border);
58
+ @include button-variant('.btn-primary', $btn-primary-color, $btn-primary-bg, $btn-primary-border);
62
59
  // Warning appears as orange
63
- .btn-warning {
64
- @include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border);
65
- }
60
+ @include button-variant('.btn-warning', $btn-warning-color, $btn-warning-bg, $btn-warning-border);
66
61
  // Danger and error appear as red
67
- .btn-danger {
68
- @include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border);
69
- }
62
+ @include button-variant('.btn-danger', $btn-danger-color, $btn-danger-bg, $btn-danger-border);
70
63
  // Success appears as green
71
- .btn-success {
72
- @include button-variant($btn-success-color, $btn-success-bg, $btn-success-border);
73
- }
64
+ @include button-variant('.btn-success', $btn-success-color, $btn-success-bg, $btn-success-border);
74
65
  // Info appears as blue-green
75
- .btn-info {
76
- @include button-variant($btn-info-color, $btn-info-bg, $btn-info-border);
77
- }
66
+ @include button-variant('.btn-info', $btn-info-color, $btn-info-bg, $btn-info-border);
78
67
 
79
68
 
80
69
  // Link buttons
@@ -130,7 +119,7 @@
130
119
  @include button-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small);
131
120
  }
132
121
  .btn-xs {
133
- padding: 3px 5px;
122
+ padding: 1px 5px;
134
123
  }
135
124
 
136
125
 
@@ -21,7 +21,7 @@
21
21
  // Account for jankitude on images
22
22
  > img,
23
23
  > a > img {
24
- @extend .img-responsive;
24
+ @include img-responsive();
25
25
  line-height: 1;
26
26
  }
27
27
  }
@@ -98,12 +98,17 @@
98
98
 
99
99
  // Toggles
100
100
  .icon-prev,
101
- .icon-next {
101
+ .icon-next,
102
+ .glyphicon-chevron-left,
103
+ .glyphicon-chevron-right {
102
104
  position: absolute;
103
105
  top: 50%;
104
106
  left: 50%;
105
107
  z-index: 5;
106
108
  display: inline-block;
109
+ }
110
+ .icon-prev,
111
+ .icon-next {
107
112
  width: 20px;
108
113
  height: 20px;
109
114
  margin-top: -10px;
@@ -13,6 +13,9 @@
13
13
  border-top: $caret-width-base solid $dropdown-caret-color;
14
14
  border-right: $caret-width-base solid transparent;
15
15
  border-left: $caret-width-base solid transparent;
16
+ // Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once fixed,
17
+ // we can just straight up remove this.
18
+ border-bottom: 0 dotted;
16
19
  content: "";
17
20
  }
18
21
 
@@ -75,8 +78,7 @@
75
78
  &:focus {
76
79
  text-decoration: none;
77
80
  color: $dropdown-link-hover-color;
78
- @include gradient-vertical($start-color: $dropdown-link-hover-bg, $end-color: darken($dropdown-link-hover-bg, 5%));
79
- background-color: darken($dropdown-link-hover-bg, 5%);
81
+ background-color: $dropdown-link-hover-bg;
80
82
  }
81
83
  }
82
84
 
@@ -88,8 +90,7 @@
88
90
  color: $dropdown-link-active-color;
89
91
  text-decoration: none;
90
92
  outline: 0;
91
- @include gradient-vertical($start-color: $dropdown-link-active-bg, $end-color: darken($dropdown-link-active-bg, 5%));
92
- background-color: darken($dropdown-link-active-bg, 5%);
93
+ background-color: $dropdown-link-active-bg;
93
94
  }
94
95
  }
95
96
 
@@ -163,7 +164,9 @@
163
164
  .navbar-fixed-bottom .dropdown {
164
165
  // Reverse the caret
165
166
  .caret {
166
- border-top: 0;
167
+ // Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once this
168
+ // gets fixed, restore `border-top: 0;`.
169
+ border-top: 0 dotted;
167
170
  border-bottom: 4px solid $dropdown-caret-color;
168
171
  content: "";
169
172
  }
@@ -174,3 +177,18 @@
174
177
  margin-bottom: 1px;
175
178
  }
176
179
  }
180
+
181
+
182
+ // Component alignment
183
+ //
184
+ // Reiterate per navbar.less and the modified component alignment there.
185
+
186
+ @media (min-width: $grid-float-breakpoint) {
187
+ .navbar-right {
188
+ .dropdown-menu {
189
+ right: 0;
190
+ left: auto;
191
+ }
192
+ }
193
+ }
194
+
@@ -133,9 +133,9 @@ input[type="number"] {
133
133
  @include form-control-focus();
134
134
 
135
135
  // Disabled and read-only inputs
136
- // Note: HTML5 says that inputs under a fieldset > legend:first-child won't be
137
- // disabled if the fieldset is disabled. Due to implementation difficulty,
138
- // we don't honor that edge case; we style them as disabled anyway.
136
+ // Note: HTML5 says that controls under a fieldset > legend:first-child won't
137
+ // be disabled if the fieldset is disabled. Due to implementation difficulty,
138
+ // we don't honor that edge case; we style them as disabled anyway.
139
139
  &[disabled],
140
140
  &[readonly],
141
141
  fieldset[disabled] & {
@@ -207,6 +207,20 @@ textarea.form-control {
207
207
  margin-left: 10px; // space out consecutive inline controls
208
208
  }
209
209
 
210
+ // Apply same disabled cursor tweak as for inputs
211
+ //
212
+ // Note: Neither radios nor checkboxes can be readonly.
213
+ input[type="radio"],
214
+ input[type="checkbox"],
215
+ .radio,
216
+ .radio-inline,
217
+ .checkbox,
218
+ .checkbox-inline {
219
+ &[disabled],
220
+ fieldset[disabled] & {
221
+ cursor: not-allowed;
222
+ }
223
+ }
210
224
 
211
225
  // Form control sizing
212
226
  @include input-size('.input-sm', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small);
@@ -239,7 +253,7 @@ textarea.form-control {
239
253
 
240
254
  .form-control-static {
241
255
  margin-bottom: 0; // Remove default margin from `p`
242
- padding-top: $padding-base-vertical;
256
+ padding-top: ($padding-base-vertical + 1);
243
257
  }
244
258
 
245
259
 
@@ -308,21 +322,28 @@ textarea.form-control {
308
322
  // Horizontal forms are built on grid classes and allow you to create forms with
309
323
  // labels on the left and inputs on the right.
310
324
 
311
- .form-horizontal .control-label,
312
- .form-horizontal .radio-inline,
313
- .form-horizontal .checkbox-inline {
314
- padding-top: $padding-base-vertical;
315
- }
316
-
317
325
  .form-horizontal {
326
+
327
+ // Consistent vertical alignment of labels, radios, and checkboxes
328
+ .control-label,
329
+ .radio,
330
+ .checkbox,
331
+ .radio-inline,
332
+ .checkbox-inline {
333
+ margin-top: 0;
334
+ margin-bottom: 0;
335
+ padding-top: ($padding-base-vertical + 1); // Default padding plus a border
336
+ }
337
+
338
+ // Make form groups behave like rows
318
339
  .form-group {
319
340
  @include make-row();
320
341
  }
321
- }
322
342
 
323
- // Only right align form labels here when the columns stop stacking
324
- @media (min-width: $screen-tablet) {
325
- .form-horizontal .control-label {
326
- text-align: right;
343
+ // Only right align form labels here when the columns stop stacking
344
+ @media (min-width: $screen-tablet) {
345
+ .control-label {
346
+ text-align: right;
347
+ }
327
348
  }
328
349
  }
@@ -1,36 +1,27 @@
1
1
  //
2
2
  // Glyphicons for Bootstrap
3
- // -----------------------------------------------------------------------------
4
-
5
- // About
6
- //
7
- // Glyphicons font-based icons require you to include all relevant font files,
8
- // found in this project under the /fonts/ directory. Files are referenced relative
9
- // to the compiled CSS.
10
- //
11
- // Basic usage
12
3
  //
13
4
  // Since icons are fonts, they can be placed anywhere text is placed and are
14
5
  // thus automatically sized to match the surrounding child. To use, create an
15
6
  // inline element with the appropriate classes, like so:
16
7
  //
17
8
  // <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
18
- //
19
- // Use them in links, buttons, headings, and more.
20
-
21
9
 
22
10
  // Import the fonts
23
11
  @font-face {
24
12
  font-family: 'Glyphicons Halflings';
25
- src: font-url('twitter/bootstrap/glyphiconshalflings-regular.eot');
26
- src: font-url('twitter/bootstrap/glyphiconshalflings-regular.eot?#iefix') format('embedded-opentype'),
27
- font-url('twitter/bootstrap/glyphiconshalflings-regular.woff') format('woff'),
28
- font-url('twitter/bootstrap/glyphiconshalflings-regular.ttf') format('truetype'),
29
- font-url('twitter/bootstrap/glyphiconshalflings-regular.svg#glyphicons_halflingsregular') format('svg');
13
+ src: font-url("#{$icon-font-path}#{$icon-font-name}.eot");
14
+ src: font-url("#{$icon-font-path}#{$icon-font-name}.eot?#iefix") format('embedded-opentype'),
15
+ font-url("#{$icon-font-path}#{$icon-font-name}.woff") format('woff'),
16
+ font-url("#{$icon-font-path}#{$icon-font-name}.ttf") format('truetype'),
17
+ font-url("#{$icon-font-path}#{$icon-font-name}.svg#glyphicons-halflingsregular") format('svg');
30
18
  }
31
19
 
32
20
  // Catchall baseclass
33
- .glyphicon:before {
21
+ .glyphicon {
22
+ position: relative;
23
+ top: 1px;
24
+ display: inline-block;
34
25
  font-family: 'Glyphicons Halflings';
35
26
  font-style: normal;
36
27
  font-weight: normal;
@@ -39,164 +30,203 @@
39
30
  }
40
31
 
41
32
  // Individual icons
42
- .glyphicon-glass:before { content: "\e001"; }
43
- .glyphicon-music:before { content: "\e002"; }
44
- .glyphicon-search:before { content: "\e003"; }
45
- .glyphicon-envelope:before { content: "\2709"; }
46
- .glyphicon-heart:before { content: "\e005"; }
47
- .glyphicon-star:before { content: "\e006"; }
48
- .glyphicon-star-empty:before { content: "\e007"; }
49
- .glyphicon-user:before { content: "\e008"; }
50
- .glyphicon-film:before { content: "\e009"; }
51
- .glyphicon-th-large:before { content: "\e010"; }
52
- .glyphicon-th:before { content: "\e011"; }
53
- .glyphicon-th-list:before { content: "\e012"; }
54
- .glyphicon-ok:before { content: "\e013"; }
55
- .glyphicon-remove:before { content: "\e014"; }
56
- .glyphicon-zoom-in:before { content: "\e015"; }
57
- .glyphicon-zoom-out:before { content: "\e016"; }
58
- .glyphicon-off:before { content: "\e017"; }
59
- .glyphicon-signal:before { content: "\e018"; }
60
- .glyphicon-cog:before { content: "\e019"; }
61
- .glyphicon-trash:before { content: "\e020"; }
62
- .glyphicon-home:before { content: "\e021"; }
63
- .glyphicon-file:before { content: "\e022"; }
64
- .glyphicon-time:before { content: "\e023"; }
65
- .glyphicon-road:before { content: "\e024"; }
66
- .glyphicon-download-alt:before { content: "\e025"; }
67
- .glyphicon-download:before { content: "\e026"; }
68
- .glyphicon-upload:before { content: "\e027"; }
69
- .glyphicon-inbox:before { content: "\e028"; }
70
- .glyphicon-play-circle:before { content: "\e029"; }
71
- .glyphicon-repeat:before { content: "\e030"; }
72
- .glyphicon-refresh:before { content: "\e031"; }
73
- .glyphicon-list-alt:before { content: "\e032"; }
74
- .glyphicon-lock:before { content: "\e033"; }
75
- .glyphicon-flag:before { content: "\e034"; }
76
- .glyphicon-headphones:before { content: "\e035"; }
77
- .glyphicon-volume-off:before { content: "\e036"; }
78
- .glyphicon-volume-down:before { content: "\e037"; }
79
- .glyphicon-volume-up:before { content: "\e038"; }
80
- .glyphicon-qrcode:before { content: "\e039"; }
81
- .glyphicon-barcode:before { content: "\e040"; }
82
- .glyphicon-tag:before { content: "\e041"; }
83
- .glyphicon-tags:before { content: "\e042"; }
84
- .glyphicon-book:before { content: "\e043"; }
85
- .glyphicon-bookmark:before { content: "\e044"; }
86
- .glyphicon-print:before { content: "\e045"; }
87
- .glyphicon-camera:before { content: "\e046"; }
88
- .glyphicon-font:before { content: "\e047"; }
89
- .glyphicon-bold:before { content: "\e048"; }
90
- .glyphicon-italic:before { content: "\e049"; }
91
- .glyphicon-text-height:before { content: "\e050"; }
92
- .glyphicon-text-width:before { content: "\e051"; }
93
- .glyphicon-align-left:before { content: "\e052"; }
94
- .glyphicon-align-center:before { content: "\e053"; }
95
- .glyphicon-align-right:before { content: "\e054"; }
96
- .glyphicon-align-justify:before { content: "\e055"; }
97
- .glyphicon-list:before { content: "\e056"; }
98
- .glyphicon-indent-left:before { content: "\e057"; }
99
- .glyphicon-indent-right:before { content: "\e058"; }
100
- .glyphicon-facetime-video:before { content: "\e059"; }
101
- .glyphicon-picture:before { content: "\e060"; }
102
- .glyphicon-pencil:before { content: "\270f"; }
103
- .glyphicon-map-marker:before { content: "\e062"; }
104
- .glyphicon-adjust:before { content: "\e063"; }
105
- .glyphicon-tint:before { content: "\e064"; }
106
- .glyphicon-edit:before { content: "\e065"; }
107
- .glyphicon-share:before { content: "\e066"; }
108
- .glyphicon-check:before { content: "\e067"; }
109
- .glyphicon-move:before { content: "\e068"; }
110
- .glyphicon-step-backward:before { content: "\e069"; }
111
- .glyphicon-fast-backward:before { content: "\e070"; }
112
- .glyphicon-backward:before { content: "\e071"; }
113
- .glyphicon-play:before { content: "\e072"; }
114
- .glyphicon-pause:before { content: "\e073"; }
115
- .glyphicon-stop:before { content: "\e074"; }
116
- .glyphicon-forward:before { content: "\e075"; }
117
- .glyphicon-fast-forward:before { content: "\e076"; }
118
- .glyphicon-step-forward:before { content: "\e077"; }
119
- .glyphicon-eject:before { content: "\e078"; }
120
- .glyphicon-chevron-left:before { content: "\e079"; }
121
- .glyphicon-chevron-right:before { content: "\e080"; }
122
- .glyphicon-plus-sign:before { content: "\e081"; }
123
- .glyphicon-minus-sign:before { content: "\e082"; }
124
- .glyphicon-remove-sign:before { content: "\e083"; }
125
- .glyphicon-ok-sign:before { content: "\e084"; }
126
- .glyphicon-question-sign:before { content: "\e085"; }
127
- .glyphicon-info-sign:before { content: "\e086"; }
128
- .glyphicon-screenshot:before { content: "\e087"; }
129
- .glyphicon-remove-circle:before { content: "\e088"; }
130
- .glyphicon-ok-circle:before { content: "\e089"; }
131
- .glyphicon-ban-circle:before { content: "\e090"; }
132
- .glyphicon-arrow-left:before { content: "\e091"; }
133
- .glyphicon-arrow-right:before { content: "\e092"; }
134
- .glyphicon-arrow-up:before { content: "\e093"; }
135
- .glyphicon-arrow-down:before { content: "\e094"; }
136
- .glyphicon-share-alt:before { content: "\e095"; }
137
- .glyphicon-resize-full:before { content: "\e096"; }
138
- .glyphicon-resize-small:before { content: "\e097"; }
139
- .glyphicon-plus:before { content: "\002b"; }
140
- .glyphicon-minus:before { content: "\2212"; }
141
- .glyphicon-asterisk:before { content: "\002a"; }
142
- .glyphicon-exclamation-sign:before { content: "\e101"; }
143
- .glyphicon-gift:before { content: "\e102"; }
144
- .glyphicon-leaf:before { content: "\e103"; }
145
- .glyphicon-fire:before { content: "\e104"; }
146
- .glyphicon-eye-open:before { content: "\e105"; }
147
- .glyphicon-eye-close:before { content: "\e106"; }
148
- .glyphicon-warning-sign:before { content: "\e107"; }
149
- .glyphicon-plane:before { content: "\e108"; }
150
- .glyphicon-calendar:before { content: "\e109"; }
151
- .glyphicon-random:before { content: "\e110"; }
152
- .glyphicon-comment:before { content: "\e111"; }
153
- .glyphicon-magnet:before { content: "\e112"; }
154
- .glyphicon-chevron-up:before { content: "\e113"; }
155
- .glyphicon-chevron-down:before { content: "\e114"; }
156
- .glyphicon-retweet:before { content: "\e115"; }
157
- .glyphicon-shopping-cart:before { content: "\e116"; }
158
- .glyphicon-folder-close:before { content: "\e117"; }
159
- .glyphicon-folder-open:before { content: "\e118"; }
160
- .glyphicon-resize-vertical:before { content: "\e119"; }
161
- .glyphicon-resize-horizontal:before { content: "\e120"; }
162
- .glyphicon-hdd:before { content: "\e121"; }
163
- .glyphicon-bullhorn:before { content: "\e122"; }
164
- .glyphicon-bell:before { content: "\e123"; }
165
- .glyphicon-certificate:before { content: "\e124"; }
166
- .glyphicon-thumbs-up:before { content: "\e125"; }
167
- .glyphicon-thumbs-down:before { content: "\e126"; }
168
- .glyphicon-hand-right:before { content: "\e127"; }
169
- .glyphicon-hand-left:before { content: "\e128"; }
170
- .glyphicon-hand-up:before { content: "\e129"; }
171
- .glyphicon-hand-down:before { content: "\e130"; }
172
- .glyphicon-circle-arrow-right:before { content: "\e131"; }
173
- .glyphicon-circle-arrow-left:before { content: "\e132"; }
174
- .glyphicon-circle-arrow-up:before { content: "\e133"; }
175
- .glyphicon-circle-arrow-down:before { content: "\e134"; }
176
- .glyphicon-globe:before { content: "\e135"; }
177
- .glyphicon-wrench:before { content: "\e136"; }
178
- .glyphicon-tasks:before { content: "\e137"; }
179
- .glyphicon-filter:before { content: "\e138"; }
180
- .glyphicon-briefcase:before { content: "\e139"; }
181
- .glyphicon-fullscreen:before { content: "\e140"; }
182
- .glyphicon-dashboard:before { content: "\e141"; }
183
- .glyphicon-paperclip:before { content: "\e142"; }
184
- .glyphicon-heart-empty:before { content: "\e143"; }
185
- .glyphicon-link:before { content: "\e144"; }
186
- .glyphicon-phone:before { content: "\e145"; }
187
- .glyphicon-pushpin:before { content: "\e146"; }
188
- .glyphicon-euro:before { content: "\20ac"; }
189
- .glyphicon-usd:before { content: "\e148"; }
190
- .glyphicon-gbp:before { content: "\e149"; }
191
- .glyphicon-sort:before { content: "\e150"; }
192
- .glyphicon-sort-by-alphabet:before { content: "\e151"; }
193
- .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; }
194
- .glyphicon-sort-by-order:before { content: "\e153"; }
195
- .glyphicon-sort-by-order-alt:before { content: "\e154"; }
196
- .glyphicon-sort-by-attributes:before { content: "\e155"; }
197
- .glyphicon-sort-by-attributes-alt:before { content: "\e156"; }
198
- .glyphicon-unchecked:before { content: "\e157"; }
199
- .glyphicon-expand:before { content: "\e158"; }
200
- .glyphicon-collapse:before { content: "\e159"; }
201
- .glyphicon-collapse-top:before { content: "\e160"; }
202
-
33
+ .glyphicon-asterisk { &:before { content: "\2a"; } }
34
+ .glyphicon-plus { &:before { content: "\2b"; } }
35
+ .glyphicon-euro { &:before { content: "\20ac"; } }
36
+ .glyphicon-minus { &:before { content: "\2212"; } }
37
+ .glyphicon-cloud { &:before { content: "\2601"; } }
38
+ .glyphicon-envelope { &:before { content: "\2709"; } }
39
+ .glyphicon-pencil { &:before { content: "\270f"; } }
40
+ .glyphicon-glass { &:before { content: "\e001"; } }
41
+ .glyphicon-music { &:before { content: "\e002"; } }
42
+ .glyphicon-search { &:before { content: "\e003"; } }
43
+ .glyphicon-heart { &:before { content: "\e005"; } }
44
+ .glyphicon-star { &:before { content: "\e006"; } }
45
+ .glyphicon-star-empty { &:before { content: "\e007"; } }
46
+ .glyphicon-user { &:before { content: "\e008"; } }
47
+ .glyphicon-film { &:before { content: "\e009"; } }
48
+ .glyphicon-th-large { &:before { content: "\e010"; } }
49
+ .glyphicon-th { &:before { content: "\e011"; } }
50
+ .glyphicon-th-list { &:before { content: "\e012"; } }
51
+ .glyphicon-ok { &:before { content: "\e013"; } }
52
+ .glyphicon-remove { &:before { content: "\e014"; } }
53
+ .glyphicon-zoom-in { &:before { content: "\e015"; } }
54
+ .glyphicon-zoom-out { &:before { content: "\e016"; } }
55
+ .glyphicon-off { &:before { content: "\e017"; } }
56
+ .glyphicon-signal { &:before { content: "\e018"; } }
57
+ .glyphicon-cog { &:before { content: "\e019"; } }
58
+ .glyphicon-trash { &:before { content: "\e020"; } }
59
+ .glyphicon-home { &:before { content: "\e021"; } }
60
+ .glyphicon-file { &:before { content: "\e022"; } }
61
+ .glyphicon-time { &:before { content: "\e023"; } }
62
+ .glyphicon-road { &:before { content: "\e024"; } }
63
+ .glyphicon-download-alt { &:before { content: "\e025"; } }
64
+ .glyphicon-download { &:before { content: "\e026"; } }
65
+ .glyphicon-upload { &:before { content: "\e027"; } }
66
+ .glyphicon-inbox { &:before { content: "\e028"; } }
67
+ .glyphicon-play-circle { &:before { content: "\e029"; } }
68
+ .glyphicon-repeat { &:before { content: "\e030"; } }
69
+ .glyphicon-refresh { &:before { content: "\e031"; } }
70
+ .glyphicon-list-alt { &:before { content: "\e032"; } }
71
+ .glyphicon-flag { &:before { content: "\e034"; } }
72
+ .glyphicon-headphones { &:before { content: "\e035"; } }
73
+ .glyphicon-volume-off { &:before { content: "\e036"; } }
74
+ .glyphicon-volume-down { &:before { content: "\e037"; } }
75
+ .glyphicon-volume-up { &:before { content: "\e038"; } }
76
+ .glyphicon-qrcode { &:before { content: "\e039"; } }
77
+ .glyphicon-barcode { &:before { content: "\e040"; } }
78
+ .glyphicon-tag { &:before { content: "\e041"; } }
79
+ .glyphicon-tags { &:before { content: "\e042"; } }
80
+ .glyphicon-book { &:before { content: "\e043"; } }
81
+ .glyphicon-print { &:before { content: "\e045"; } }
82
+ .glyphicon-font { &:before { content: "\e047"; } }
83
+ .glyphicon-bold { &:before { content: "\e048"; } }
84
+ .glyphicon-italic { &:before { content: "\e049"; } }
85
+ .glyphicon-text-height { &:before { content: "\e050"; } }
86
+ .glyphicon-text-width { &:before { content: "\e051"; } }
87
+ .glyphicon-align-left { &:before { content: "\e052"; } }
88
+ .glyphicon-align-center { &:before { content: "\e053"; } }
89
+ .glyphicon-align-right { &:before { content: "\e054"; } }
90
+ .glyphicon-align-justify { &:before { content: "\e055"; } }
91
+ .glyphicon-list { &:before { content: "\e056"; } }
92
+ .glyphicon-indent-left { &:before { content: "\e057"; } }
93
+ .glyphicon-indent-right { &:before { content: "\e058"; } }
94
+ .glyphicon-facetime-video { &:before { content: "\e059"; } }
95
+ .glyphicon-picture { &:before { content: "\e060"; } }
96
+ .glyphicon-map-marker { &:before { content: "\e062"; } }
97
+ .glyphicon-adjust { &:before { content: "\e063"; } }
98
+ .glyphicon-tint { &:before { content: "\e064"; } }
99
+ .glyphicon-edit { &:before { content: "\e065"; } }
100
+ .glyphicon-share { &:before { content: "\e066"; } }
101
+ .glyphicon-check { &:before { content: "\e067"; } }
102
+ .glyphicon-move { &:before { content: "\e068"; } }
103
+ .glyphicon-step-backward { &:before { content: "\e069"; } }
104
+ .glyphicon-fast-backward { &:before { content: "\e070"; } }
105
+ .glyphicon-backward { &:before { content: "\e071"; } }
106
+ .glyphicon-play { &:before { content: "\e072"; } }
107
+ .glyphicon-pause { &:before { content: "\e073"; } }
108
+ .glyphicon-stop { &:before { content: "\e074"; } }
109
+ .glyphicon-forward { &:before { content: "\e075"; } }
110
+ .glyphicon-fast-forward { &:before { content: "\e076"; } }
111
+ .glyphicon-step-forward { &:before { content: "\e077"; } }
112
+ .glyphicon-eject { &:before { content: "\e078"; } }
113
+ .glyphicon-chevron-left { &:before { content: "\e079"; } }
114
+ .glyphicon-chevron-right { &:before { content: "\e080"; } }
115
+ .glyphicon-plus-sign { &:before { content: "\e081"; } }
116
+ .glyphicon-minus-sign { &:before { content: "\e082"; } }
117
+ .glyphicon-remove-sign { &:before { content: "\e083"; } }
118
+ .glyphicon-ok-sign { &:before { content: "\e084"; } }
119
+ .glyphicon-question-sign { &:before { content: "\e085"; } }
120
+ .glyphicon-info-sign { &:before { content: "\e086"; } }
121
+ .glyphicon-screenshot { &:before { content: "\e087"; } }
122
+ .glyphicon-remove-circle { &:before { content: "\e088"; } }
123
+ .glyphicon-ok-circle { &:before { content: "\e089"; } }
124
+ .glyphicon-ban-circle { &:before { content: "\e090"; } }
125
+ .glyphicon-arrow-left { &:before { content: "\e091"; } }
126
+ .glyphicon-arrow-right { &:before { content: "\e092"; } }
127
+ .glyphicon-arrow-up { &:before { content: "\e093"; } }
128
+ .glyphicon-arrow-down { &:before { content: "\e094"; } }
129
+ .glyphicon-share-alt { &:before { content: "\e095"; } }
130
+ .glyphicon-resize-full { &:before { content: "\e096"; } }
131
+ .glyphicon-resize-small { &:before { content: "\e097"; } }
132
+ .glyphicon-exclamation-sign { &:before { content: "\e101"; } }
133
+ .glyphicon-gift { &:before { content: "\e102"; } }
134
+ .glyphicon-leaf { &:before { content: "\e103"; } }
135
+ .glyphicon-eye-open { &:before { content: "\e105"; } }
136
+ .glyphicon-eye-close { &:before { content: "\e106"; } }
137
+ .glyphicon-warning-sign { &:before { content: "\e107"; } }
138
+ .glyphicon-plane { &:before { content: "\e108"; } }
139
+ .glyphicon-random { &:before { content: "\e110"; } }
140
+ .glyphicon-comment { &:before { content: "\e111"; } }
141
+ .glyphicon-magnet { &:before { content: "\e112"; } }
142
+ .glyphicon-chevron-up { &:before { content: "\e113"; } }
143
+ .glyphicon-chevron-down { &:before { content: "\e114"; } }
144
+ .glyphicon-retweet { &:before { content: "\e115"; } }
145
+ .glyphicon-shopping-cart { &:before { content: "\e116"; } }
146
+ .glyphicon-folder-close { &:before { content: "\e117"; } }
147
+ .glyphicon-folder-open { &:before { content: "\e118"; } }
148
+ .glyphicon-resize-vertical { &:before { content: "\e119"; } }
149
+ .glyphicon-resize-horizontal { &:before { content: "\e120"; } }
150
+ .glyphicon-hdd { &:before { content: "\e121"; } }
151
+ .glyphicon-bullhorn { &:before { content: "\e122"; } }
152
+ .glyphicon-certificate { &:before { content: "\e124"; } }
153
+ .glyphicon-thumbs-up { &:before { content: "\e125"; } }
154
+ .glyphicon-thumbs-down { &:before { content: "\e126"; } }
155
+ .glyphicon-hand-right { &:before { content: "\e127"; } }
156
+ .glyphicon-hand-left { &:before { content: "\e128"; } }
157
+ .glyphicon-hand-up { &:before { content: "\e129"; } }
158
+ .glyphicon-hand-down { &:before { content: "\e130"; } }
159
+ .glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
160
+ .glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
161
+ .glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
162
+ .glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
163
+ .glyphicon-globe { &:before { content: "\e135"; } }
164
+ .glyphicon-tasks { &:before { content: "\e137"; } }
165
+ .glyphicon-filter { &:before { content: "\e138"; } }
166
+ .glyphicon-fullscreen { &:before { content: "\e140"; } }
167
+ .glyphicon-dashboard { &:before { content: "\e141"; } }
168
+ .glyphicon-heart-empty { &:before { content: "\e143"; } }
169
+ .glyphicon-link { &:before { content: "\e144"; } }
170
+ .glyphicon-phone { &:before { content: "\e145"; } }
171
+ .glyphicon-usd { &:before { content: "\e148"; } }
172
+ .glyphicon-gbp { &:before { content: "\e149"; } }
173
+ .glyphicon-sort { &:before { content: "\e150"; } }
174
+ .glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
175
+ .glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
176
+ .glyphicon-sort-by-order { &:before { content: "\e153"; } }
177
+ .glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
178
+ .glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
179
+ .glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
180
+ .glyphicon-unchecked { &:before { content: "\e157"; } }
181
+ .glyphicon-expand { &:before { content: "\e158"; } }
182
+ .glyphicon-collapse-down { &:before { content: "\e159"; } }
183
+ .glyphicon-collapse-up { &:before { content: "\e160"; } }
184
+ .glyphicon-log-in { &:before { content: "\e161"; } }
185
+ .glyphicon-flash { &:before { content: "\e162"; } }
186
+ .glyphicon-log-out { &:before { content: "\e163"; } }
187
+ .glyphicon-new-window { &:before { content: "\e164"; } }
188
+ .glyphicon-record { &:before { content: "\e165"; } }
189
+ .glyphicon-save { &:before { content: "\e166"; } }
190
+ .glyphicon-open { &:before { content: "\e167"; } }
191
+ .glyphicon-saved { &:before { content: "\e168"; } }
192
+ .glyphicon-import { &:before { content: "\e169"; } }
193
+ .glyphicon-export { &:before { content: "\e170"; } }
194
+ .glyphicon-send { &:before { content: "\e171"; } }
195
+ .glyphicon-floppy-disk { &:before { content: "\e172"; } }
196
+ .glyphicon-floppy-saved { &:before { content: "\e173"; } }
197
+ .glyphicon-floppy-remove { &:before { content: "\e174"; } }
198
+ .glyphicon-floppy-save { &:before { content: "\e175"; } }
199
+ .glyphicon-floppy-open { &:before { content: "\e176"; } }
200
+ .glyphicon-credit-card { &:before { content: "\e177"; } }
201
+ .glyphicon-transfer { &:before { content: "\e178"; } }
202
+ .glyphicon-cutlery { &:before { content: "\e179"; } }
203
+ .glyphicon-header { &:before { content: "\e180"; } }
204
+ .glyphicon-compressed { &:before { content: "\e181"; } }
205
+ .glyphicon-earphone { &:before { content: "\e182"; } }
206
+ .glyphicon-phone-alt { &:before { content: "\e183"; } }
207
+ .glyphicon-tower { &:before { content: "\e184"; } }
208
+ .glyphicon-stats { &:before { content: "\e185"; } }
209
+ .glyphicon-sd-video { &:before { content: "\e186"; } }
210
+ .glyphicon-hd-video { &:before { content: "\e187"; } }
211
+ .glyphicon-subtitles { &:before { content: "\e188"; } }
212
+ .glyphicon-sound-stereo { &:before { content: "\e189"; } }
213
+ .glyphicon-sound-dolby { &:before { content: "\e190"; } }
214
+ .glyphicon-sound-5-1 { &:before { content: "\e191"; } }
215
+ .glyphicon-sound-6-1 { &:before { content: "\e192"; } }
216
+ .glyphicon-sound-7-1 { &:before { content: "\e193"; } }
217
+ .glyphicon-copyright-mark { &:before { content: "\e194"; } }
218
+ .glyphicon-registration-mark { &:before { content: "\e195"; } }
219
+ .glyphicon-cloud-download { &:before { content: "\e197"; } }
220
+ .glyphicon-cloud-upload { &:before { content: "\e198"; } }
221
+ .glyphicon-tree-conifer { &:before { content: "\e199"; } }
222
+ .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"; } }