twitter-bootswatch-rails 2.3.1.2

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 (99) hide show
  1. data/README.md +259 -0
  2. data/Rakefile +57 -0
  3. data/lib/generators/bootswatch/import/import_generator.rb +50 -0
  4. data/lib/generators/bootswatch/install/install_generator.rb +120 -0
  5. data/lib/generators/bootswatch/install/templates/application.css.tt +6 -0
  6. data/lib/generators/bootswatch/install/templates/application.js.tt +5 -0
  7. data/lib/generators/bootswatch/install/templates/base.less.tt +8 -0
  8. data/lib/generators/bootswatch/install/templates/bootstrap.less +63 -0
  9. data/lib/generators/bootswatch/install/templates/bootswatch.coffee.tt +9 -0
  10. data/lib/generators/bootswatch/install/templates/bootswatch.less.tt +8 -0
  11. data/lib/generators/bootswatch/install/templates/loader.coffee.tt +25 -0
  12. data/lib/generators/bootswatch/install/templates/loader.css.less.tt +22 -0
  13. data/lib/generators/bootswatch/install/templates/mixins.less.tt +704 -0
  14. data/lib/generators/bootswatch/install/templates/variables.less.tt +303 -0
  15. data/lib/generators/bootswatch/layout/layout_generator.rb +23 -0
  16. data/lib/generators/bootswatch/layout/templates/layout.html.erb +50 -0
  17. data/lib/generators/bootswatch/layout/templates/layout.html.haml +30 -0
  18. data/lib/generators/bootswatch/themed/templates/_form.html.erb +16 -0
  19. data/lib/generators/bootswatch/themed/templates/_form.html.haml +10 -0
  20. data/lib/generators/bootswatch/themed/templates/edit.html.erb +6 -0
  21. data/lib/generators/bootswatch/themed/templates/edit.html.haml +4 -0
  22. data/lib/generators/bootswatch/themed/templates/index.html.erb +40 -0
  23. data/lib/generators/bootswatch/themed/templates/index.html.haml +25 -0
  24. data/lib/generators/bootswatch/themed/templates/new.html.erb +6 -0
  25. data/lib/generators/bootswatch/themed/templates/new.html.haml +4 -0
  26. data/lib/generators/bootswatch/themed/templates/show.html.erb +23 -0
  27. data/lib/generators/bootswatch/themed/templates/show.html.haml +15 -0
  28. data/lib/generators/bootswatch/themed/templates/simple_form/_form.html.erb +14 -0
  29. data/lib/generators/bootswatch/themed/templates/simple_form/_form.html.haml +11 -0
  30. data/lib/generators/bootswatch/themed/themed_generator.rb +99 -0
  31. data/lib/tasks/setup.thor +90 -0
  32. data/lib/twitter-bootswatch-rails.rb +10 -0
  33. data/lib/twitter/bootswatch/rails/bootswatch.rb +2 -0
  34. data/lib/twitter/bootswatch/rails/engine.rb +32 -0
  35. data/lib/twitter/bootswatch/rails/version.rb +7 -0
  36. data/vendor/assets/fonts/font-awesome/FontAwesome.otf +0 -0
  37. data/vendor/assets/fonts/font-awesome/fontawesome-webfont.eot +0 -0
  38. data/vendor/assets/fonts/font-awesome/fontawesome-webfont.svg +284 -0
  39. data/vendor/assets/fonts/font-awesome/fontawesome-webfont.ttf +0 -0
  40. data/vendor/assets/fonts/font-awesome/fontawesome-webfont.woff +0 -0
  41. data/vendor/assets/images/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
  42. data/vendor/assets/images/twitter/bootstrap/glyphicons-halflings.png +0 -0
  43. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-affix.js +117 -0
  44. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-alert.js +99 -0
  45. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-button.js +105 -0
  46. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-carousel.js +207 -0
  47. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-collapse.js +167 -0
  48. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-dropdown.js +165 -0
  49. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-modal.js +247 -0
  50. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-popover.js +114 -0
  51. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-scrollspy.js +162 -0
  52. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-tab.js +144 -0
  53. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-tooltip.js +361 -0
  54. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-transition.js +60 -0
  55. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-typeahead.js +335 -0
  56. data/vendor/toolkit/font-awesome/font-awesome-ie7.less +350 -0
  57. data/vendor/toolkit/font-awesome/font-awesome.less +537 -0
  58. data/vendor/toolkit/twitter/bootstrap/accordion.less +34 -0
  59. data/vendor/toolkit/twitter/bootstrap/alerts.less +79 -0
  60. data/vendor/toolkit/twitter/bootstrap/bootstrap.less +63 -0
  61. data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +24 -0
  62. data/vendor/toolkit/twitter/bootstrap/button-groups.less +229 -0
  63. data/vendor/toolkit/twitter/bootstrap/buttons.less +228 -0
  64. data/vendor/toolkit/twitter/bootstrap/carousel.less +158 -0
  65. data/vendor/toolkit/twitter/bootstrap/close.less +32 -0
  66. data/vendor/toolkit/twitter/bootstrap/code.less +61 -0
  67. data/vendor/toolkit/twitter/bootstrap/component-animations.less +22 -0
  68. data/vendor/toolkit/twitter/bootstrap/dropdowns.less +237 -0
  69. data/vendor/toolkit/twitter/bootstrap/forms.less +690 -0
  70. data/vendor/toolkit/twitter/bootstrap/grid.less +21 -0
  71. data/vendor/toolkit/twitter/bootstrap/hero-unit.less +25 -0
  72. data/vendor/toolkit/twitter/bootstrap/labels-badges.less +84 -0
  73. data/vendor/toolkit/twitter/bootstrap/layouts.less +16 -0
  74. data/vendor/toolkit/twitter/bootstrap/media.less +55 -0
  75. data/vendor/toolkit/twitter/bootstrap/mixins.less +702 -0
  76. data/vendor/toolkit/twitter/bootstrap/modals.less +95 -0
  77. data/vendor/toolkit/twitter/bootstrap/navbar.less +497 -0
  78. data/vendor/toolkit/twitter/bootstrap/navs.less +409 -0
  79. data/vendor/toolkit/twitter/bootstrap/pager.less +43 -0
  80. data/vendor/toolkit/twitter/bootstrap/pagination.less +123 -0
  81. data/vendor/toolkit/twitter/bootstrap/popovers.less +133 -0
  82. data/vendor/toolkit/twitter/bootstrap/progress-bars.less +122 -0
  83. data/vendor/toolkit/twitter/bootstrap/reset.less +216 -0
  84. data/vendor/toolkit/twitter/bootstrap/responsive-1200px-min.less +28 -0
  85. data/vendor/toolkit/twitter/bootstrap/responsive-767px-max.less +193 -0
  86. data/vendor/toolkit/twitter/bootstrap/responsive-768px-979px.less +19 -0
  87. data/vendor/toolkit/twitter/bootstrap/responsive-navbar.less +189 -0
  88. data/vendor/toolkit/twitter/bootstrap/responsive-utilities.less +59 -0
  89. data/vendor/toolkit/twitter/bootstrap/responsive.less +48 -0
  90. data/vendor/toolkit/twitter/bootstrap/scaffolding.less +53 -0
  91. data/vendor/toolkit/twitter/bootstrap/sprites.less +197 -0
  92. data/vendor/toolkit/twitter/bootstrap/tables.less +244 -0
  93. data/vendor/toolkit/twitter/bootstrap/thumbnails.less +53 -0
  94. data/vendor/toolkit/twitter/bootstrap/tooltip.less +70 -0
  95. data/vendor/toolkit/twitter/bootstrap/type.less +247 -0
  96. data/vendor/toolkit/twitter/bootstrap/utilities.less +30 -0
  97. data/vendor/toolkit/twitter/bootstrap/variables.less +301 -0
  98. data/vendor/toolkit/twitter/bootstrap/wells.less +29 -0
  99. metadata +269 -0
