twbs_sass_rails 3.0.2 → 3.1.1

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.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +2 -11
  3. data/CHANGELOG.md +8 -0
  4. data/LICENSE +1 -1
  5. data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  6. data/app/assets/fonts/glyphicons-halflings-regular.svg +273 -214
  7. data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  8. data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  9. data/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  10. data/gemfiles/rails_4.0.gemfile +1 -4
  11. data/gemfiles/rails_4.1.gemfile +1 -4
  12. data/gemfiles/rails_4.2.gemfile +0 -3
  13. data/lib/twbs_sass_rails/version.rb +1 -1
  14. data/test/dummy/config/initializers/secret_token.rb +1 -6
  15. data/test/integration/twbs_sass_rails_integration_test.rb +1 -0
  16. data/twbs_sass_rails.gemspec +3 -2
  17. data/vendor/assets/javascripts/twbs/bootstrap/affix.js +4 -4
  18. data/vendor/assets/javascripts/twbs/bootstrap/alert.js +3 -3
  19. data/vendor/assets/javascripts/twbs/bootstrap/button.js +3 -3
  20. data/vendor/assets/javascripts/twbs/bootstrap/carousel.js +7 -10
  21. data/vendor/assets/javascripts/twbs/bootstrap/collapse.js +4 -4
  22. data/vendor/assets/javascripts/twbs/bootstrap/dropdown.js +3 -3
  23. data/vendor/assets/javascripts/twbs/bootstrap/modal.js +3 -3
  24. data/vendor/assets/javascripts/twbs/bootstrap/popover.js +7 -13
  25. data/vendor/assets/javascripts/twbs/bootstrap/scrollspy.js +3 -3
  26. data/vendor/assets/javascripts/twbs/bootstrap/tab.js +3 -3
  27. data/vendor/assets/javascripts/twbs/bootstrap/tooltip.js +10 -16
  28. data/vendor/assets/javascripts/twbs/bootstrap/transition.js +2 -2
  29. data/vendor/assets/stylesheets/twbs/bootstrap/_alerts.scss +5 -0
  30. data/vendor/assets/stylesheets/twbs/bootstrap/_badges.scss +4 -0
  31. data/vendor/assets/stylesheets/twbs/bootstrap/_breadcrumbs.scss +1 -1
  32. data/vendor/assets/stylesheets/twbs/bootstrap/_button-groups.scss +2 -2
  33. data/vendor/assets/stylesheets/twbs/bootstrap/_buttons.scss +1 -1
  34. data/vendor/assets/stylesheets/twbs/bootstrap/_carousel.scss +8 -6
  35. data/vendor/assets/stylesheets/twbs/bootstrap/_close.scss +1 -0
  36. data/vendor/assets/stylesheets/twbs/bootstrap/_dropdowns.scss +2 -1
  37. data/vendor/assets/stylesheets/twbs/bootstrap/_forms.scss +41 -19
  38. data/vendor/assets/stylesheets/twbs/bootstrap/_glyphicons.scss +265 -198
  39. data/vendor/assets/stylesheets/twbs/bootstrap/_jumbotron.scss +1 -0
  40. data/vendor/assets/stylesheets/twbs/bootstrap/_media.scss +14 -0
  41. data/vendor/assets/stylesheets/twbs/bootstrap/_navbar.scss +1 -0
  42. data/vendor/assets/stylesheets/twbs/bootstrap/_panels.scss +5 -1
  43. data/vendor/assets/stylesheets/twbs/bootstrap/_popovers.scss +1 -1
  44. data/vendor/assets/stylesheets/twbs/bootstrap/_responsive-utilities.scss +4 -1
  45. data/vendor/assets/stylesheets/twbs/bootstrap/_tables.scss +3 -3
  46. data/vendor/assets/stylesheets/twbs/bootstrap/_theme.scss +3 -2
  47. data/vendor/assets/stylesheets/twbs/bootstrap/_tooltip.scss +1 -1
  48. data/vendor/assets/stylesheets/twbs/bootstrap/_variables.scss +6 -8
  49. data/vendor/assets/stylesheets/twbs/bootstrap/mixins/_hide-text.scss +1 -1
  50. data/vendor/assets/stylesheets/twbs/bootstrap/mixins/_opacity.scss +1 -1
  51. data/vendor/assets/stylesheets/twbs/bootstrap/mixins/_vendor-prefixes.scss +1 -1
  52. metadata +21 -6
@@ -28,6 +28,7 @@
28
28
  position: relative;
29
29
  top: -1px;
30
30
  }
