rbootstrap 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. data/README.md +282 -0
  2. data/Rakefile +14 -0
  3. data/app/helpers/bootstrap_flash_helper.rb +17 -0
  4. data/app/helpers/flash_block_helper.rb +17 -0
  5. data/app/helpers/glyph_helper.rb +12 -0
  6. data/app/helpers/modal_helper.rb +42 -0
  7. data/app/helpers/twitter_breadcrumbs_helper.rb +5 -0
  8. data/app/views/twitter-bootstrap/_breadcrumbs.html.erb +14 -0
  9. data/lib/generators/bootstrap/install/install_generator.rb +57 -0
  10. data/lib/generators/bootstrap/install/templates/application.css +7 -0
  11. data/lib/generators/bootstrap/install/templates/application.js +10 -0
  12. data/lib/generators/bootstrap/install/templates/bootstrap.coffee +4 -0
  13. data/lib/generators/bootstrap/install/templates/bootstrap.js +5 -0
  14. data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.less +31 -0
  15. data/lib/generators/bootstrap/layout/layout_generator.rb +23 -0
  16. data/lib/generators/bootstrap/layout/templates/layout.html.erb +108 -0
  17. data/lib/generators/bootstrap/layout/templates/layout.html.haml +68 -0
  18. data/lib/generators/bootstrap/layout/templates/layout.html.slim +68 -0
  19. data/lib/generators/bootstrap/partial/partial_generator.rb +20 -0
  20. data/lib/generators/bootstrap/partial/templates/_login.html.erb +29 -0
  21. data/lib/generators/bootstrap/partial/templates/_navbar.html.erb +13 -0
  22. data/lib/generators/bootstrap/themed/templates/_form.html.erb +16 -0
  23. data/lib/generators/bootstrap/themed/templates/_form.html.haml +10 -0
  24. data/lib/generators/bootstrap/themed/templates/_form.html.slim +11 -0
  25. data/lib/generators/bootstrap/themed/templates/edit.html.erb +6 -0
  26. data/lib/generators/bootstrap/themed/templates/edit.html.haml +4 -0
  27. data/lib/generators/bootstrap/themed/templates/edit.html.slim +4 -0
  28. data/lib/generators/bootstrap/themed/templates/index.html.erb +40 -0
  29. data/lib/generators/bootstrap/themed/templates/index.html.haml +25 -0
  30. data/lib/generators/bootstrap/themed/templates/index.html.slim +27 -0
  31. data/lib/generators/bootstrap/themed/templates/new.html.erb +6 -0
  32. data/lib/generators/bootstrap/themed/templates/new.html.haml +4 -0
  33. data/lib/generators/bootstrap/themed/templates/new.html.slim +4 -0
  34. data/lib/generators/bootstrap/themed/templates/show.html.erb +23 -0
  35. data/lib/generators/bootstrap/themed/templates/show.html.haml +15 -0
  36. data/lib/generators/bootstrap/themed/templates/show.html.slim +17 -0
  37. data/lib/generators/bootstrap/themed/templates/simple_form/_form.html.erb +14 -0
  38. data/lib/generators/bootstrap/themed/templates/simple_form/_form.html.haml +11 -0
  39. data/lib/generators/bootstrap/themed/templates/simple_form/_form.html.slim +12 -0
  40. data/lib/generators/bootstrap/themed/themed_generator.rb +110 -0
  41. data/lib/twitter-bootstrap-rails.rb +10 -0
  42. data/lib/twitter/bootstrap/rails/bootstrap.rb +2 -0
  43. data/lib/twitter/bootstrap/rails/engine.rb +29 -0
  44. data/lib/twitter/bootstrap/rails/twitter-bootstrap-breadcrumbs.rb +30 -0
  45. data/lib/twitter/bootstrap/rails/version.rb +7 -0
  46. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  47. data/vendor/assets/fonts/fontawesome-webfont.svg +255 -0
  48. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  49. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  50. data/vendor/assets/images/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
  51. data/vendor/assets/images/twitter/bootstrap/glyphicons-halflings.png +0 -0
  52. data/vendor/assets/javascripts/twitter/bootstrap.js +13 -0
  53. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-affix.js +106 -0
  54. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-alert.js +88 -0
  55. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-button.js +94 -0
  56. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-carousel.js +176 -0
  57. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-collapse.js +156 -0
  58. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-dropdown.js +148 -0
  59. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-modal.js +234 -0
  60. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-popover.js +103 -0
  61. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-scrollspy.js +151 -0
  62. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-tab.js +133 -0
  63. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-tooltip.js +276 -0
  64. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-transition.js +60 -0
  65. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-typeahead.js +311 -0
  66. data/vendor/assets/javascripts/twitter/bootstrap_ujs.js +11 -0
  67. data/vendor/toolkit/font-awesome-ie7.less +245 -0
  68. data/vendor/toolkit/fontawesome.less +328 -0
  69. data/vendor/toolkit/twitter/bootstrap/accordion.less +34 -0
  70. data/vendor/toolkit/twitter/bootstrap/alerts.less +65 -0
  71. data/vendor/toolkit/twitter/bootstrap/bootstrap.less +63 -0
  72. data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +24 -0
  73. data/vendor/toolkit/twitter/bootstrap/button-groups.less +242 -0
  74. data/vendor/toolkit/twitter/bootstrap/buttons.less +232 -0
  75. data/vendor/toolkit/twitter/bootstrap/carousel.less +131 -0
  76. data/vendor/toolkit/twitter/bootstrap/close.less +31 -0
  77. data/vendor/toolkit/twitter/bootstrap/code.less +59 -0
  78. data/vendor/toolkit/twitter/bootstrap/component-animations.less +22 -0
  79. data/vendor/toolkit/twitter/bootstrap/dropdowns.less +237 -0
  80. data/vendor/toolkit/twitter/bootstrap/forms.less +683 -0
  81. data/vendor/toolkit/twitter/bootstrap/grid.less +21 -0
  82. data/vendor/toolkit/twitter/bootstrap/hero-unit.less +25 -0
  83. data/vendor/toolkit/twitter/bootstrap/labels-badges.less +74 -0
  84. data/vendor/toolkit/twitter/bootstrap/layouts.less +16 -0
  85. data/vendor/toolkit/twitter/bootstrap/media.less +55 -0
  86. data/vendor/toolkit/twitter/bootstrap/mixins.less +686 -0
  87. data/vendor/toolkit/twitter/bootstrap/modals.less +94 -0
  88. data/vendor/toolkit/twitter/bootstrap/navbar.less +472 -0
  89. data/vendor/toolkit/twitter/bootstrap/navs.less +385 -0
  90. data/vendor/toolkit/twitter/bootstrap/pager.less +41 -0
  91. data/vendor/toolkit/twitter/bootstrap/pagination.less +121 -0
  92. data/vendor/toolkit/twitter/bootstrap/popovers.less +117 -0
  93. data/vendor/toolkit/twitter/bootstrap/progress-bars.less +122 -0
  94. data/vendor/toolkit/twitter/bootstrap/reset.less +138 -0
  95. data/vendor/toolkit/twitter/bootstrap/responsive-1200px-min.less +28 -0
  96. data/vendor/toolkit/twitter/bootstrap/responsive-767px-max.less +193 -0
  97. data/vendor/toolkit/twitter/bootstrap/responsive-768px-979px.less +19 -0
  98. data/vendor/toolkit/twitter/bootstrap/responsive-navbar.less +185 -0
  99. data/vendor/toolkit/twitter/bootstrap/responsive-utilities.less +43 -0
  100. data/vendor/toolkit/twitter/bootstrap/responsive.less +48 -0
  101. data/vendor/toolkit/twitter/bootstrap/scaffolding.less +52 -0
  102. data/vendor/toolkit/twitter/bootstrap/sprites.less +193 -0
  103. data/vendor/toolkit/twitter/bootstrap/tables.less +236 -0
  104. data/vendor/toolkit/twitter/bootstrap/thumbnails.less +52 -0
  105. data/vendor/toolkit/twitter/bootstrap/tooltip.less +70 -0
  106. data/vendor/toolkit/twitter/bootstrap/type.less +230 -0
  107. data/vendor/toolkit/twitter/bootstrap/utilities.less +30 -0
  108. data/vendor/toolkit/twitter/bootstrap/variables.less +301 -0
  109. data/vendor/toolkit/twitter/bootstrap/wells.less +29 -0
  110. data/vendor/toolkit/twitter/bootstrap_base.less +2 -0
  111. metadata +224 -0