@@ -0,0 +1,60 @@
1
+ /* ===================================================
2
+ * bootstrap-transition.js v2.3.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,335 @@
1
+ /* =============================================================
2
+ * bootstrap-typeahead.js v2.3.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.source = this.options.source
37
+ this.$menu = $(this.options.menu)
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.position(), {
60
+ height: this.$element[0].offsetHeight
61
+ })
62
+
63
+ this.$menu
64
+ .insertAfter(this.$element)
65
+ .css({
66
+ top: pos.top + pos.height
67
+ , left: pos.left
68
+ })
69
+ .show()
70
+
71
+ this.shown = true
72
+ return this
73
+ }
74
+
75
+ , hide: function () {
76
+ this.$menu.hide()
77
+ this.shown = false
78
+ return this
79
+ }
80
+
81
+ , lookup: function (event) {
82
+ var items
83
+
84
+ this.query = this.$element.val()
85
+
86
+ if (!this.query || this.query.length < this.options.minLength) {
87
+ return this.shown ? this.hide() : this
88
+ }
89
+
90
+ items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source
91
+
92
+ return items ? this.process(items) : this
93
+ }
94
+
95
+ , process: function (items) {
96
+ var that = this
97
+
98
+ items = $.grep(items, function (item) {
99
+ return that.matcher(item)
100
+ })
101
+
102
+ items = this.sorter(items)
103
+
104
+ if (!items.length) {
105
+ return this.shown ? this.hide() : this
106
+ }
107
+
108
+ return this.render(items.slice(0, this.options.items)).show()
109
+ }
110
+
111
+ , matcher: function (item) {
112
+ return ~item.toLowerCase().indexOf(this.query.toLowerCase())
113
+ }
114
+
115
+ , sorter: function (items) {
116
+ var beginswith = []
117
+ , caseSensitive = []
118
+ , caseInsensitive = []
119
+ , item
120
+
121
+ while (item = items.shift()) {
122
+ if (!item.toLowerCase().indexOf(this.query.toLowerCase())) beginswith.push(item)
123
+ else if (~item.indexOf(this.query)) caseSensitive.push(item)
124
+ else caseInsensitive.push(item)
125
+ }
126
+
127
+ return beginswith.concat(caseSensitive, caseInsensitive)
128
+ }
129
+
130
+ , highlighter: function (item) {
131
+ var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')
132
+ return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
133
+ return '<strong>' + match + '</strong>'
134
+ })
135
+ }
136
+
137
+ , render: function (items) {
138
+ var that = this
139
+
140
+ items = $(items).map(function (i, item) {
141
+ i = $(that.options.item).attr('data-value', item)
142
+ i.find('a').html(that.highlighter(item))
143
+ return i[0]
144
+ })
145
+
146
+ items.first().addClass('active')
147
+ this.$menu.html(items)
148
+ return this
149
+ }
150
+
151
+ , next: function (event) {
152
+ var active = this.$menu.find('.active').removeClass('active')
153
+ , next = active.next()
154
+
155
+ if (!next.length) {
156
+ next = $(this.$menu.find('li')[0])
157
+ }
158
+
159
+ next.addClass('active')
160
+ }
161
+
162
+ , prev: function (event) {
163
+ var active = this.$menu.find('.active').removeClass('active')
164
+ , prev = active.prev()
165
+
166
+ if (!prev.length) {
167
+ prev = this.$menu.find('li').last()
168
+ }
169
+
170
+ prev.addClass('active')
171
+ }
172
+
173
+ , listen: function () {
174
+ this.$element
175
+ .on('focus', $.proxy(this.focus, this))
176
+ .on('blur', $.proxy(this.blur, this))
177
+ .on('keypress', $.proxy(this.keypress, this))
178
+ .on('keyup', $.proxy(this.keyup, this))
179
+
180
+ if (this.eventSupported('keydown')) {
181
+ this.$element.on('keydown', $.proxy(this.keydown, this))
182
+ }
183
+
184
+ this.$menu
185
+ .on('click', $.proxy(this.click, this))
186
+ .on('mouseenter', 'li', $.proxy(this.mouseenter, this))
187
+ .on('mouseleave', 'li', $.proxy(this.mouseleave, this))
188
+ }
189
+
190
+ , eventSupported: function(eventName) {
191
+ var isSupported = eventName in this.$element
192
+ if (!isSupported) {
193
+ this.$element.setAttribute(eventName, 'return;')
194
+ isSupported = typeof this.$element[eventName] === 'function'
195
+ }
196
+ return isSupported
197
+ }
198
+
199
+ , move: function (e) {
200
+ if (!this.shown) return
201
+
202
+ switch(e.keyCode) {
203
+ case 9: // tab
204
+ case 13: // enter
205
+ case 27: // escape
206
+ e.preventDefault()
207
+ break
208
+
209
+ case 38: // up arrow
210
+ e.preventDefault()
211
+ this.prev()
212
+ break
213
+
214
+ case 40: // down arrow
215
+ e.preventDefault()
216
+ this.next()
217
+ break
218
+ }
219
+
220
+ e.stopPropagation()
221
+ }
222
+
223
+ , keydown: function (e) {
224
+ this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
225
+ this.move(e)
226
+ }
227
+
228
+ , keypress: function (e) {
229
+ if (this.suppressKeyPressRepeat) return
230
+ this.move(e)
231
+ }
232
+
233
+ , keyup: function (e) {
234
+ switch(e.keyCode) {
235
+ case 40: // down arrow
236
+ case 38: // up arrow
237
+ case 16: // shift
238
+ case 17: // ctrl
239
+ case 18: // alt
240
+ break
241
+
242
+ case 9: // tab
243
+ case 13: // enter
244
+ if (!this.shown) return
245
+ this.select()
246
+ break
247
+
248
+ case 27: // escape
249
+ if (!this.shown) return
250
+ this.hide()
251
+ break
252
+
253
+ default:
254
+ this.lookup()
255
+ }
256
+
257
+ e.stopPropagation()
258
+ e.preventDefault()
259
+ }
260
+
261
+ , focus: function (e) {
262
+ this.focused = true
263
+ }
264
+
265
+ , blur: function (e) {
266
+ this.focused = false
267
+ if (!this.mousedover && this.shown) this.hide()
268
+ }
269
+
270
+ , click: function (e) {
271
+ e.stopPropagation()
272
+ e.preventDefault()
273
+ this.select()
274
+ this.$element.focus()
275
+ }
276
+
277
+ , mouseenter: function (e) {
278
+ this.mousedover = true
279
+ this.$menu.find('.active').removeClass('active')
280
+ $(e.currentTarget).addClass('active')
281
+ }
282
+
283
+ , mouseleave: function (e) {
284
+ this.mousedover = false
285
+ if (!this.focused && this.shown) this.hide()
286
+ }
287
+
288
+ }
289
+
290
+
291
+ /* TYPEAHEAD PLUGIN DEFINITION
292
+ * =========================== */
293
+
294
+ var old = $.fn.typeahead
295
+
296
+ $.fn.typeahead = function (option) {
297
+ return this.each(function () {
298
+ var $this = $(this)
299
+ , data = $this.data('typeahead')
300
+ , options = typeof option == 'object' && option
301
+ if (!data) $this.data('typeahead', (data = new Typeahead(this, options)))
302
+ if (typeof option == 'string') data[option]()
303
+ })
304
+ }
305
+
306
+ $.fn.typeahead.defaults = {
307
+ source: []
308
+ , items: 8
309
+ , menu: '<ul class="typeahead dropdown-menu"></ul>'
310
+ , item: '<li><a href="#"></a></li>'
311
+ , minLength: 1
312
+ }
313
+
314
+ $.fn.typeahead.Constructor = Typeahead
315
+
316
+
317
+ /* TYPEAHEAD NO CONFLICT
318
+ * =================== */
319
+
320
+ $.fn.typeahead.noConflict = function () {
321
+ $.fn.typeahead = old
322
+ return this
323
+ }
324
+
325
+
326
+ /* TYPEAHEAD DATA-API
327
+ * ================== */
328
+
329
+ $(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
330
+ var $this = $(this)
331
+ if ($this.data('typeahead')) return
332
+ $this.typeahead($this.data())
333
+ })
334
+
335
+ }(window.jQuery);
@@ -0,0 +1,350 @@
1
+ /*!
2
+ * Font Awesome 3.0.2
3
+ * the iconic font designed for use with Twitter Bootstrap
4
+ * -------------------------------------------------------
5
+ * The full suite of pictographic icons, examples, and documentation
6
+ * can be found at: http://fortawesome.github.com/Font-Awesome/
7
+ *
8
+ * License
9
+ * -------------------------------------------------------
10
+ * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
11
+ * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
12
+ * http://opensource.org/licenses/mit-license.html
13
+ * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
14
+ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
15
+ * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
16
+
17
+ * Contact
18
+ * -------------------------------------------------------
19
+ * Email: dave@davegandy.com
20
+ * Twitter: http://twitter.com/fortaweso_me
21
+ * Work: Lead Product Designer @ http://kyruus.com
22
+ */
23
+
24
+ .icon-large {
25
+ font-size: 4/3em;
26
+ margin-top: -4px;
27
+ padding-top: 3px;
28
+ margin-bottom: -4px;
29
+ padding-bottom: 3px;
30
+ vertical-align: middle;
31
+ }
32
+
33
+ .nav {
34
+ [class^="icon-"],
35
+ [class*=" icon-"] {
36
+ vertical-align: inherit;
37
+ margin-top: -4px;
38
+ padding-top: 3px;
39
+ margin-bottom: -4px;
40
+ padding-bottom: 3px;
41
+ &.icon-large {
42
+ vertical-align: -25%;
43
+ }
44
+ }
45
+ }
46
+
47
+ .nav-pills, .nav-tabs {
48
+ [class^="icon-"],
49
+ [class*=" icon-"] {
50
+ &.icon-large {
51
+ line-height: .75em;
52
+ margin-top: -7px;
53
+ padding-top: 5px;
54
+ margin-bottom: -5px;
55
+ padding-bottom: 4px;
56
+ }
57
+ }
58
+ }
59
+
60
+ .btn {
61
+ [class^="icon-"],
62
+ [class*=" icon-"] {
63
+ &.pull-left, &.pull-right { vertical-align: inherit; }
64
+ &.icon-large {
65
+ margin-top: -.5em;
66
+ }
67
+ }
68
+ }
69
+
70
+ a [class^="icon-"],
71
+ a [class*=" icon-"] {
72
+ cursor: pointer;
73
+ }
74
+
75
+ ul.icons {
76
+ text-indent: -1.5em;
77
+ margin-left: 3em;
78
+ }
79
+
80
+
81
+ .ie7icon(@inner) {
82
+ *zoom: ~"expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '@{inner}')";
83
+ }
84
+
85
+ .icon-glass { .ie7icon('&#xf000;'); }
86
+ .icon-music { .ie7icon('&#xf001;'); }
87
+ .icon-search { .ie7icon('&#xf002;'); }
88
+ .icon-envelope { .ie7icon('&#xf003;'); }
89
+ .icon-heart { .ie7icon('&#xf004;'); }
90
+ .icon-star { .ie7icon('&#xf005;'); }
91
+ .icon-star-empty { .ie7icon('&#xf006;'); }
92
+ .icon-user { .ie7icon('&#xf007;'); }
93
+ .icon-film { .ie7icon('&#xf008;'); }
94
+ .icon-th-large { .ie7icon('&#xf009;'); }
95
+ .icon-th { .ie7icon('&#xf00a;'); }
96
+ .icon-th-list { .ie7icon('&#xf00b;'); }
97
+ .icon-ok { .ie7icon('&#xf00c;'); }
98
+ .icon-remove { .ie7icon('&#xf00d;'); }
99
+ .icon-zoom-in { .ie7icon('&#xf00e;'); }
100
+
101
+ .icon-zoom-out { .ie7icon('&#xf010;'); }
102
+ .icon-off { .ie7icon('&#xf011;'); }
103
+ .icon-signal { .ie7icon('&#xf012;'); }
104
+ .icon-cog { .ie7icon('&#xf013;'); }
105
+ .icon-trash { .ie7icon('&#xf014;'); }
106
+ .icon-home { .ie7icon('&#xf015;'); }
107
+ .icon-file { .ie7icon('&#xf016;'); }
108
+ .icon-time { .ie7icon('&#xf017;'); }
109
+ .icon-road { .ie7icon('&#xf018;'); }
110
+ .icon-download-alt { .ie7icon('&#xf019;'); }
111
+ .icon-download { .ie7icon('&#xf01a;'); }
112
+ .icon-upload { .ie7icon('&#xf01b;'); }
113
+ .icon-inbox { .ie7icon('&#xf01c;'); }
114
+ .icon-play-circle { .ie7icon('&#xf01d;'); }
115
+ .icon-repeat { .ie7icon('&#xf01e;'); }
116
+
117
+ .icon-refresh { .ie7icon('&#xf021;'); }
118
+ .icon-list-alt { .ie7icon('&#xf022;'); }
119
+ .icon-lock { .ie7icon('&#xf023;'); }
120
+ .icon-flag { .ie7icon('&#xf024;'); }
121
+ .icon-headphones { .ie7icon('&#xf025;'); }
122
+ .icon-volume-off { .ie7icon('&#xf026;'); }
123
+ .icon-volume-down { .ie7icon('&#xf027;'); }
124
+ .icon-volume-up { .ie7icon('&#xf028;'); }
125
+ .icon-qrcode { .ie7icon('&#xf029;'); }
126
+ .icon-barcode { .ie7icon('&#xf02a;'); }
127
+ .icon-tag { .ie7icon('&#xf02b;'); }
128
+ .icon-tags { .ie7icon('&#xf02c;'); }
129
+ .icon-book { .ie7icon('&#xf02d;'); }
130
+ .icon-bookmark { .ie7icon('&#xf02e;'); }
131
+ .icon-print { .ie7icon('&#xf02f;'); }
132
+
133
+ .icon-camera { .ie7icon('&#xf030;'); }
134
+ .icon-font { .ie7icon('&#xf031;'); }
135
+ .icon-bold { .ie7icon('&#xf032;'); }
136
+ .icon-italic { .ie7icon('&#xf033;'); }
137
+ .icon-text-height { .ie7icon('&#xf034;'); }
138
+ .icon-text-width { .ie7icon('&#xf035;'); }
139
+ .icon-align-left { .ie7icon('&#xf036;'); }
140
+ .icon-align-center { .ie7icon('&#xf037;'); }
141
+ .icon-align-right { .ie7icon('&#xf038;'); }
142
+ .icon-align-justify { .ie7icon('&#xf039;'); }
143
+ .icon-list { .ie7icon('&#xf03a;'); }
144
+ .icon-indent-left { .ie7icon('&#xf03b;'); }
145
+ .icon-indent-right { .ie7icon('&#xf03c;'); }
146
+ .icon-facetime-video { .ie7icon('&#xf03d;'); }
147
+ .icon-picture { .ie7icon('&#xf03e;'); }
148
+
149
+ .icon-pencil { .ie7icon('&#xf040;'); }
150
+ .icon-map-marker { .ie7icon('&#xf041;'); }
151
+ .icon-adjust { .ie7icon('&#xf042;'); }
152
+ .icon-tint { .ie7icon('&#xf043;'); }
153
+ .icon-edit { .ie7icon('&#xf044;'); }
154
+ .icon-share { .ie7icon('&#xf045;'); }
155
+ .icon-check { .ie7icon('&#xf046;'); }
156
+ .icon-move { .ie7icon('&#xf047;'); }
157
+ .icon-step-backward { .ie7icon('&#xf048;'); }
158
+ .icon-fast-backward { .ie7icon('&#xf049;'); }
159
+ .icon-backward { .ie7icon('&#xf04a;'); }
160
+ .icon-play { .ie7icon('&#xf04b;'); }
161
+ .icon-pause { .ie7icon('&#xf04c;'); }
162
+ .icon-stop { .ie7icon('&#xf04d;'); }
163
+ .icon-forward { .ie7icon('&#xf04e;'); }
164
+
165
+ .icon-fast-forward { .ie7icon('&#xf050;'); }
166
+ .icon-step-forward { .ie7icon('&#xf051;'); }
167
+ .icon-eject { .ie7icon('&#xf052;'); }
168
+ .icon-chevron-left { .ie7icon('&#xf053;'); }
169
+ .icon-chevron-right { .ie7icon('&#xf054;'); }
170
+ .icon-plus-sign { .ie7icon('&#xf055;'); }
171
+ .icon-minus-sign { .ie7icon('&#xf056;'); }
172
+ .icon-remove-sign { .ie7icon('&#xf057;'); }
173
+ .icon-ok-sign { .ie7icon('&#xf058;'); }
174
+ .icon-question-sign { .ie7icon('&#xf059;'); }
175
+ .icon-info-sign { .ie7icon('&#xf05a;'); }
176
+ .icon-screenshot { .ie7icon('&#xf05b;'); }
177
+ .icon-remove-circle { .ie7icon('&#xf05c;'); }
178
+ .icon-ok-circle { .ie7icon('&#xf05d;'); }
179
+ .icon-ban-circle { .ie7icon('&#xf05e;'); }
180
+
181
+ .icon-arrow-left { .ie7icon('&#xf060;'); }
182
+ .icon-arrow-right { .ie7icon('&#xf061;'); }
183
+ .icon-arrow-up { .ie7icon('&#xf062;'); }
184
+ .icon-arrow-down { .ie7icon('&#xf063;'); }
185
+ .icon-share-alt { .ie7icon('&#xf064;'); }
186
+ .icon-resize-full { .ie7icon('&#xf065;'); }
187
+ .icon-resize-small { .ie7icon('&#xf066;'); }
188
+ .icon-plus { .ie7icon('&#xf067;'); }
189
+ .icon-minus { .ie7icon('&#xf068;'); }
190
+ .icon-asterisk { .ie7icon('&#xf069;'); }
191
+ .icon-exclamation-sign { .ie7icon('&#xf06a;'); }
192
+ .icon-gift { .ie7icon('&#xf06b;'); }
193
+ .icon-leaf { .ie7icon('&#xf06c;'); }
194
+ .icon-fire { .ie7icon('&#xf06d;'); }
195
+ .icon-eye-open { .ie7icon('&#xf06e;'); }
196
+
197
+ .icon-eye-close { .ie7icon('&#xf070;'); }
198
+ .icon-warning-sign { .ie7icon('&#xf071;'); }
199
+ .icon-plane { .ie7icon('&#xf072;'); }
200
+ .icon-calendar { .ie7icon('&#xf073;'); }
201
+ .icon-random { .ie7icon('&#xf074;'); }
202
+ .icon-comment { .ie7icon('&#xf075;'); }
203
+ .icon-magnet { .ie7icon('&#xf076;'); }
204
+ .icon-chevron-up { .ie7icon('&#xf077;'); }
205
+ .icon-chevron-down { .ie7icon('&#xf078;'); }
206
+ .icon-retweet { .ie7icon('&#xf079;'); }
207
+ .icon-shopping-cart { .ie7icon('&#xf07a;'); }
208
+ .icon-folder-close { .ie7icon('&#xf07b;'); }
209
+ .icon-folder-open { .ie7icon('&#xf07c;'); }
210
+ .icon-resize-vertical { .ie7icon('&#xf07d;'); }
211
+ .icon-resize-horizontal { .ie7icon('&#xf07e;'); }
212
+
213
+ .icon-bar-chart { .ie7icon('&#xf080;'); }
214
+ .icon-twitter-sign { .ie7icon('&#xf081;'); }
215
+ .icon-facebook-sign { .ie7icon('&#xf082;'); }
216
+ .icon-camera-retro { .ie7icon('&#xf083;'); }
217
+ .icon-key { .ie7icon('&#xf084;'); }
218
+ .icon-cogs { .ie7icon('&#xf085;'); }
219
+ .icon-comments { .ie7icon('&#xf086;'); }
220
+ .icon-thumbs-up { .ie7icon('&#xf087;'); }
221
+ .icon-thumbs-down { .ie7icon('&#xf088;'); }
222
+ .icon-star-half { .ie7icon('&#xf089;'); }
223
+ .icon-heart-empty { .ie7icon('&#xf08a;'); }
224
+ .icon-signout { .ie7icon('&#xf08b;'); }
225
+ .icon-linkedin-sign { .ie7icon('&#xf08c;'); }
226
+ .icon-pushpin { .ie7icon('&#xf08d;'); }
227
+ .icon-external-link { .ie7icon('&#xf08e;'); }
228
+
229
+ .icon-signin { .ie7icon('&#xf090;'); }
230
+ .icon-trophy { .ie7icon('&#xf091;'); }
231
+ .icon-github-sign { .ie7icon('&#xf092;'); }
232
+ .icon-upload-alt { .ie7icon('&#xf093;'); }
233
+ .icon-lemon { .ie7icon('&#xf094;'); }
234
+ .icon-phone { .ie7icon('&#xf095;'); }
235
+ .icon-check-empty { .ie7icon('&#xf096;'); }
236
+ .icon-bookmark-empty { .ie7icon('&#xf097;'); }
237
+ .icon-phone-sign { .ie7icon('&#xf098;'); }
238
+ .icon-twitter { .ie7icon('&#xf099;'); }
239
+ .icon-facebook { .ie7icon('&#xf09a;'); }
240
+ .icon-github { .ie7icon('&#xf09b;'); }
241
+ .icon-unlock { .ie7icon('&#xf09c;'); }
242
+ .icon-credit-card { .ie7icon('&#xf09d;'); }
243
+ .icon-rss { .ie7icon('&#xf09e;'); }
244
+
245
+ .icon-hdd { .ie7icon('&#xf0a0;'); }
246
+ .icon-bullhorn { .ie7icon('&#xf0a1;'); }
247
+ .icon-bell { .ie7icon('&#xf0a2;'); }
248
+ .icon-certificate { .ie7icon('&#xf0a3;'); }
249
+ .icon-hand-right { .ie7icon('&#xf0a4;'); }
250
+ .icon-hand-left { .ie7icon('&#xf0a5;'); }
251
+ .icon-hand-up { .ie7icon('&#xf0a6;'); }
252
+ .icon-hand-down { .ie7icon('&#xf0a7;'); }
253
+ .icon-circle-arrow-left { .ie7icon('&#xf0a8;'); }
254
+ .icon-circle-arrow-right { .ie7icon('&#xf0a9;'); }
255
+ .icon-circle-arrow-up { .ie7icon('&#xf0aa;'); }
256
+ .icon-circle-arrow-down { .ie7icon('&#xf0ab;'); }
257
+ .icon-globe { .ie7icon('&#xf0ac;'); }
258
+ .icon-wrench { .ie7icon('&#xf0ad;'); }
259
+ .icon-tasks { .ie7icon('&#xf0ae;'); }
260
+
261
+ .icon-filter { .ie7icon('&#xf0b0;'); }
262
+ .icon-briefcase { .ie7icon('&#xf0b1;'); }
263
+ .icon-fullscreen { .ie7icon('&#xf0b2;'); }
264
+
265
+ .icon-group { .ie7icon('&#xf0c0;'); }
266
+ .icon-link { .ie7icon('&#xf0c1;'); }
267
+ .icon-cloud { .ie7icon('&#xf0c2;'); }
268
+ .icon-beaker { .ie7icon('&#xf0c3;'); }
269
+ .icon-cut { .ie7icon('&#xf0c4;'); }
270
+ .icon-copy { .ie7icon('&#xf0c5;'); }
271
+ .icon-paper-clip { .ie7icon('&#xf0c6;'); }
272
+ .icon-save { .ie7icon('&#xf0c7;'); }
273
+ .icon-sign-blank { .ie7icon('&#xf0c8;'); }
274
+ .icon-reorder { .ie7icon('&#xf0c9;'); }
275
+ .icon-list-ul { .ie7icon('&#xf0ca;'); }
276
+ .icon-list-ol { .ie7icon('&#xf0cb;'); }
277
+ .icon-strikethrough { .ie7icon('&#xf0cc;'); }
278
+ .icon-underline { .ie7icon('&#xf0cd;'); }
279
+ .icon-table { .ie7icon('&#xf0ce;'); }
280
+
281
+ .icon-magic { .ie7icon('&#xf0d0;'); }
282
+ .icon-truck { .ie7icon('&#xf0d1;'); }
283
+ .icon-pinterest { .ie7icon('&#xf0d2;'); }
284
+ .icon-pinterest-sign { .ie7icon('&#xf0d3;'); }
285
+ .icon-google-plus-sign { .ie7icon('&#xf0d4;'); }
286
+ .icon-google-plus { .ie7icon('&#xf0d5;'); }
287
+ .icon-money { .ie7icon('&#xf0d6;'); }
288
+ .icon-caret-down { .ie7icon('&#xf0d7;'); }
289
+ .icon-caret-up { .ie7icon('&#xf0d8;'); }
290
+ .icon-caret-left { .ie7icon('&#xf0d9;'); }
291
+ .icon-caret-right { .ie7icon('&#xf0da;'); }
292
+ .icon-columns { .ie7icon('&#xf0db;'); }
293
+ .icon-sort { .ie7icon('&#xf0dc;'); }
294
+ .icon-sort-down { .ie7icon('&#xf0dd;'); }
295
+ .icon-sort-up { .ie7icon('&#xf0de;'); }
296
+
297
+ .icon-envelope-alt { .ie7icon('&#xf0e0;'); }
298
+ .icon-linkedin { .ie7icon('&#xf0e1;'); }
299
+ .icon-undo { .ie7icon('&#xf0e2;'); }
300
+ .icon-legal { .ie7icon('&#xf0e3;'); }
301
+ .icon-dashboard { .ie7icon('&#xf0e4;'); }
302
+ .icon-comment-alt { .ie7icon('&#xf0e5;'); }
303
+ .icon-comments-alt { .ie7icon('&#xf0e6;'); }
304
+ .icon-bolt { .ie7icon('&#xf0e7;'); }
305
+ .icon-sitemap { .ie7icon('&#xf0e8;'); }
306
+ .icon-umbrella { .ie7icon('&#xf0e9;'); }
307
+ .icon-paste { .ie7icon('&#xf0ea;'); }
308
+ .icon-lightbulb { .ie7icon('&#xf0eb;'); }
309
+ .icon-exchange { .ie7icon('&#xf0ec;'); }
310
+ .icon-cloud-download { .ie7icon('&#xf0ed;'); }
311
+ .icon-cloud-upload { .ie7icon('&#xf0ee;'); }
312
+
313
+ .icon-user-md { .ie7icon('&#xf0f0;'); }
314
+ .icon-stethoscope { .ie7icon('&#xf0f1;'); }
315
+ .icon-suitcase { .ie7icon('&#xf0f2;'); }
316
+ .icon-bell-alt { .ie7icon('&#xf0f3;'); }
317
+ .icon-coffee { .ie7icon('&#xf0f4;'); }
318
+ .icon-food { .ie7icon('&#xf0f5;'); }
319
+ .icon-file-alt { .ie7icon('&#xf0f6;'); }
320
+ .icon-building { .ie7icon('&#xf0f7;'); }
321
+ .icon-hospital { .ie7icon('&#xf0f8;'); }
322
+ .icon-ambulance { .ie7icon('&#xf0f9;'); }
323
+ .icon-medkit { .ie7icon('&#xf0fa;'); }
324
+ .icon-fighter-jet { .ie7icon('&#xf0fb;'); }
325
+ .icon-beer { .ie7icon('&#xf0fc;'); }
326
+ .icon-h-sign { .ie7icon('&#xf0fd;'); }
327
+ .icon-plus-sign-alt { .ie7icon('&#xf0fe;'); }
328
+
329
+ .icon-double-angle-left { .ie7icon('&#xf100;'); }
330
+ .icon-double-angle-right { .ie7icon('&#xf101;'); }
331
+ .icon-double-angle-up { .ie7icon('&#xf102;'); }
332
+ .icon-double-angle-down { .ie7icon('&#xf103;'); }
333
+ .icon-angle-left { .ie7icon('&#xf104;'); }
334
+ .icon-angle-right { .ie7icon('&#xf105;'); }
335
+ .icon-angle-up { .ie7icon('&#xf106;'); }
336
+ .icon-angle-down { .ie7icon('&#xf107;'); }
337
+ .icon-desktop { .ie7icon('&#xf108;'); }
338
+ .icon-laptop { .ie7icon('&#xf109;'); }
339
+ .icon-tablet { .ie7icon('&#xf10a;'); }
340
+ .icon-mobile-phone { .ie7icon('&#xf10b;'); }
341
+ .icon-circle-blank { .ie7icon('&#xf10c;'); }
342
+ .icon-quote-left { .ie7icon('&#xf10d;'); }
343
+ .icon-quote-right { .ie7icon('&#xf10e;'); }
344
+
345
+ .icon-spinner { .ie7icon('&#xf110;'); }
346
+ .icon-circle { .ie7icon('&#xf111;'); }
347
+ .icon-reply { .ie7icon('&#xf112;'); }
348
+ .icon-github-alt { .ie7icon('&#xf113;'); }
349
+ .icon-folder-close-alt { .ie7icon('&#xf114;'); }
350
+ .icon-folder-open-alt { .ie7icon('&#xf115;'); }