31
+
31
32
  .btn-xs & {
32
33
  top: 0;
33
34
  padding: 1px 5px;
@@ -41,12 +42,15 @@
41
42
  color: $badge-active-color;
42
43
  background-color: $badge-active-bg;
43
44
  }
45
+
44
46
  .list-group-item > & {
45
47
  float: right;
46
48
  }
49
+
47
50
  .list-group-item > & + & {
48
51
  margin-right: 5px;
49
52
  }
53
+
50
54
  .nav-pills > li > a > & {
51
55
  margin-left: 3px;
52
56
  }
@@ -14,7 +14,7 @@
14
14
  display: inline-block;
15
15
 
16
16
  + li:before {
17
- content: "#{$breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
17
+ content: #{$breadcrumb-separator}\00a0; // Unicode space added since inline-block means non-collapsing white-space
18
18
  padding: 0 5px;
19
19
  color: $breadcrumb-color;
20
20
  }
@@ -71,13 +71,13 @@
71
71
  .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
72
72
  border-radius: 0;
73
73
  }
74
- .btn-group > .btn-group:first-child {
74
+ .btn-group > .btn-group:first-child:not(:last-child) {
75
75
  > .btn:last-child,
76
76
  > .dropdown-toggle {
77
77
  @include border-right-radius(0);
78
78
  }
79
79
  }
80
- .btn-group > .btn-group:last-child > .btn:first-child {
80
+ .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
81
81
  @include border-left-radius(0);
82
82
  }
83
83
 
@@ -107,7 +107,7 @@
107
107
  &:hover,
108
108
  &:focus {
109
109
  color: $link-hover-color;
110
- text-decoration: underline;
110
+ text-decoration: $link-hover-decoration;
111
111
  background-color: transparent;
112
112
  }
113
113
  &[disabled],
@@ -27,24 +27,24 @@
27
27
 
28
28
  // WebKit CSS3 transforms for supported devices
29
29
  @media all and (transform-3d), (-webkit-transform-3d) {
30
- transition: transform .6s ease-in-out;
31
- backface-visibility: hidden;
32
- perspective: 1000;
30
+ @include transition-transform(0.6s ease-in-out);
31
+ @include backface-visibility(hidden);
32
+ @include perspective(1000);
33
33
 
34
34
  &.next,
35
35
  &.active.right {
36
- transform: translate3d(100%, 0, 0);
36
+ @include translate3d(100%, 0, 0);
37
37
  left: 0;
38
38
  }
39
39
  &.prev,
40
40
  &.active.left {
41
- transform: translate3d(-100%, 0, 0);
41
+ @include translate3d(-100%, 0, 0);
42
42
  left: 0;
43
43
  }
44
44
  &.next.left,
45
45
  &.prev.right,
46
46
  &.active {
47
- transform: translate3d(0, 0, 0);
47
+ @include translate3d(0, 0, 0);
48
48
  left: 0;
49
49
  }
50
50
  }
@@ -148,6 +148,7 @@
148
148
  width: 20px;
149
149
  height: 20px;
150
150
  margin-top: -10px;
151
+ line-height: 1;
151
152
  font-family: serif;
152
153
  }
153
154
 
@@ -195,6 +196,7 @@
195
196
  // Internet Explorer 8-9 does not support clicks on elements without a set
196
197
  // `background-color`. We cannot use `filter` since that's not viewed as a
197
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
198
200
  //
199
201
  // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
200
202
  // set alpha transparency for the best results possible.
@@ -26,6 +26,7 @@
26
26
  // Additional properties for button version
27
27
  // iOS requires the button element instead of an anchor tag.
28
28
  // If you want the anchor version, it requires `href="#"`.
29
+ // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
29
30
  button.close {
30
31
  padding: 0;
31
32
  cursor: pointer;
@@ -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
  }
@@ -190,7 +191,7 @@
190
191
  .dropdown-menu {
191
192
  top: auto;
192
193
  bottom: 100%;
193
- margin-bottom: 1px;
194
+ margin-bottom: 2px;
194
195
  }
195
196
  }
196
197
 
@@ -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
  @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
128
128
  @include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);
129
129
 