@@ -0,0 +1,60 @@
1
+ /* ===================================================
2
+ * bootstrap-transition.js v2.2.1
3
+ * http://twitter.github.com/bootstrap/javascript.html#transitions
4
+ * ===================================================
5
+ * Copyright 2012 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ========================================================== */
19
+
20
+
21
+ !function ($) {
22
+
23
+ "use strict"; // jshint ;_;
24
+
25
+
26
+ /* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
27
+ * ======================================================= */
28
+
29
+ $(function () {
30
+
31
+ $.support.transition = (function () {
32
+
33
+ var transitionEnd = (function () {
34
+
35
+ var el = document.createElement('bootstrap')
36
+ , transEndEventNames = {
37
+ 'WebkitTransition' : 'webkitTransitionEnd'
38
+ , 'MozTransition' : 'transitionend'
39
+ , 'OTransition' : 'oTransitionEnd otransitionend'
40
+ , 'transition' : 'transitionend'
41
+ }
42
+ , name
43
+
44
+ for (name in transEndEventNames){
45
+ if (el.style[name] !== undefined) {
46
+ return transEndEventNames[name]
47
+ }
48
+ }
49
+
50
+ }())
51
+
52
+ return transitionEnd && {
53
+ end: transitionEnd
54
+ }
55
+
56
+ })()
57
+
58
+ })
59
+
60
+ }(window.jQuery);
@@ -0,0 +1,311 @@
1
+ /* =============================================================
2
+ * bootstrap-typeahead.js v2.2.1
3
+ * http://twitter.github.com/bootstrap/javascript.html#typeahead
4
+ * =============================================================
5
+ * Copyright 2012 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ============================================================ */
19
+
20
+
21
+ !function($){
22
+
23
+ "use strict"; // jshint ;_;
24
+
25
+
26
+ /* TYPEAHEAD PUBLIC CLASS DEFINITION
27
+ * ================================= */
28
+
29
+ var Typeahead = function (element, options) {
30
+ this.$element = $(element)
31
+ this.options = $.extend({}, $.fn.typeahead.defaults, options)
32
+ this.matcher = this.options.matcher || this.matcher
33
+ this.sorter = this.options.sorter || this.sorter
34
+ this.highlighter = this.options.highlighter || this.highlighter
35
+ this.updater = this.options.updater || this.updater
36
+ this.$menu = $(this.options.menu).appendTo('body')
37
+ this.source = this.options.source
38
+ this.shown = false
39
+ this.listen()
40
+ }
41
+
42
+ Typeahead.prototype = {
43
+
44
+ constructor: Typeahead
45
+
46
+ , select: function () {
47
+ var val = this.$menu.find('.active').attr('data-value')
48
+ this.$element
49
+ .val(this.updater(val))
50
+ .change()
51
+ return this.hide()
52
+ }
53
+
54
+ , updater: function (item) {
55
+ return item
56
+ }
57
+
58
+ , show: function () {
59
+ var pos = $.extend({}, this.$element.offset(), {
60
+ height: this.$element[0].offsetHeight,
61
+ width: this.$element[0].offsetWidth
62
+ })
63
+
64
+ this.$menu.css({
65
+ top: pos.top + pos.height
66
+ , right: pos.left - pos.width
67
+ })
68
+
69
+ this.$menu.show()
70
+ this.shown = true
71
+ return this
72
+ }
73
+
74
+ , hide: function () {
75
+ this.$menu.hide()
76
+ this.shown = false
77
+ return this
78
+ }
79
+
80
+ , lookup: function (event) {
81
+ var items
82
+
83
+ this.query = this.$element.val()
84
+
85
+ if (!this.query || this.query.length < this.options.minLength) {
86
+ return this.shown ? this.hide() : this
87
+ }
88
+
89
+ items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source
90
+
91
+ return items ? this.process(items) : this
92
+ }
93
+
94
+ , process: function (items) {
95
+ var that = this
96
+
97
+ items = $.grep(items, function (item) {
98
+ return that.matcher(item)
99
+ })
100
+
101
+ items = this.sorter(items)
102
+
103
+ if (!items.length) {
104
+ return this.shown ? this.hide() : this
105
+ }
106
+
107
+ return this.render(items.slice(0, this.options.items)).show()
108
+ }
109
+
110
+ , matcher: function (item) {
111
+ return ~item.toLowerCase().indexOf(this.query.toLowerCase())
112
+ }
113
+
114
+ , sorter: function (items) {
115
+ var beginswith = []
116
+ , caseSensitive = []
117
+ , caseInsensitive = []
118
+ , item
119
+
120
+ while (item = items.shift()) {
121
+ if (!item.toLowerCase().indexOf(this.query.toLowerCase())) beginswith.push(item)
122
+ else if (~item.indexOf(this.query)) caseSensitive.push(item)
123
+ else caseInsensitive.push(item)
124
+ }
125
+
126
+ return beginswith.concat(caseSensitive, caseInsensitive)
127
+ }
128
+
129
+ , highlighter: function (item) {
130
+ var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')
131
+ return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
132
+ return '<strong>' + match + '</strong>'
133
+ })
134
+ }
135
+
136
+ , render: function (items) {
137
+ var that = this
138
+
139
+ items = $(items).map(function (i, item) {
140
+ i = $(that.options.item).attr('data-value', item)
141
+ i.find('a').html(that.highlighter(item))
142
+ return i[0]
143
+ })
144
+
145
+ items.first().addClass('active')
146
+ this.$menu.html(items)
147
+ return this
148
+ }
149
+
150
+ , next: function (event) {
151
+ var active = this.$menu.find('.active').removeClass('active')
152
+ , next = active.next()
153
+
154
+ if (!next.length) {
155
+ next = $(this.$menu.find('li')[0])
156
+ }
157
+
158
+ next.addClass('active')
159
+ }
160
+
161
+ , prev: function (event) {
162
+ var active = this.$menu.find('.active').removeClass('active')
163
+ , prev = active.prev()
164
+
165
+ if (!prev.length) {
166
+ prev = this.$menu.find('li').last()
167
+ }
168
+
169
+ prev.addClass('active')
170
+ }
171
+
172
+ , listen: function () {
173
+ this.$element
174
+ .on('blur', $.proxy(this.blur, this))
175
+ .on('keypress', $.proxy(this.keypress, this))
176
+ .on('keyup', $.proxy(this.keyup, this))
177
+
178
+ if (this.eventSupported('keydown')) {
179
+ this.$element.on('keydown', $.proxy(this.keydown, this))
180
+ }
181
+
182
+ this.$menu
183
+ .on('click', $.proxy(this.click, this))
184
+ .on('mouseenter', 'li', $.proxy(this.mouseenter, this))
185
+ }
186
+
187
+ , eventSupported: function(eventName) {
188
+ var isSupported = eventName in this.$element
189
+ if (!isSupported) {
190
+ this.$element.setAttribute(eventName, 'return;')
191
+ isSupported = typeof this.$element[eventName] === 'function'
192
+ }
193
+ return isSupported
194
+ }
195
+
196
+ , move: function (e) {
197
+ if (!this.shown) return
198
+
199
+ switch(e.keyCode) {
200
+ case 9: // tab
201
+ case 13: // enter
202
+ case 27: // escape
203
+ e.preventDefault()
204
+ break
205
+
206
+ case 38: // up arrow
207
+ e.preventDefault()
208
+ this.prev()
209
+ break
210
+
211
+ case 40: // down arrow
212
+ e.preventDefault()
213
+ this.next()
214
+ break
215
+ }
216
+
217
+ e.stopPropagation()
218
+ }
219
+
220
+ , keydown: function (e) {
221
+ this.suppressKeyPressRepeat = !~$.inArray(e.keyCode, [40,38,9,13,27])
222
+ this.move(e)
223
+ }
224
+
225
+ , keypress: function (e) {
226
+ if (this.suppressKeyPressRepeat) return
227
+ this.move(e)
228
+ }
229
+
230
+ , keyup: function (e) {
231
+ switch(e.keyCode) {
232
+ case 40: // down arrow
233
+ case 38: // up arrow
234
+ case 16: // shift
235
+ case 17: // ctrl
236
+ case 18: // alt
237
+ break
238
+
239
+ case 9: // tab
240
+ case 13: // enter
241
+ if (!this.shown) return
242
+ this.select()
243
+ break
244
+
245
+ case 27: // escape
246
+ if (!this.shown) return
247
+ this.hide()
248
+ break
249
+
250
+ default:
251
+ this.lookup()
252
+ }
253
+
254
+ e.stopPropagation()
255
+ e.preventDefault()
256
+ }
257
+
258
+ , blur: function (e) {
259
+ var that = this
260
+ setTimeout(function () { that.hide() }, 150)
261
+ }
262
+
263
+ , click: function (e) {
264
+ e.stopPropagation()
265
+ e.preventDefault()
266
+ this.select()
267
+ }
268
+
269
+ , mouseenter: function (e) {
270
+ this.$menu.find('.active').removeClass('active')
271
+ $(e.currentTarget).addClass('active')
272
+ }
273
+
274
+ }
275
+
276
+
277
+ /* TYPEAHEAD PLUGIN DEFINITION
278
+ * =========================== */
279
+
280
+ $.fn.typeahead = function (option) {
281
+ return this.each(function () {
282
+ var $this = $(this)
283
+ , data = $this.data('typeahead')
284
+ , options = typeof option == 'object' && option
285
+ if (!data) $this.data('typeahead', (data = new Typeahead(this, options)))
286
+ if (typeof option == 'string') data[option]()
287
+ })
288
+ }
289
+
290
+ $.fn.typeahead.defaults = {
291
+ source: []
292
+ , items: 8
293
+ , menu: '<ul class="typeahead dropdown-menu"></ul>'
294
+ , item: '<li><a href="#"></a></li>'
295
+ , minLength: 1
296
+ }
297
+
298
+ $.fn.typeahead.Constructor = Typeahead
299
+
300
+
301
+ /* TYPEAHEAD DATA-API
302
+ * ================== */
303
+
304
+ $(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
305
+ var $this = $(this)
306
+ if ($this.data('typeahead')) return
307
+ e.preventDefault()
308
+ $this.typeahead($this.data())
309
+ })
310
+
311
+ }(window.jQuery);
@@ -0,0 +1,11 @@
1
+ (function($, undefined) {
2
+ $(function () {
3
+ $('div.bootstrap-modal').modal();
4
+ $('div.bootstrap-modal').modal('hide').addClass('fade');
5
+
6
+ $("a.bootstrap-modal-cancel-button").click(function(event) {
7
+ $(event.target).closest("div.modal").modal("hide");
8
+ });
9
+ });
10
+ })( jQuery );
11
+
@@ -0,0 +1,245 @@
1
+ [class^="icon-"],
2
+ [class*="icon-"] {
3
+ font-family: FontAwesome;
4
+ font-style: normal;
5
+ font-weight: normal;
6
+ }
7
+
8
+ .btn.dropdown-toggle [class^="icon-"], .btn.dropdown-toggle [class*="icon-"] {
9
+ /* keeps button heights with and without icons the same */
10
+ line-height: 1.4em;
11
+ }
12
+
13
+ .icon-large {
14
+ font-size: 1.3333em;
15
+ }
16
+
17
+ .ie7icon(@inner) {
18
+ *zoom: ~"expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '@{inner}&nbsp;')";
19
+ }
20
+
21
+ .icon-glass { .ie7icon('&#xf000;'); }
22
+ .icon-music { .ie7icon('&#xf001;'); }
23
+ .icon-search { .ie7icon('&#xf002;'); }
24
+ .icon-envelope { .ie7icon('&#xf003;'); }
25
+ .icon-heart { .ie7icon('&#xf004;'); }
26
+ .icon-star { .ie7icon('&#xf005;'); }
27
+ .icon-star-empty { .ie7icon('&#xf006;'); }
28
+ .icon-user { .ie7icon('&#xf007;'); }
29
+ .icon-film { .ie7icon('&#xf008;'); }
30
+ .icon-th-large { .ie7icon('&#xf009;'); }
31
+ .icon-th { .ie7icon('&#xf00a;'); }
32
+ .icon-th-list { .ie7icon('&#xf00b;'); }
33
+ .icon-ok { .ie7icon('&#xf00c;'); }
34
+ .icon-remove { .ie7icon('&#xf00d;'); }
35
+ .icon-zoom-in { .ie7icon('&#xf00e;'); }
36
+
37
+ .icon-zoom-out { .ie7icon('&#xf010;'); }
38
+ .icon-off { .ie7icon('&#xf011;'); }
39
+ .icon-signal { .ie7icon('&#xf012;'); }
40
+ .icon-cog { .ie7icon('&#xf013;'); }
41
+ .icon-trash { .ie7icon('&#xf014;'); }
42
+ .icon-home { .ie7icon('&#xf015;'); }
43
+ .icon-file { .ie7icon('&#xf016;'); }
44
+ .icon-time { .ie7icon('&#xf017;'); }
45
+ .icon-road { .ie7icon('&#xf018;'); }
46
+ .icon-download-alt { .ie7icon('&#xf019;'); }
47
+ .icon-download { .ie7icon('&#xf01a;'); }
48
+ .icon-upload { .ie7icon('&#xf01b;'); }
49
+ .icon-inbox { .ie7icon('&#xf01c;'); }
50
+ .icon-play-circle { .ie7icon('&#xf01d;'); }
51
+ .icon-repeat { .ie7icon('&#xf01e;'); }
52
+
53
+ .icon-refresh { .ie7icon('&#xf021;'); }
54
+ .icon-list-alt { .ie7icon('&#xf022;'); }
55
+ .icon-lock { .ie7icon('&#xf023;'); }
56
+ .icon-flag { .ie7icon('&#xf024;'); }
57
+ .icon-headphones { .ie7icon('&#xf025;'); }
58
+ .icon-volume-off { .ie7icon('&#xf026;'); }
59
+ .icon-volume-down { .ie7icon('&#xf027;'); }
60
+ .icon-volume-up { .ie7icon('&#xf028;'); }
61
+ .icon-qrcode { .ie7icon('&#xf029;'); }
62
+ .icon-barcode { .ie7icon('&#xf02a;'); }
63
+ .icon-tag { .ie7icon('&#xf02b;'); }
64
+ .icon-tags { .ie7icon('&#xf02c;'); }
65
+ .icon-book { .ie7icon('&#xf02d;'); }
66
+ .icon-bookmark { .ie7icon('&#xf02e;'); }
67
+ .icon-print { .ie7icon('&#xf02f;'); }
68
+
69
+ .icon-camera { .ie7icon('&#xf030;'); }
70
+ .icon-font { .ie7icon('&#xf031;'); }
71
+ .icon-bold { .ie7icon('&#xf032;'); }
72
+ .icon-italic { .ie7icon('&#xf033;'); }
73
+ .icon-text-height { .ie7icon('&#xf034;'); }
74
+ .icon-text-width { .ie7icon('&#xf035;'); }
75
+ .icon-align-left { .ie7icon('&#xf036;'); }
76
+ .icon-align-center { .ie7icon('&#xf037;'); }
77
+ .icon-align-right { .ie7icon('&#xf038;'); }
78
+ .icon-align-justify { .ie7icon('&#xf039;'); }
79
+ .icon-list { .ie7icon('&#xf03a;'); }
80
+ .icon-indent-left { .ie7icon('&#xf03b;'); }
81
+ .icon-indent-right { .ie7icon('&#xf03c;'); }
82
+ .icon-facetime-video { .ie7icon('&#xf03d;'); }
83
+ .icon-picture { .ie7icon('&#xf03e;'); }
84
+
85
+ .icon-pencil { .ie7icon('&#xf040;'); }
86
+ .icon-map-marker { .ie7icon('&#xf041;'); }
87
+ .icon-adjust { .ie7icon('&#xf042;'); }
88
+ .icon-tint { .ie7icon('&#xf043;'); }
89
+ .icon-edit { .ie7icon('&#xf044;'); }
90
+ .icon-share { .ie7icon('&#xf045;'); }
91
+ .icon-check { .ie7icon('&#xf046;'); }
92
+ .icon-move { .ie7icon('&#xf047;'); }
93
+ .icon-step-backward { .ie7icon('&#xf048;'); }
94
+ .icon-fast-backward { .ie7icon('&#xf049;'); }
95
+ .icon-backward { .ie7icon('&#xf04a;'); }
96
+ .icon-play { .ie7icon('&#xf04b;'); }
97
+ .icon-pause { .ie7icon('&#xf04c;'); }
98
+ .icon-stop { .ie7icon('&#xf04d;'); }
99
+ .icon-forward { .ie7icon('&#xf04e;'); }
100
+
101
+ .icon-fast-forward { .ie7icon('&#xf050;'); }
102
+ .icon-step-forward { .ie7icon('&#xf051;'); }
103
+ .icon-eject { .ie7icon('&#xf052;'); }
104
+ .icon-chevron-left { .ie7icon('&#xf053;'); }
105
+ .icon-chevron-right { .ie7icon('&#xf054;'); }
106
+ .icon-plus-sign { .ie7icon('&#xf055;'); }
107
+ .icon-minus-sign { .ie7icon('&#xf056;'); }
108
+ .icon-remove-sign { .ie7icon('&#xf057;'); }
109
+ .icon-ok-sign { .ie7icon('&#xf058;'); }
110
+ .icon-question-sign { .ie7icon('&#xf059;'); }
111
+ .icon-info-sign { .ie7icon('&#xf05a;'); }
112
+ .icon-screenshot { .ie7icon('&#xf05b;'); }
113
+ .icon-remove-circle { .ie7icon('&#xf05c;'); }
114
+ .icon-ok-circle { .ie7icon('&#xf05d;'); }
115
+ .icon-ban-circle { .ie7icon('&#xf05e;'); }
116
+
117
+ .icon-arrow-left { .ie7icon('&#xf060;'); }
118
+ .icon-arrow-right { .ie7icon('&#xf061;'); }
119
+ .icon-arrow-up { .ie7icon('&#xf062;'); }
120
+ .icon-arrow-down { .ie7icon('&#xf063;'); }
121
+ .icon-share-alt { .ie7icon('&#xf064;'); }
122
+ .icon-resize-full { .ie7icon('&#xf065;'); }
123
+ .icon-resize-small { .ie7icon('&#xf066;'); }
124
+ .icon-plus { .ie7icon('&#xf067;'); }
125
+ .icon-minus { .ie7icon('&#xf068;'); }
126
+ .icon-asterisk { .ie7icon('&#xf069;'); }
127
+ .icon-exclamation-sign { .ie7icon('&#xf06a;'); }
128
+ .icon-gift { .ie7icon('&#xf06b;'); }
129
+ .icon-leaf { .ie7icon('&#xf06c;'); }
130
+ .icon-fire { .ie7icon('&#xf06d;'); }
131
+ .icon-eye-open { .ie7icon('&#xf06e;'); }
132
+
133
+ .icon-eye-close { .ie7icon('&#xf070;'); }
134
+ .icon-warning-sign { .ie7icon('&#xf071;'); }
135
+ .icon-plane { .ie7icon('&#xf072;'); }
136
+ .icon-calendar { .ie7icon('&#xf073;'); }
137
+ .icon-random { .ie7icon('&#xf074;'); }
138
+ .icon-comment { .ie7icon('&#xf075;'); }
139
+ .icon-magnet { .ie7icon('&#xf076;'); }
140
+ .icon-chevron-up { .ie7icon('&#xf077;'); }
141
+ .icon-chevron-down { .ie7icon('&#xf078;'); }
142
+ .icon-retweet { .ie7icon('&#xf079;'); }
143
+ .icon-shopping-cart { .ie7icon('&#xf07a;'); }
144
+ .icon-folder-close { .ie7icon('&#xf07b;'); }
145
+ .icon-folder-open { .ie7icon('&#xf07c;'); }
146
+ .icon-resize-vertical { .ie7icon('&#xf07d;'); }
147
+ .icon-resize-horizontal { .ie7icon('&#xf07e;'); }
148
+
149
+ .icon-bar-chart { .ie7icon('&#xf080;'); }
150
+ .icon-twitter-sign { .ie7icon('&#xf081;'); }
151
+ .icon-facebook-sign { .ie7icon('&#xf082;'); }
152
+ .icon-camera-retro { .ie7icon('&#xf083;'); }
153
+ .icon-key { .ie7icon('&#xf084;'); }
154
+ .icon-cogs { .ie7icon('&#xf085;'); }
155
+ .icon-comments { .ie7icon('&#xf086;'); }
156
+ .icon-thumbs-up { .ie7icon('&#xf087;'); }
157
+ .icon-thumbs-down { .ie7icon('&#xf088;'); }
158
+ .icon-star-half { .ie7icon('&#xf089;'); }
159
+ .icon-heart-empty { .ie7icon('&#xf08a;'); }
160
+ .icon-signout { .ie7icon('&#xf08b;'); }
161
+ .icon-linkedin-sign { .ie7icon('&#xf08c;'); }
162
+ .icon-pushpin { .ie7icon('&#xf08d;'); }
163
+ .icon-external-link { .ie7icon('&#xf08e;'); }
164
+
165
+ .icon-signin { .ie7icon('&#xf090;'); }
166
+ .icon-trophy { .ie7icon('&#xf091;'); }
167
+ .icon-github-sign { .ie7icon('&#xf092;'); }
168
+ .icon-upload-alt { .ie7icon('&#xf093;'); }
169
+ .icon-lemon { .ie7icon('&#xf094;'); }
170
+ .icon-phone { .ie7icon('&#xf095;'); }
171
+ .icon-check-empty { .ie7icon('&#xf096;'); }
172
+ .icon-bookmark-empty { .ie7icon('&#xf097;'); }
173
+ .icon-phone-sign { .ie7icon('&#xf098;'); }
174
+ .icon-twitter { .ie7icon('&#xf099;'); }
175
+ .icon-facebook { .ie7icon('&#xf09a;'); }
176
+ .icon-github { .ie7icon('&#xf09b;'); }
177
+ .icon-unlock { .ie7icon('&#xf09c;'); }
178
+ .icon-credit-card { .ie7icon('&#xf09d;'); }
179
+ .icon-rss { .ie7icon('&#xf09e;'); }
180
+
181
+ .icon-hdd { .ie7icon('&#xf0a0;'); }
182
+ .icon-bullhorn { .ie7icon('&#xf0a1;'); }
183
+ .icon-bell { .ie7icon('&#xf0a2;'); }
184
+ .icon-certificate { .ie7icon('&#xf0a3;'); }
185
+ .icon-hand-right { .ie7icon('&#xf0a4;'); }
186
+ .icon-hand-left { .ie7icon('&#xf0a5;'); }
187
+ .icon-hand-up { .ie7icon('&#xf0a6;'); }
188
+ .icon-hand-down { .ie7icon('&#xf0a7;'); }
189
+ .icon-circle-arrow-left { .ie7icon('&#xf0a8;'); }
190
+ .icon-circle-arrow-right { .ie7icon('&#xf0a9;'); }
191
+ .icon-circle-arrow-up { .ie7icon('&#xf0aa;'); }
192
+ .icon-circle-arrow-down { .ie7icon('&#xf0ab;'); }
193
+ .icon-globe { .ie7icon('&#xf0ac;'); }
194
+ .icon-wrench { .ie7icon('&#xf0ad;'); }
195
+ .icon-tasks { .ie7icon('&#xf0ae;'); }
196
+
197
+ .icon-filter { .ie7icon('&#xf0b0;'); }
198
+ .icon-briefcase { .ie7icon('&#xf0b1;'); }
199
+ .icon-fullscreen { .ie7icon('&#xf0b2;'); }
200
+
201
+ .icon-group { .ie7icon('&#xf0c0;'); }
202
+ .icon-link { .ie7icon('&#xf0c1;'); }
203
+ .icon-cloud { .ie7icon('&#xf0c2;'); }
204
+ .icon-beaker { .ie7icon('&#xf0c3;'); }
205
+ .icon-cut { .ie7icon('&#xf0c4;'); }
206
+ .icon-copy { .ie7icon('&#xf0c5;'); }
207
+ .icon-paper-clip { .ie7icon('&#xf0c6;'); }
208
+ .icon-save { .ie7icon('&#xf0c7;'); }
209
+ .icon-sign-blank { .ie7icon('&#xf0c8;'); }
210
+ .icon-reorder { .ie7icon('&#xf0c9;'); }
211
+ .icon-list-ul { .ie7icon('&#xf0ca;'); }
212
+ .icon-list-ol { .ie7icon('&#xf0cb;'); }
213
+ .icon-strikethrough { .ie7icon('&#xf0cc;'); }
214
+ .icon-underline { .ie7icon('&#xf0cd;'); }
215
+ .icon-table { .ie7icon('&#xf0ce;'); }
216
+
217
+ .icon-magic { .ie7icon('&#xf0d0;'); }
218
+ .icon-truck { .ie7icon('&#xf0d1;'); }
219
+ .icon-pinterest { .ie7icon('&#xf0d2;'); }
220
+ .icon-pinterest-sign { .ie7icon('&#xf0d3;'); }
221
+ .icon-google-plus-sign { .ie7icon('&#xf0d4;'); }
222
+ .icon-google-plus { .ie7icon('&#xf0d5;'); }
223
+ .icon-money { .ie7icon('&#xf0d6;'); }
224
+ .icon-caret-down { .ie7icon('&#xf0d7;'); }
225
+ .icon-caret-up { .ie7icon('&#xf0d8;'); }
226
+ .icon-caret-left { .ie7icon('&#xf0d9;'); }
227
+ .icon-caret-right { .ie7icon('&#xf0da;'); }
228
+ .icon-columns { .ie7icon('&#xf0db;'); }
229
+ .icon-sort { .ie7icon('&#xf0dc;'); }
230
+ .icon-sort-down { .ie7icon('&#xf0dd;'); }
231
+ .icon-sort-up { .ie7icon('&#xf0de;'); }
232
+
233
+ .icon-envelope-alt { .ie7icon('&#xf0e0;'); }
234
+ .icon-linkedin { .ie7icon('&#xf0e1;'); }
235
+ .icon-undo { .ie7icon('&#xf0e2;'); }
236
+ .icon-legal { .ie7icon('&#xf0e3;'); }
237
+ .icon-dashboard { .ie7icon('&#xf0e4;'); }
238
+ .icon-comment-alt { .ie7icon('&#xf0e5;'); }
239
+ .icon-comments-alt { .ie7icon('&#xf0e6;'); }
240
+ .icon-bolt { .ie7icon('&#xf0e7;'); }
241
+ .icon-sitemap { .ie7icon('&#xf0e8;'); }
242
+ .icon-umbrella { .ie7icon('&#xf0e9;'); }
243
+ .icon-paste { .ie7icon('&#xf0ea;'); }
244
+
245
+ .icon-user-md { .ie7icon('&#xf200;'); }