@@ -143,7 +143,7 @@ output {
143
143
  fieldset[disabled] & {
144
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
  // [converter] extracted textarea& to textarea.form-control
@@ -172,7 +172,7 @@ input[type="search"] {
172
172
  // In Mobile Safari, setting `display: block` on temporal inputs causes the
173
173
  // text within the input to become vertically misaligned. As a workaround, we
174
174
  // set a pixel line-height that matches the given height of the input, but only
175
- // for Safari.
175
+ // for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
176
176
 
177
177
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
178
178
  input[type="date"],
@@ -180,18 +180,16 @@ input[type="search"] {
180
180
  input[type="datetime-local"],
181
181
  input[type="month"] {
182
182
  line-height: $input-height-base;
183
- }
184
- input[type="date"].input-sm,
185
- input[type="time"].input-sm,
186
- input[type="datetime-local"].input-sm,
187
- input[type="month"].input-sm {
188
- line-height: $input-height-small;
189
- }
190
- input[type="date"].input-lg,
191
- input[type="time"].input-lg,
192
- input[type="datetime-local"].input-lg,
193
- input[type="month"].input-lg {
194
- line-height: $input-height-large;
183
+
184
+ &.input-sm,
185
+ .input-group-sm & {
186
+ line-height: $input-height-small;
187
+ }
188
+
189
+ &.input-lg,
190
+ .input-group-lg & {
191
+ line-height: $input-height-large;
192
+ }
195
193
  }
196
194
  }
197
195
 
@@ -311,10 +309,35 @@ input[type="checkbox"] {
311
309
  //
312
310
  // Build on `.form-control` with modifier classes to decrease or increase the
313
311
  // height and font-size of form controls.
312
+ //
313
+ // The `.form-group-* form-control` variations are sadly duplicated to avoid the
314
+ // issue documented in https://github.com/twbs/bootstrap/issues/15074.
315
+
316
+ @include input-size('.input-sm', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $input-border-radius-small);
317
+ .form-group-sm {
314
318
 
315
- @include input-size('.input-sm, .form-group-sm .form-control', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $input-border-radius-small);
319
+ @include input-size('.form-control', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $input-border-radius-small);
316
320
 
317
- @include input-size('.input-lg, .form-group-lg .form-control', $input-height-large, $padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $input-border-radius-large);
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
+ }
327
+ }
328
+
329
+ @include input-size('.input-lg', $input-height-large, $padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $input-border-radius-large);
330
+ .form-group-lg {
331
+
332
+ @include input-size('.form-control', $input-height-large, $padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $input-border-radius-large);
333
+
334
+ .form-control-static {
335
+ height: $input-height-large;
336
+ padding: $padding-large-vertical $padding-large-horizontal;
337
+ font-size: $font-size-large;
338
+ line-height: $line-height-large;
339
+ }
340
+ }
318
341
 
319
342
 
320
343
  // Form control feedback states
@@ -447,8 +470,7 @@ input[type="checkbox"] {
447
470
  }
448
471
 
449
472
  // Remove default margin on radios/checkboxes that were used for stacking, and
450
- // then undo the floating of radios and checkboxes to match (which also avoids
451
- // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
473
+ // then undo the floating of radios and checkboxes to match.
452
474
  .radio,
453
475
  .checkbox {
454
476
  display: inline-block;
@@ -12,6 +12,7 @@
12
12
  font-family: 'Glyphicons Halflings';
13
13
  src: font-url('#{$icon-font-name}.eot');
14
14
  src: font-url('#{$icon-font-name}.eot?#iefix') format('embedded-opentype'),
15
+ font-url('#{$icon-font-name}.woff2') format('woff2'),
15
16
  font-url('#{$icon-font-name}.woff') format('woff'),
16
17
  font-url('#{$icon-font-name}.ttf') format('truetype'),
17
18
  font-url('#{$icon-font-name}.svg##{$icon-font-svg-id}') format('svg');
@@ -34,201 +35,267 @@
34
35
  .glyphicon-asterisk { &:before { content: "\2a"; } }
35
36
  .glyphicon-plus { &:before { content: "\2b"; } }
36
37
  .glyphicon-euro,
37
- .glyphicon-eur { &:before { content: "\20ac"; } }
38
- .glyphicon-minus { &:before { content: "\2212"; } }
39
- .glyphicon-cloud { &:before { content: "\2601"; } }
40
- .glyphicon-envelope { &:before { content: "\2709"; } }
41
- .glyphicon-pencil { &:before { content: "\270f"; } }
42
- .glyphicon-glass { &:before { content: "\e001"; } }
43
- .glyphicon-music { &:before { content: "\e002"; } }
44
- .glyphicon-search { &:before { content: "\e003"; } }
45
- .glyphicon-heart { &:before { content: "\e005"; } }
46
- .glyphicon-star { &:before { content: "\e006"; } }
47
- .glyphicon-star-empty { &:before { content: "\e007"; } }
48
- .glyphicon-user { &:before { content: "\e008"; } }
49
- .glyphicon-film { &:before { content: "\e009"; } }
50
- .glyphicon-th-large { &:before { content: "\e010"; } }
51
- .glyphicon-th { &:before { content: "\e011"; } }
52
- .glyphicon-th-list { &:before { content: "\e012"; } }
53
- .glyphicon-ok { &:before { content: "\e013"; } }
54
- .glyphicon-remove { &:before { content: "\e014"; } }
55
- .glyphicon-zoom-in { &:before { content: "\e015"; } }
56
- .glyphicon-zoom-out { &:before { content: "\e016"; } }
57
- .glyphicon-off { &:before { content: "\e017"; } }
58
- .glyphicon-signal { &:before { content: "\e018"; } }
59
- .glyphicon-cog { &:before { content: "\e019"; } }
60
- .glyphicon-trash { &:before { content: "\e020"; } }
61
- .glyphicon-home { &:before { content: "\e021"; } }
62
- .glyphicon-file { &:before { content: "\e022"; } }
63
- .glyphicon-time { &:before { content: "\e023"; } }
64
- .glyphicon-road { &:before { content: "\e024"; } }
65
- .glyphicon-download-alt { &:before { content: "\e025"; } }
66
- .glyphicon-download { &:before { content: "\e026"; } }
67
- .glyphicon-upload { &:before { content: "\e027"; } }
68
- .glyphicon-inbox { &:before { content: "\e028"; } }
69
- .glyphicon-play-circle { &:before { content: "\e029"; } }
70
- .glyphicon-repeat { &:before { content: "\e030"; } }
71
- .glyphicon-refresh { &:before { content: "\e031"; } }
72
- .glyphicon-list-alt { &:before { content: "\e032"; } }
73
- .glyphicon-lock { &:before { content: "\e033"; } }
74
- .glyphicon-flag { &:before { content: "\e034"; } }
75
- .glyphicon-headphones { &:before { content: "\e035"; } }
76
- .glyphicon-volume-off { &:before { content: "\e036"; } }
77
- .glyphicon-volume-down { &:before { content: "\e037"; } }
78
- .glyphicon-volume-up { &:before { content: "\e038"; } }
79
- .glyphicon-qrcode { &:before { content: "\e039"; } }
80
- .glyphicon-barcode { &:before { content: "\e040"; } }
81
- .glyphicon-tag { &:before { content: "\e041"; } }
82
- .glyphicon-tags { &:before { content: "\e042"; } }
83
- .glyphicon-book { &:before { content: "\e043"; } }
84
- .glyphicon-bookmark { &:before { content: "\e044"; } }
85
- .glyphicon-print { &:before { content: "\e045"; } }
86
- .glyphicon-camera { &:before { content: "\e046"; } }
87
- .glyphicon-font { &:before { content: "\e047"; } }
88
- .glyphicon-bold { &:before { content: "\e048"; } }
89
- .glyphicon-italic { &:before { content: "\e049"; } }
90
- .glyphicon-text-height { &:before { content: "\e050"; } }
91
- .glyphicon-text-width { &:before { content: "\e051"; } }
92
- .glyphicon-align-left { &:before { content: "\e052"; } }
93
- .glyphicon-align-center { &:before { content: "\e053"; } }
94
- .glyphicon-align-right { &:before { content: "\e054"; } }
95
- .glyphicon-align-justify { &:before { content: "\e055"; } }
96
- .glyphicon-list { &:before { content: "\e056"; } }
97
- .glyphicon-indent-left { &:before { content: "\e057"; } }
98
- .glyphicon-indent-right { &:before { content: "\e058"; } }
99
- .glyphicon-facetime-video { &:before { content: "\e059"; } }
100
- .glyphicon-picture { &:before { content: "\e060"; } }
101
- .glyphicon-map-marker { &:before { content: "\e062"; } }
102
- .glyphicon-adjust { &:before { content: "\e063"; } }
103
- .glyphicon-tint { &:before { content: "\e064"; } }
104
- .glyphicon-edit { &:before { content: "\e065"; } }
105
- .glyphicon-share { &:before { content: "\e066"; } }
106
- .glyphicon-check { &:before { content: "\e067"; } }
107
- .glyphicon-move { &:before { content: "\e068"; } }
108
- .glyphicon-step-backward { &:before { content: "\e069"; } }
109
- .glyphicon-fast-backward { &:before { content: "\e070"; } }
110
- .glyphicon-backward { &:before { content: "\e071"; } }
111
- .glyphicon-play { &:before { content: "\e072"; } }
112
- .glyphicon-pause { &:before { content: "\e073"; } }
113
- .glyphicon-stop { &:before { content: "\e074"; } }
114
- .glyphicon-forward { &:before { content: "\e075"; } }
115
- .glyphicon-fast-forward { &:before { content: "\e076"; } }
116
- .glyphicon-step-forward { &:before { content: "\e077"; } }
117
- .glyphicon-eject { &:before { content: "\e078"; } }
118
- .glyphicon-chevron-left { &:before { content: "\e079"; } }
119
- .glyphicon-chevron-right { &:before { content: "\e080"; } }
120
- .glyphicon-plus-sign { &:before { content: "\e081"; } }
121
- .glyphicon-minus-sign { &:before { content: "\e082"; } }
122
- .glyphicon-remove-sign { &:before { content: "\e083"; } }
123
- .glyphicon-ok-sign { &:before { content: "\e084"; } }
124
- .glyphicon-question-sign { &:before { content: "\e085"; } }
125
- .glyphicon-info-sign { &:before { content: "\e086"; } }
126
- .glyphicon-screenshot { &:before { content: "\e087"; } }
127
- .glyphicon-remove-circle { &:before { content: "\e088"; } }
128
- .glyphicon-ok-circle { &:before { content: "\e089"; } }
129
- .glyphicon-ban-circle { &:before { content: "\e090"; } }
130
- .glyphicon-arrow-left { &:before { content: "\e091"; } }
131
- .glyphicon-arrow-right { &:before { content: "\e092"; } }
132
- .glyphicon-arrow-up { &:before { content: "\e093"; } }
133
- .glyphicon-arrow-down { &:before { content: "\e094"; } }
134
- .glyphicon-share-alt { &:before { content: "\e095"; } }
135
- .glyphicon-resize-full { &:before { content: "\e096"; } }
136
- .glyphicon-resize-small { &:before { content: "\e097"; } }
137
- .glyphicon-exclamation-sign { &:before { content: "\e101"; } }
138
- .glyphicon-gift { &:before { content: "\e102"; } }
139
- .glyphicon-leaf { &:before { content: "\e103"; } }
140
- .glyphicon-fire { &:before { content: "\e104"; } }
141
- .glyphicon-eye-open { &:before { content: "\e105"; } }
142
- .glyphicon-eye-close { &:before { content: "\e106"; } }
143
- .glyphicon-warning-sign { &:before { content: "\e107"; } }
144
- .glyphicon-plane { &:before { content: "\e108"; } }
145
- .glyphicon-calendar { &:before { content: "\e109"; } }
146
- .glyphicon-random { &:before { content: "\e110"; } }
147
- .glyphicon-comment { &:before { content: "\e111"; } }
148
- .glyphicon-magnet { &:before { content: "\e112"; } }
149
- .glyphicon-chevron-up { &:before { content: "\e113"; } }
150
- .glyphicon-chevron-down { &:before { content: "\e114"; } }
151
- .glyphicon-retweet { &:before { content: "\e115"; } }
152
- .glyphicon-shopping-cart { &:before { content: "\e116"; } }
153
- .glyphicon-folder-close { &:before { content: "\e117"; } }
154
- .glyphicon-folder-open { &:before { content: "\e118"; } }
155
- .glyphicon-resize-vertical { &:before { content: "\e119"; } }
156
- .glyphicon-resize-horizontal { &:before { content: "\e120"; } }
157
- .glyphicon-hdd { &:before { content: "\e121"; } }
158
- .glyphicon-bullhorn { &:before { content: "\e122"; } }
159
- .glyphicon-bell { &:before { content: "\e123"; } }
160
- .glyphicon-certificate { &:before { content: "\e124"; } }
161
- .glyphicon-thumbs-up { &:before { content: "\e125"; } }
162
- .glyphicon-thumbs-down { &:before { content: "\e126"; } }
163
- .glyphicon-hand-right { &:before { content: "\e127"; } }
164
- .glyphicon-hand-left { &:before { content: "\e128"; } }
165
- .glyphicon-hand-up { &:before { content: "\e129"; } }
166
- .glyphicon-hand-down { &:before { content: "\e130"; } }
167
- .glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
168
- .glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
169
- .glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
170
- .glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
171
- .glyphicon-globe { &:before { content: "\e135"; } }
172
- .glyphicon-wrench { &:before { content: "\e136"; } }
173
- .glyphicon-tasks { &:before { content: "\e137"; } }
174
- .glyphicon-filter { &:before { content: "\e138"; } }
175
- .glyphicon-briefcase { &:before { content: "\e139"; } }
176
- .glyphicon-fullscreen { &:before { content: "\e140"; } }
177
- .glyphicon-dashboard { &:before { content: "\e141"; } }
178
- .glyphicon-paperclip { &:before { content: "\e142"; } }
179
- .glyphicon-heart-empty { &:before { content: "\e143"; } }
180
- .glyphicon-link { &:before { content: "\e144"; } }
181
- .glyphicon-phone { &:before { content: "\e145"; } }
182
- .glyphicon-pushpin { &:before { content: "\e146"; } }
183
- .glyphicon-usd { &:before { content: "\e148"; } }
184
- .glyphicon-gbp { &:before { content: "\e149"; } }
185
- .glyphicon-sort { &:before { content: "\e150"; } }
186
- .glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
187
- .glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
188
- .glyphicon-sort-by-order { &:before { content: "\e153"; } }
189
- .glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
190
- .glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
191
- .glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
192
- .glyphicon-unchecked { &:before { content: "\e157"; } }
193
- .glyphicon-expand { &:before { content: "\e158"; } }
194
- .glyphicon-collapse-down { &:before { content: "\e159"; } }
195
- .glyphicon-collapse-up { &:before { content: "\e160"; } }
196
- .glyphicon-log-in { &:before { content: "\e161"; } }
197
- .glyphicon-flash { &:before { content: "\e162"; } }
198
- .glyphicon-log-out { &:before { content: "\e163"; } }
199
- .glyphicon-new-window { &:before { content: "\e164"; } }
200
- .glyphicon-record { &:before { content: "\e165"; } }
201
- .glyphicon-save { &:before { content: "\e166"; } }
202
- .glyphicon-open { &:before { content: "\e167"; } }
203
- .glyphicon-saved { &:before { content: "\e168"; } }
204
- .glyphicon-import { &:before { content: "\e169"; } }
205
- .glyphicon-export { &:before { content: "\e170"; } }
206
- .glyphicon-send { &:before { content: "\e171"; } }
207
- .glyphicon-floppy-disk { &:before { content: "\e172"; } }
208
- .glyphicon-floppy-saved { &:before { content: "\e173"; } }
209
- .glyphicon-floppy-remove { &:before { content: "\e174"; } }
210
- .glyphicon-floppy-save { &:before { content: "\e175"; } }
211
- .glyphicon-floppy-open { &:before { content: "\e176"; } }
212
- .glyphicon-credit-card { &:before { content: "\e177"; } }
213
- .glyphicon-transfer { &:before { content: "\e178"; } }
214
- .glyphicon-cutlery { &:before { content: "\e179"; } }
215
- .glyphicon-header { &:before { content: "\e180"; } }
216
- .glyphicon-compressed { &:before { content: "\e181"; } }
217
- .glyphicon-earphone { &:before { content: "\e182"; } }
218
- .glyphicon-phone-alt { &:before { content: "\e183"; } }
219
- .glyphicon-tower { &:before { content: "\e184"; } }
220
- .glyphicon-stats { &:before { content: "\e185"; } }
221
- .glyphicon-sd-video { &:before { content: "\e186"; } }
222
- .glyphicon-hd-video { &:before { content: "\e187"; } }
223
- .glyphicon-subtitles { &:before { content: "\e188"; } }
224
- .glyphicon-sound-stereo { &:before { content: "\e189"; } }
225
- .glyphicon-sound-dolby { &:before { content: "\e190"; } }
226
- .glyphicon-sound-5-1 { &:before { content: "\e191"; } }
227
- .glyphicon-sound-6-1 { &:before { content: "\e192"; } }
228
- .glyphicon-sound-7-1 { &:before { content: "\e193"; } }
229
- .glyphicon-copyright-mark { &:before { content: "\e194"; } }
230
- .glyphicon-registration-mark { &:before { content: "\e195"; } }
231
- .glyphicon-cloud-download { &:before { content: "\e197"; } }
232
- .glyphicon-cloud-upload { &:before { content: "\e198"; } }
233
- .glyphicon-tree-conifer { &:before { content: "\e199"; } }
234
- .glyphicon-tree-deciduous { &:before { content: "\e200"; } }
38
+ .glyphicon-eur { &:before { content: \20ac; } }
39
+ .glyphicon-minus { &:before { content: \2212; } }
40
+ .glyphicon-cloud { &:before { content: \2601; } }
41
+ .glyphicon-envelope { &:before { content: \2709; } }
42
+ .glyphicon-pencil { &:before { content: \270f; } }
43
+ .glyphicon-glass { &:before { content: \e001; } }
44
+ .glyphicon-music { &:before { content: \e002; } }
45
+ .glyphicon-search { &:before { content: \e003; } }
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-map-marker { &:before { content: \e062; } }
103
+ .glyphicon-adjust { &:before { content: \e063; } }
104
+ .glyphicon-tint { &:before { content: \e064; } }
105
+ .glyphicon-edit { &:before { content: \e065; } }
106
+ .glyphicon-share { &:before { content: \e066; } }
107
+ .glyphicon-check { &:before { content: \e067; } }
108
+ .glyphicon-move { &:before { content: \e068; } }
109
+ .glyphicon-step-backward { &:before { content: \e069; } }
110
+ .glyphicon-fast-backward { &:before { content: \e070; } }
111
+ .glyphicon-backward { &:before { content: \e071; } }
112
+ .glyphicon-play { &:before { content: \e072; } }
113
+ .glyphicon-pause { &:before { content: \e073; } }
114
+ .glyphicon-stop { &:before { content: \e074; } }
115
+ .glyphicon-forward { &:before { content: \e075; } }
116
+ .glyphicon-fast-forward { &:before { content: \e076; } }
117
+ .glyphicon-step-forward { &:before { content: \e077; } }
118
+ .glyphicon-eject { &:before { content: \e078; } }
119
+ .glyphicon-chevron-left { &:before { content: \e079; } }
120
+ .glyphicon-chevron-right { &:before { content: \e080; } }
121
+ .glyphicon-plus-sign { &:before { content: \e081; } }
122
+ .glyphicon-minus-sign { &:before { content: \e082; } }
123
+ .glyphicon-remove-sign { &:before { content: \e083; } }
124
+ .glyphicon-ok-sign { &:before { content: \e084; } }
125
+ .glyphicon-question-sign { &:before { content: \e085; } }
126
+ .glyphicon-info-sign { &:before { content: \e086; } }
127
+ .glyphicon-screenshot { &:before { content: \e087; } }
128
+ .glyphicon-remove-circle { &:before { content: \e088; } }
129
+ .glyphicon-ok-circle { &:before { content: \e089; } }
130
+ .glyphicon-ban-circle { &:before { content: \e090; } }
131
+ .glyphicon-arrow-left { &:before { content: \e091; } }
132
+ .glyphicon-arrow-right { &:before { content: \e092; } }
133
+ .glyphicon-arrow-up { &:before { content: \e093; } }
134
+ .glyphicon-arrow-down { &:before { content: \e094; } }
135
+ .glyphicon-share-alt { &:before { content: \e095; } }
136
+ .glyphicon-resize-full { &:before { content: \e096; } }
137
+ .glyphicon-resize-small { &:before { content: \e097; } }
138
+ .glyphicon-exclamation-sign { &:before { content: \e101; } }
139
+ .glyphicon-gift { &:before { content: \e102; } }
140
+ .glyphicon-leaf { &:before { content: \e103; } }
141
+ .glyphicon-fire { &:before { content: \e104; } }
142
+ .glyphicon-eye-open { &:before { content: \e105; } }
143
+ .glyphicon-eye-close { &:before { content: \e106; } }
144
+ .glyphicon-warning-sign { &:before { content: \e107; } }
145
+ .glyphicon-plane { &:before { content: \e108; } }
146
+ .glyphicon-calendar { &:before { content: \e109; } }
147
+ .glyphicon-random { &:before { content: \e110; } }
148
+ .glyphicon-comment { &:before { content: \e111; } }
149
+ .glyphicon-magnet { &:before { content: \e112; } }
150
+ .glyphicon-chevron-up { &:before { content: \e113; } }
151
+ .glyphicon-chevron-down { &:before { content: \e114; } }
152
+ .glyphicon-retweet { &:before { content: \e115; } }
153
+ .glyphicon-shopping-cart { &:before { content: \e116; } }
154
+ .glyphicon-folder-close { &:before { content: \e117; } }
155
+ .glyphicon-folder-open { &:before { content: \e118; } }
156
+ .glyphicon-resize-vertical { &:before { content: \e119; } }
157
+ .glyphicon-resize-horizontal { &:before { content: \e120; } }
158
+ .glyphicon-hdd { &:before { content: \e121; } }
159
+ .glyphicon-bullhorn { &:before { content: \e122; } }
160
+ .glyphicon-bell { &:before { content: \e123; } }
161
+ .glyphicon-certificate { &:before { content: \e124; } }
162
+ .glyphicon-thumbs-up { &:before { content: \e125; } }
163
+ .glyphicon-thumbs-down { &:before { content: \e126; } }
164
+ .glyphicon-hand-right { &:before { content: \e127; } }
165
+ .glyphicon-hand-left { &:before { content: \e128; } }
166
+ .glyphicon-hand-up { &:before { content: \e129; } }
167
+ .glyphicon-hand-down { &:before { content: \e130; } }
168
+ .glyphicon-circle-arrow-right { &:before { content: \e131; } }
169
+ .glyphicon-circle-arrow-left { &:before { content: \e132; } }
170
+ .glyphicon-circle-arrow-up { &:before { content: \e133; } }
171
+ .glyphicon-circle-arrow-down { &:before { content: \e134; } }
172
+ .glyphicon-globe { &:before { content: \e135; } }
173
+ .glyphicon-wrench { &:before { content: \e136; } }
174
+ .glyphicon-tasks { &:before { content: \e137; } }
175
+ .glyphicon-filter { &:before { content: \e138; } }
176
+ .glyphicon-briefcase { &:before { content: \e139; } }
177
+ .glyphicon-fullscreen { &:before { content: \e140; } }
178
+ .glyphicon-dashboard { &:before { content: \e141; } }
179
+ .glyphicon-paperclip { &:before { content: \e142; } }
180
+ .glyphicon-heart-empty { &:before { content: \e143; } }
181
+ .glyphicon-link { &:before { content: \e144; } }
182
+ .glyphicon-phone { &:before { content: \e145; } }
183
+ .glyphicon-pushpin { &:before { content: \e146; } }
184
+ .glyphicon-usd { &:before { content: \e148; } }
185
+ .glyphicon-gbp { &:before { content: \e149; } }
186
+ .glyphicon-sort { &:before { content: \e150; } }
187
+ .glyphicon-sort-by-alphabet { &:before { content: \e151; } }
188
+ .glyphicon-sort-by-alphabet-alt { &:before { content: \e152; } }
189
+ .glyphicon-sort-by-order { &:before { content: \e153; } }
190
+ .glyphicon-sort-by-order-alt { &:before { content: \e154; } }
191
+ .glyphicon-sort-by-attributes { &:before { content: \e155; } }
192
+ .glyphicon-sort-by-attributes-alt { &:before { content: \e156; } }
193
+ .glyphicon-unchecked { &:before { content: \e157; } }
194
+ .glyphicon-expand { &:before { content: \e158; } }
195
+ .glyphicon-collapse-down { &:before { content: \e159; } }
196
+ .glyphicon-collapse-up { &:before { content: \e160; } }
197
+ .glyphicon-log-in { &:before { content: \e161; } }
198
+ .glyphicon-flash { &:before { content: \e162; } }
199
+ .glyphicon-log-out { &:before { content: \e163; } }
200
+ .glyphicon-new-window { &:before { content: \e164; } }
201
+ .glyphicon-record { &:before { content: \e165; } }
202
+ .glyphicon-save { &:before { content: \e166; } }
203
+ .glyphicon-open { &:before { content: \e167; } }
204
+ .glyphicon-saved { &:before { content: \e168; } }
205
+ .glyphicon-import { &:before { content: \e169; } }
206
+ .glyphicon-export { &:before { content: \e170; } }
207
+ .glyphicon-send { &:before { content: \e171; } }
208
+ .glyphicon-floppy-disk { &:before { content: \e172; } }
209
+ .glyphicon-floppy-saved { &:before { content: \e173; } }
210
+ .glyphicon-floppy-remove { &:before { content: \e174; } }
211
+ .glyphicon-floppy-save { &:before { content: \e175; } }
212
+ .glyphicon-floppy-open { &:before { content: \e176; } }
213
+ .glyphicon-credit-card { &:before { content: \e177; } }
214
+ .glyphicon-transfer { &:before { content: \e178; } }
215
+ .glyphicon-cutlery { &:before { content: \e179; } }
216
+ .glyphicon-header { &:before { content: \e180; } }
217
+ .glyphicon-compressed { &:before { content: \e181; } }
218
+ .glyphicon-earphone { &:before { content: \e182; } }
219
+ .glyphicon-phone-alt { &:before { content: \e183; } }
220
+ .glyphicon-tower { &:before { content: \e184; } }
221
+ .glyphicon-stats { &:before { content: \e185; } }
222
+ .glyphicon-sd-video { &:before { content: \e186; } }
223
+ .glyphicon-hd-video { &:before { content: \e187; } }
224
+ .glyphicon-subtitles { &:before { content: \e188; } }
225
+ .glyphicon-sound-stereo { &:before { content: \e189; } }
226
+ .glyphicon-sound-dolby { &:before { content: \e190; } }
227
+ .glyphicon-sound-5-1 { &:before { content: \e191; } }
228
+ .glyphicon-sound-6-1 { &:before { content: \e192; } }
229
+ .glyphicon-sound-7-1 { &:before { content: \e193; } }
230
+ .glyphicon-copyright-mark { &:before { content: \e194; } }
231
+ .glyphicon-registration-mark { &:before { content: \e195; } }
232
+ .glyphicon-cloud-download { &:before { content: \e197; } }
233
+ .glyphicon-cloud-upload { &:before { content: \e198; } }
234
+ .glyphicon-tree-conifer { &:before { content: \e199; } }
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; } }