locomotivecms_wagon 1.4.0 → 1.5.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -0
  3. data/Gemfile +6 -2
  4. data/README.md +7 -1
  5. data/bin/wagon +3 -0
  6. data/generators/blank/Gemfile.tt +1 -3
  7. data/generators/blank/config/site.yml.tt +3 -3
  8. data/generators/bootstrap/config/site.yml.tt +3 -3
  9. data/generators/bootstrap3/Gemfile.tt +1 -3
  10. data/generators/bootstrap3/app/views/pages/index.liquid +21 -63
  11. data/generators/bootstrap3/app/views/pages/index.liquid.haml +15 -57
  12. data/generators/bootstrap3/config/deploy.yml +15 -15
  13. data/generators/bootstrap3/config/site.yml.tt +2 -2
  14. data/generators/bootstrap3/icon.png +0 -0
  15. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.eot +0 -0
  16. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.svg +201 -200
  17. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.ttf +0 -0
  18. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.woff +0 -0
  19. data/generators/{bootstrap2/app/content_types → bootstrap3/public/images}/.empty_directory +0 -0
  20. data/generators/bootstrap3/public/javascripts/bootstrap/affix.js +137 -0
  21. data/generators/bootstrap3/public/javascripts/bootstrap/alert.js +88 -0
  22. data/generators/bootstrap3/public/javascripts/bootstrap/button.js +107 -0
  23. data/generators/bootstrap3/public/javascripts/bootstrap/carousel.js +205 -0
  24. data/generators/bootstrap3/public/javascripts/bootstrap/collapse.js +170 -0
  25. data/generators/bootstrap3/public/javascripts/bootstrap/dropdown.js +147 -0
  26. data/generators/bootstrap3/public/javascripts/bootstrap/modal.js +243 -0
  27. data/generators/bootstrap3/public/javascripts/bootstrap/popover.js +110 -0
  28. data/generators/bootstrap3/public/javascripts/bootstrap/scrollspy.js +153 -0
  29. data/generators/bootstrap3/public/javascripts/bootstrap/tab.js +125 -0
  30. data/generators/bootstrap3/public/javascripts/bootstrap/tooltip.js +399 -0
  31. data/generators/bootstrap3/public/javascripts/bootstrap/transition.js +48 -0
  32. data/generators/bootstrap3/public/javascripts/bootstrap.min.js +12 -6
  33. data/generators/bootstrap3/public/stylesheets/application.css +1 -0
  34. data/generators/bootstrap3/public/stylesheets/application.css.scss +8 -0
  35. data/generators/bootstrap3/public/stylesheets/bootstrap/_alerts.scss +67 -0
  36. data/generators/bootstrap3/public/stylesheets/bootstrap/_badges.scss +55 -0
  37. data/generators/bootstrap3/public/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
  38. data/generators/bootstrap3/public/stylesheets/bootstrap/_button-groups.scss +226 -0
  39. data/generators/bootstrap3/public/stylesheets/bootstrap/_buttons.scss +159 -0
  40. data/generators/bootstrap3/public/stylesheets/bootstrap/_carousel.scss +232 -0
  41. data/generators/bootstrap3/public/stylesheets/bootstrap/_close.scss +35 -0
  42. data/generators/bootstrap3/public/stylesheets/bootstrap/_code.scss +63 -0
  43. data/generators/bootstrap3/public/stylesheets/bootstrap/_component-animations.scss +29 -0
  44. data/generators/bootstrap3/public/stylesheets/bootstrap/_dropdowns.scss +213 -0
  45. data/generators/bootstrap3/public/stylesheets/bootstrap/_forms.scss +436 -0
  46. data/generators/bootstrap3/public/stylesheets/bootstrap/_glyphicons.scss +233 -0
  47. data/generators/bootstrap3/public/stylesheets/bootstrap/_grid.scss +84 -0
  48. data/generators/bootstrap3/public/stylesheets/bootstrap/_input-groups.scss +162 -0
  49. data/generators/bootstrap3/public/stylesheets/bootstrap/_jumbotron.scss +44 -0
  50. data/generators/bootstrap3/public/stylesheets/bootstrap/_labels.scss +64 -0
  51. data/generators/bootstrap3/public/stylesheets/bootstrap/_list-group.scss +110 -0
  52. data/generators/bootstrap3/public/stylesheets/bootstrap/_media.scss +56 -0
  53. data/generators/bootstrap3/public/stylesheets/bootstrap/_mixins.scss +947 -0
  54. data/generators/bootstrap3/public/stylesheets/bootstrap/_modals.scss +139 -0
  55. data/generators/bootstrap3/public/stylesheets/bootstrap/_navbar.scss +620 -0
  56. data/generators/bootstrap3/public/stylesheets/bootstrap/_navs.scss +242 -0
  57. data/generators/bootstrap3/public/stylesheets/bootstrap/_normalize.scss +423 -0
  58. data/generators/bootstrap3/public/stylesheets/bootstrap/_pager.scss +55 -0
  59. data/generators/bootstrap3/public/stylesheets/bootstrap/_pagination.scss +88 -0
  60. data/generators/bootstrap3/public/stylesheets/bootstrap/_panels.scss +241 -0
  61. data/generators/bootstrap3/public/stylesheets/bootstrap/_popovers.scss +133 -0
  62. data/generators/bootstrap3/public/stylesheets/bootstrap/_print.scss +101 -0
  63. data/generators/bootstrap3/public/stylesheets/bootstrap/_progress-bars.scss +80 -0
  64. data/generators/bootstrap3/public/stylesheets/bootstrap/_responsive-utilities.scss +74 -0
  65. data/generators/bootstrap3/public/stylesheets/bootstrap/_scaffolding.scss +134 -0
  66. data/generators/bootstrap3/public/stylesheets/bootstrap/_tables.scss +233 -0
  67. data/generators/bootstrap3/public/stylesheets/bootstrap/_theme.scss +247 -0
  68. data/generators/bootstrap3/public/stylesheets/bootstrap/_thumbnails.scss +38 -0
  69. data/generators/bootstrap3/public/stylesheets/bootstrap/_tooltip.scss +95 -0
  70. data/generators/bootstrap3/public/stylesheets/bootstrap/_type.scss +284 -0
  71. data/generators/bootstrap3/public/stylesheets/bootstrap/_utilities.scss +56 -0
  72. data/generators/bootstrap3/public/stylesheets/bootstrap/_variables.scss +833 -0
  73. data/generators/bootstrap3/public/stylesheets/bootstrap/_wells.scss +29 -0
  74. data/generators/bootstrap3/public/stylesheets/bootstrap/bootstrap.css.scss +49 -0
  75. data/generators/bootstrap3/public/stylesheets/bootstrap.css +2035 -3056
  76. data/generators/bootstrap3/public/stylesheets/bootstrap.css.scss +49 -0
  77. data/generators/cloned/Gemfile.tt +1 -3
  78. data/generators/content_type/app/content_types/%slug%.yml.tt +57 -0
  79. data/generators/content_type/data/{%name%.yml.tt → %slug%.yml.tt} +2 -2
  80. data/generators/{bootstrap2 → foundation5}/Gemfile.tt +1 -3
  81. data/generators/{bootstrap2/data → foundation5/app/content_types}/.empty_directory +0 -0
  82. data/generators/{foundation → foundation5}/app/views/pages/404.liquid +1 -4
  83. data/generators/{foundation → foundation5}/app/views/pages/404.liquid.haml +1 -1
  84. data/generators/foundation5/app/views/pages/index.liquid +196 -0
  85. data/generators/foundation5/app/views/pages/index.liquid.haml +157 -0
  86. data/generators/foundation5/config/deploy.yml +15 -0
  87. data/generators/{bootstrap2 → foundation5}/config/site.yml.tt +3 -4
  88. data/generators/{bootstrap2 → foundation5}/config/translations.yml +0 -0
  89. data/generators/{bootstrap2 → foundation5}/config.ru +0 -0
  90. data/generators/{bootstrap2/public/samples → foundation5/data}/.empty_directory +0 -0
  91. data/generators/foundation5/favicon.ico +0 -0
  92. data/generators/foundation5/icon.png +0 -0
  93. data/generators/{foundation/app/content_types → foundation5/public/fonts}/.empty_directory +0 -0
  94. data/generators/{foundation/data → foundation5/public/images}/.empty_directory +0 -0
  95. data/generators/foundation5/public/javascripts/foundation/foundation.abide.js +299 -0
  96. data/generators/foundation5/public/javascripts/foundation/foundation.accordion.js +59 -0
  97. data/generators/foundation5/public/javascripts/foundation/foundation.alert.js +43 -0
  98. data/generators/foundation5/public/javascripts/foundation/foundation.clearing.js +534 -0
  99. data/generators/foundation5/public/javascripts/foundation/foundation.dropdown.js +311 -0
  100. data/generators/foundation5/public/javascripts/foundation/foundation.equalizer.js +74 -0
  101. data/generators/foundation5/public/javascripts/foundation/foundation.interchange.js +331 -0
  102. data/generators/foundation5/public/javascripts/foundation/foundation.joyride.js +843 -0
  103. data/generators/foundation5/public/javascripts/foundation/foundation.js +611 -0
  104. data/generators/foundation5/public/javascripts/foundation/foundation.magellan.js +178 -0
  105. data/generators/foundation5/public/javascripts/foundation/foundation.offcanvas.js +108 -0
  106. data/generators/foundation5/public/javascripts/foundation/foundation.orbit.js +610 -0
  107. data/generators/foundation5/public/javascripts/foundation/foundation.reveal.js +437 -0
  108. data/generators/foundation5/public/javascripts/foundation/foundation.slider.js +199 -0
  109. data/generators/foundation5/public/javascripts/foundation/foundation.tab.js +167 -0
  110. data/generators/foundation5/public/javascripts/foundation/foundation.tooltip.js +298 -0
  111. data/generators/foundation5/public/javascripts/foundation/foundation.topbar.js +425 -0
  112. data/generators/foundation5/public/javascripts/foundation.js +4161 -0
  113. data/generators/foundation5/public/javascripts/foundation.min.js +10 -0
  114. data/generators/{foundation → foundation5}/public/javascripts/vendor/custom.modernizr.js +0 -0
  115. data/generators/foundation5/public/javascripts/vendor/custom.modernizr.min.js +1 -0
  116. data/generators/foundation5/public/javascripts/vendor/fastclick.js +9 -0
  117. data/generators/foundation5/public/javascripts/vendor/fastclick.min.js +11 -0
  118. data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.js +645 -0
  119. data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.min.js +1 -0
  120. data/generators/foundation5/public/javascripts/vendor/jquery.cookie.js +8 -0
  121. data/generators/foundation5/public/javascripts/vendor/jquery.cookie.min.js +8 -0
  122. data/generators/foundation5/public/javascripts/vendor/jquery.js +26 -0
  123. data/generators/foundation5/public/javascripts/vendor/jquery.min.js +27 -0
  124. data/generators/foundation5/public/javascripts/vendor/modernizr.js +8 -0
  125. data/generators/foundation5/public/javascripts/vendor/modernizr.min.js +1 -0
  126. data/generators/foundation5/public/javascripts/vendor/placeholder.js +2 -0
  127. data/generators/foundation5/public/javascripts/vendor/placeholder.min.js +1 -0
  128. data/generators/{foundation/public/fonts → foundation5/public/samples}/.empty_directory +0 -0
  129. data/generators/foundation5/public/stylesheets/application.css +2 -0
  130. data/generators/foundation5/public/stylesheets/application.css.scss +3 -0
  131. data/generators/foundation5/public/stylesheets/foundation/_functions.scss +101 -0
  132. data/generators/foundation5/public/stylesheets/foundation/_settings.scss +1296 -0
  133. data/generators/foundation5/public/stylesheets/foundation/components/_accordion.scss +53 -0
  134. data/generators/foundation5/public/stylesheets/foundation/components/_alert-boxes.scss +126 -0
  135. data/generators/foundation5/public/stylesheets/foundation/components/_block-grid.scss +132 -0
  136. data/generators/foundation5/public/stylesheets/foundation/components/_breadcrumbs.scss +127 -0
  137. data/generators/foundation5/public/stylesheets/foundation/components/_button-groups.scss +108 -0
  138. data/generators/foundation5/public/stylesheets/foundation/components/_buttons.scss +222 -0
  139. data/generators/foundation5/public/stylesheets/foundation/components/_clearing.scss +247 -0
  140. data/generators/foundation5/public/stylesheets/foundation/components/_dropdown-buttons.scss +129 -0
  141. data/generators/foundation5/public/stylesheets/foundation/components/_dropdown.scss +248 -0
  142. data/generators/foundation5/public/stylesheets/foundation/components/_flex-video.scss +51 -0
  143. data/generators/foundation5/public/stylesheets/foundation/components/_forms.scss +498 -0
  144. data/generators/foundation5/public/stylesheets/foundation/components/_global.scss +434 -0
  145. data/generators/foundation5/public/stylesheets/foundation/components/_grid.scss +260 -0
  146. data/generators/foundation5/public/stylesheets/foundation/components/_inline-lists.scss +57 -0
  147. data/generators/foundation5/public/stylesheets/foundation/components/_joyride.scss +220 -0
  148. data/generators/foundation5/public/stylesheets/foundation/components/_keystrokes.scss +61 -0
  149. data/generators/foundation5/public/stylesheets/foundation/components/_labels.scss +104 -0
  150. data/generators/foundation5/public/stylesheets/foundation/components/_magellan.scss +34 -0
  151. data/generators/foundation5/public/stylesheets/foundation/components/_offcanvas.scss +356 -0
  152. data/generators/foundation5/public/stylesheets/foundation/components/_orbit.scss +423 -0
  153. data/generators/foundation5/public/stylesheets/foundation/components/_pagination.scss +150 -0
  154. data/generators/foundation5/public/stylesheets/foundation/components/_panels.scss +90 -0
  155. data/generators/foundation5/public/stylesheets/foundation/components/_pricing-tables.scss +150 -0
  156. data/generators/foundation5/public/stylesheets/foundation/components/_progress-bars.scss +79 -0
  157. data/generators/foundation5/public/stylesheets/foundation/components/_range-slider.scss +148 -0
  158. data/generators/foundation5/public/stylesheets/foundation/components/_reveal-new.scss +0 -0
  159. data/generators/foundation5/public/stylesheets/foundation/components/_reveal.scss +216 -0
  160. data/generators/foundation5/public/stylesheets/foundation/components/_side-nav.scss +115 -0
  161. data/generators/foundation5/public/stylesheets/foundation/components/_split-buttons.scss +191 -0
  162. data/generators/foundation5/public/stylesheets/foundation/components/_sub-nav.scss +125 -0
  163. data/generators/foundation5/public/stylesheets/foundation/components/_switch.scss +294 -0
  164. data/generators/foundation5/public/stylesheets/foundation/components/_tables.scss +129 -0
  165. data/generators/foundation5/public/stylesheets/foundation/components/_tabs.scss +109 -0
  166. data/generators/foundation5/public/stylesheets/foundation/components/_thumbs.scss +68 -0
  167. data/generators/foundation5/public/stylesheets/foundation/components/_tooltips.scss +140 -0
  168. data/generators/foundation5/public/stylesheets/foundation/components/_top-bar.scss +659 -0
  169. data/generators/foundation5/public/stylesheets/foundation/components/_type.scss +513 -0
  170. data/generators/foundation5/public/stylesheets/foundation/components/_visibility.scss +408 -0
  171. data/generators/foundation5/public/stylesheets/foundation.css +5398 -0
  172. data/generators/foundation5/public/stylesheets/foundation.css.scss +45 -0
  173. data/generators/foundation5/public/stylesheets/normalize.css +425 -0
  174. data/generators/foundation5/public/stylesheets/normalize.css.scss +425 -0
  175. data/generators/{foundation → line_case}/Gemfile.tt +1 -3
  176. data/generators/line_case/app/content_types/categories.yml +56 -0
  177. data/generators/line_case/app/content_types/emails.yml +35 -0
  178. data/generators/line_case/app/content_types/projects.yml +58 -0
  179. data/generators/{bootstrap2 → line_case}/app/views/pages/404.liquid.haml +3 -2
  180. data/generators/line_case/app/views/pages/email-registered.liquid.haml +13 -0
  181. data/generators/line_case/app/views/pages/index.liquid.haml +110 -0
  182. data/generators/line_case/app/views/pages/projects/content_type_template.liquid.haml +32 -0
  183. data/generators/line_case/app/views/snippets/newsletter_form.liquid.haml +14 -0
  184. data/generators/line_case/app/views/snippets/projects.liquid.haml +17 -0
  185. data/generators/line_case/app/views/snippets/social_links.liquid.haml +19 -0
  186. data/generators/line_case/config/deploy.yml +15 -0
  187. data/generators/{foundation → line_case}/config/site.yml.tt +3 -3
  188. data/generators/{foundation → line_case}/config/translations.yml +0 -0
  189. data/generators/{foundation → line_case}/config.ru +0 -0
  190. data/generators/line_case/data/categories.yml +8 -0
  191. data/generators/line_case/data/emails.yml +2 -0
  192. data/generators/line_case/data/projects.yml +39 -0
  193. data/generators/line_case/icon.png +0 -0
  194. data/generators/line_case/public/images/banner-header.png +0 -0
  195. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.abide.js +0 -0
  196. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.alerts.js +0 -0
  197. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.clearing.js +0 -0
  198. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.cookie.js +0 -0
  199. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.dropdown.js +0 -0
  200. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.forms.js +0 -0
  201. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.interchange.js +0 -0
  202. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.joyride.js +0 -0
  203. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.js +0 -0
  204. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.magellan.js +0 -0
  205. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.orbit.js +0 -0
  206. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.placeholder.js +0 -0
  207. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.reveal.js +0 -0
  208. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.section.js +0 -0
  209. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.tooltips.js +0 -0
  210. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.topbar.js +0 -0
  211. data/generators/{foundation → line_case}/public/javascripts/foundation.min.js +0 -0
  212. data/generators/line_case/public/javascripts/vendor/custom.modernizr.js +4 -0
  213. data/generators/{foundation → line_case}/public/javascripts/vendor/jquery.js +0 -0
  214. data/generators/{foundation → line_case}/public/javascripts/vendor/zepto.js +0 -0
  215. data/generators/line_case/public/samples/projects/sample.jpeg +0 -0
  216. data/generators/line_case/public/samples/projects/sample2.jpeg +0 -0
  217. data/generators/line_case/public/samples/projects/sample3.jpeg +0 -0
  218. data/generators/line_case/public/samples/projects/sample4.jpeg +0 -0
  219. data/generators/line_case/public/samples/projects/sample5.jpeg +0 -0
  220. data/generators/line_case/public/samples/projects/sample6.jpeg +0 -0
  221. data/generators/line_case/public/samples/projects/sample7.jpeg +0 -0
  222. data/generators/line_case/public/samples/projects/sample8.jpeg +0 -0
  223. data/generators/line_case/public/stylesheets/_variables.css.sass +20 -0
  224. data/generators/line_case/public/stylesheets/foundation/_variables.scss +1290 -0
  225. data/generators/line_case/public/stylesheets/foundation/components/_alert-boxes.scss +107 -0
  226. data/generators/line_case/public/stylesheets/foundation/components/_block-grid.scss +71 -0
  227. data/generators/line_case/public/stylesheets/foundation/components/_breadcrumbs.scss +124 -0
  228. data/generators/line_case/public/stylesheets/foundation/components/_button-groups.scss +89 -0
  229. data/generators/line_case/public/stylesheets/foundation/components/_buttons.scss +230 -0
  230. data/generators/line_case/public/stylesheets/foundation/components/_clearing.scss +227 -0
  231. data/generators/line_case/public/stylesheets/foundation/components/_custom-forms.scss +278 -0
  232. data/generators/line_case/public/stylesheets/foundation/components/_dropdown-buttons.scss +115 -0
  233. data/generators/line_case/public/stylesheets/foundation/components/_dropdown.scss +151 -0
  234. data/generators/line_case/public/stylesheets/foundation/components/_flex-video.scss +46 -0
  235. data/generators/line_case/public/stylesheets/foundation/components/_forms.scss +411 -0
  236. data/generators/line_case/public/stylesheets/foundation/components/_global.scss +366 -0
  237. data/generators/line_case/public/stylesheets/foundation/components/_grid-5.scss +214 -0
  238. data/generators/line_case/public/stylesheets/foundation/components/_grid.scss +188 -0
  239. data/generators/line_case/public/stylesheets/foundation/components/_inline-lists.scss +53 -0
  240. data/generators/line_case/public/stylesheets/foundation/components/_joyride.scss +217 -0
  241. data/generators/line_case/public/stylesheets/foundation/components/_keystrokes.scss +57 -0
  242. data/generators/line_case/public/stylesheets/foundation/components/_labels.scss +85 -0
  243. data/generators/line_case/public/stylesheets/foundation/components/_magellan.scss +23 -0
  244. data/generators/line_case/public/stylesheets/foundation/components/_orbit.scss +340 -0
  245. data/generators/line_case/public/stylesheets/foundation/components/_pagination.scss +140 -0
  246. data/generators/line_case/public/stylesheets/foundation/components/_panels.scss +83 -0
  247. data/generators/line_case/public/stylesheets/foundation/components/_pricing-tables.scss +131 -0
  248. data/generators/line_case/public/stylesheets/foundation/components/_progress-bars.scss +71 -0
  249. data/generators/line_case/public/stylesheets/foundation/components/_reveal.scss +136 -0
  250. data/generators/line_case/public/stylesheets/foundation/components/_section.scss +391 -0
  251. data/generators/line_case/public/stylesheets/foundation/components/_side-nav.scss +69 -0
  252. data/generators/line_case/public/stylesheets/foundation/components/_split-buttons.scss +167 -0
  253. data/generators/line_case/public/stylesheets/foundation/components/_sub-nav.scss +84 -0
  254. data/generators/line_case/public/stylesheets/foundation/components/_switch.scss +266 -0
  255. data/generators/line_case/public/stylesheets/foundation/components/_tables.scss +84 -0
  256. data/generators/line_case/public/stylesheets/foundation/components/_thumbs.scss +53 -0
  257. data/generators/line_case/public/stylesheets/foundation/components/_tooltips.scss +117 -0
  258. data/generators/line_case/public/stylesheets/foundation/components/_top-bar.scss +576 -0
  259. data/generators/line_case/public/stylesheets/foundation/components/_type.scss +435 -0
  260. data/generators/line_case/public/stylesheets/foundation/components/_visibility.scss +322 -0
  261. data/generators/line_case/public/stylesheets/foundation.css.scss +43 -0
  262. data/generators/{foundation → line_case}/public/stylesheets/foundation.min.css +0 -0
  263. data/generators/{foundation/public/stylesheets/normalize.css → line_case/public/stylesheets/normalize.css.scss} +5 -5
  264. data/generators/line_case/public/stylesheets/pages.css.sass +163 -0
  265. data/generators/page/template.liquid.haml.tt +8 -5
  266. data/generators/page/template.liquid.tt +6 -2
  267. data/lib/locomotive/wagon/cli.rb +139 -43
  268. data/lib/locomotive/wagon/generators/content_type.rb +26 -10
  269. data/lib/locomotive/wagon/generators/page.rb +41 -25
  270. data/lib/locomotive/wagon/generators/site/base.rb +53 -0
  271. data/lib/locomotive/wagon/generators/site/blank.rb +9 -2
  272. data/lib/locomotive/wagon/generators/site/bootstrap2.rb +8 -2
  273. data/lib/locomotive/wagon/generators/site/bootstrap3.rb +20 -2
  274. data/lib/locomotive/wagon/generators/site/cloned.rb +4 -0
  275. data/lib/locomotive/wagon/generators/site/{foundation.rb → foundation4.rb} +10 -4
  276. data/lib/locomotive/wagon/generators/site/foundation5.rb +48 -0
  277. data/lib/locomotive/wagon/generators/site/line_case.rb +20 -0
  278. data/lib/locomotive/wagon/generators/site/unzip.rb +10 -2
  279. data/lib/locomotive/wagon/generators/site.rb +48 -2
  280. data/lib/locomotive/wagon/generators/snippet.rb +2 -1
  281. data/lib/locomotive/wagon/liquid/drops/content_types.rb +9 -3
  282. data/lib/locomotive/wagon/liquid/drops/page.rb +9 -1
  283. data/lib/locomotive/wagon/liquid/scopeable.rb +1 -1
  284. data/lib/locomotive/wagon/liquid/tags/fetch_page.rb +41 -0
  285. data/lib/locomotive/wagon/liquid/tags/model_form.rb +67 -0
  286. data/lib/locomotive/wagon/liquid/tags/path_helper.rb +2 -2
  287. data/lib/locomotive/wagon/liquid/tags/with_scope.rb +1 -1
  288. data/lib/locomotive/wagon/listen.rb +18 -10
  289. data/lib/locomotive/wagon/logger.rb +4 -0
  290. data/lib/locomotive/wagon/misc/core_ext.rb +8 -0
  291. data/lib/locomotive/wagon/misc/deployment_connection.rb +120 -0
  292. data/lib/locomotive/wagon/misc/hosting_api.rb +115 -0
  293. data/lib/locomotive/wagon/misc/httparty.rb +2 -0
  294. data/lib/locomotive/wagon/misc/livereload.rb +43 -0
  295. data/lib/locomotive/wagon/misc/mounter.rb +1 -1
  296. data/lib/locomotive/wagon/misc/tcp_port.rb +42 -0
  297. data/lib/locomotive/wagon/misc/thor.rb +15 -0
  298. data/lib/locomotive/wagon/server/entry_submission.rb +69 -38
  299. data/lib/locomotive/wagon/server/middleware.rb +4 -2
  300. data/lib/locomotive/wagon/server/page.rb +2 -2
  301. data/lib/locomotive/wagon/server.rb +11 -7
  302. data/lib/locomotive/wagon/version.rb +1 -1
  303. data/lib/locomotive/wagon.rb +141 -30
  304. data/locomotivecms_wagon.gemspec +7 -6
  305. data/spec/fixtures/default/app/content_types/bands.yml +3 -1
  306. data/spec/fixtures/default/app/views/pages/all.liquid.haml +3 -0
  307. data/spec/fixtures/default/app/views/pages/events.liquid.haml +21 -0
  308. data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +11 -1
  309. data/spec/fixtures/default/app/views/pages/index.liquid.haml +1 -1
  310. data/spec/fixtures/default/data/bands.yml +3 -0
  311. data/spec/integration/server/basic_spec.rb +1 -0
  312. data/spec/integration/server/contact_form_spec.rb +1 -1
  313. data/spec/integration/server/liquid_spec.rb +8 -1
  314. data/spec/integration/server/new_contact_form_spec.rb +67 -0
  315. data/spec/integration/server/with_scope_spec.rb +10 -0
  316. data/spec/spec_helper.rb +3 -0
  317. metadata +339 -144
  318. data/generators/bootstrap2/app/views/pages/404.liquid +0 -13
  319. data/generators/bootstrap2/app/views/pages/index.liquid +0 -98
  320. data/generators/bootstrap2/app/views/pages/index.liquid.haml +0 -80
  321. data/generators/bootstrap2/app/views/snippets/footer.liquid +0 -3
  322. data/generators/bootstrap2/app/views/snippets/footer.liquid.haml +0 -2
  323. data/generators/bootstrap2/config/deploy.yml +0 -15
  324. data/generators/bootstrap2/public/fonts/FontAwesome.otf +0 -0
  325. data/generators/bootstrap2/public/fonts/fontawesome-webfont.eot +0 -0
  326. data/generators/bootstrap2/public/fonts/fontawesome-webfont.svg +0 -399
  327. data/generators/bootstrap2/public/fonts/fontawesome-webfont.ttf +0 -0
  328. data/generators/bootstrap2/public/fonts/fontawesome-webfont.woff +0 -0
  329. data/generators/bootstrap2/public/javascripts/bootstrap.js +0 -2280
  330. data/generators/bootstrap2/public/javascripts/bootstrap.min.js +0 -6
  331. data/generators/bootstrap2/public/stylesheets/application.css.scss +0 -39
  332. data/generators/bootstrap2/public/stylesheets/bootstrap-responsive.css +0 -1109
  333. data/generators/bootstrap2/public/stylesheets/bootstrap-responsive.min.css +0 -9
  334. data/generators/bootstrap2/public/stylesheets/bootstrap.css +0 -5568
  335. data/generators/bootstrap2/public/stylesheets/bootstrap.min.css +0 -9
  336. data/generators/bootstrap2/public/stylesheets/fonts/awesome.css.scss +0 -3
  337. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome-ie7.css +0 -1203
  338. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome-ie7.min.css +0 -384
  339. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome.css +0 -1470
  340. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome.min.css +0 -403
  341. data/generators/bootstrap3/public/javascripts/bootstrap.js +0 -1999
  342. data/generators/bootstrap3/public/stylesheets/bootstrap-theme.css +0 -384
  343. data/generators/bootstrap3/public/stylesheets/bootstrap-theme.min.css +0 -1
  344. data/generators/bootstrap3/public/stylesheets/bootstrap.min.css +0 -9
  345. data/generators/content_type/app/content_types/%name%.yml.tt +0 -58
  346. data/generators/foundation/app/views/pages/index.liquid +0 -150
  347. data/generators/foundation/app/views/pages/index.liquid.haml +0 -125
  348. data/generators/foundation/app/views/snippets/footer.liquid +0 -16
  349. data/generators/foundation/app/views/snippets/footer.liquid.haml +0 -22
  350. data/generators/foundation/config/deploy.yml +0 -15
  351. data/generators/foundation/public/samples/.empty_directory +0 -1
  352. data/generators/foundation/public/stylesheets/foundation.css +0 -4727
@@ -1,1203 +0,0 @@
1
- /*!
2
- * Font Awesome 3.2.1
3
- * the iconic font designed for Bootstrap
4
- * ------------------------------------------------------------------------------
5
- * The full suite of pictographic icons, examples, and documentation can be
6
- * found at http://fontawesome.io. Stay up to date on Twitter at
7
- * http://twitter.com/fontawesome.
8
- *
9
- * License
10
- * ------------------------------------------------------------------------------
11
- * - The Font Awesome font is licensed under SIL OFL 1.1 -
12
- * http://scripts.sil.org/OFL
13
- * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
14
- * http://opensource.org/licenses/mit-license.html
15
- * - Font Awesome documentation licensed under CC BY 3.0 -
16
- * http://creativecommons.org/licenses/by/3.0/
17
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
18
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
19
- *
20
- * Author - Dave Gandy
21
- * ------------------------------------------------------------------------------
22
- * Email: dave@fontawesome.io
23
- * Twitter: http://twitter.com/davegandy
24
- * Work: Lead Product Designer @ Kyruus - http://kyruus.com
25
- */
26
- .icon-large {
27
- font-size: 1.3333333333333333em;
28
- margin-top: -4px;
29
- padding-top: 3px;
30
- margin-bottom: -4px;
31
- padding-bottom: 3px;
32
- vertical-align: middle;
33
- }
34
- .nav [class^="icon-"],
35
- .nav [class*=" icon-"] {
36
- vertical-align: inherit;
37
- margin-top: -4px;
38
- padding-top: 3px;
39
- margin-bottom: -4px;
40
- padding-bottom: 3px;
41
- }
42
- .nav [class^="icon-"].icon-large,
43
- .nav [class*=" icon-"].icon-large {
44
- vertical-align: -25%;
45
- }
46
- .nav-pills [class^="icon-"].icon-large,
47
- .nav-tabs [class^="icon-"].icon-large,
48
- .nav-pills [class*=" icon-"].icon-large,
49
- .nav-tabs [class*=" icon-"].icon-large {
50
- line-height: .75em;
51
- margin-top: -7px;
52
- padding-top: 5px;
53
- margin-bottom: -5px;
54
- padding-bottom: 4px;
55
- }
56
- .btn [class^="icon-"].pull-left,
57
- .btn [class*=" icon-"].pull-left,
58
- .btn [class^="icon-"].pull-right,
59
- .btn [class*=" icon-"].pull-right {
60
- vertical-align: inherit;
61
- }
62
- .btn [class^="icon-"].icon-large,
63
- .btn [class*=" icon-"].icon-large {
64
- margin-top: -0.5em;
65
- }
66
- a [class^="icon-"],
67
- a [class*=" icon-"] {
68
- cursor: pointer;
69
- }
70
- .icon-glass {
71
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
72
- }
73
- .icon-music {
74
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
75
- }
76
- .icon-search {
77
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
78
- }
79
- .icon-envelope-alt {
80
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
81
- }
82
- .icon-heart {
83
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
84
- }
85
- .icon-star {
86
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
87
- }
88
- .icon-star-empty {
89
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
90
- }
91
- .icon-user {
92
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
93
- }
94
- .icon-film {
95
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
96
- }
97
- .icon-th-large {
98
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
99
- }
100
- .icon-th {
101
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
102
- }
103
- .icon-th-list {
104
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
105
- }
106
- .icon-ok {
107
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
108
- }
109
- .icon-remove {
110
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
111
- }
112
- .icon-zoom-in {
113
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
114
- }
115
- .icon-zoom-out {
116
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
117
- }
118
- .icon-off {
119
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
120
- }
121
- .icon-power-off {
122
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
123
- }
124
- .icon-signal {
125
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
126
- }
127
- .icon-cog {
128
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
129
- }
130
- .icon-gear {
131
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
132
- }
133
- .icon-trash {
134
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
135
- }
136
- .icon-home {
137
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
138
- }
139
- .icon-file-alt {
140
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
141
- }
142
- .icon-time {
143
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
144
- }
145
- .icon-road {
146
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
147
- }
148
- .icon-download-alt {
149
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
150
- }
151
- .icon-download {
152
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
153
- }
154
- .icon-upload {
155
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
156
- }
157
- .icon-inbox {
158
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
159
- }
160
- .icon-play-circle {
161
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
162
- }
163
- .icon-repeat {
164
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
165
- }
166
- .icon-rotate-right {
167
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
168
- }
169
- .icon-refresh {
170
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
171
- }
172
- .icon-list-alt {
173
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
174
- }
175
- .icon-lock {
176
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
177
- }
178
- .icon-flag {
179
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
180
- }
181
- .icon-headphones {
182
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
183
- }
184
- .icon-volume-off {
185
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
186
- }
187
- .icon-volume-down {
188
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
189
- }
190
- .icon-volume-up {
191
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
192
- }
193
- .icon-qrcode {
194
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
195
- }
196
- .icon-barcode {
197
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
198
- }
199
- .icon-tag {
200
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
201
- }
202
- .icon-tags {
203
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
204
- }
205
- .icon-book {
206
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
207
- }
208
- .icon-bookmark {
209
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
210
- }
211
- .icon-print {
212
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
213
- }
214
- .icon-camera {
215
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
216
- }
217
- .icon-font {
218
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
219
- }
220
- .icon-bold {
221
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
222
- }
223
- .icon-italic {
224
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
225
- }
226
- .icon-text-height {
227
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
228
- }
229
- .icon-text-width {
230
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
231
- }
232
- .icon-align-left {
233
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
234
- }
235
- .icon-align-center {
236
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
237
- }
238
- .icon-align-right {
239
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
240
- }
241
- .icon-align-justify {
242
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
243
- }
244
- .icon-list {
245
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
246
- }
247
- .icon-indent-left {
248
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
249
- }
250
- .icon-indent-right {
251
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
252
- }
253
- .icon-facetime-video {
254
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
255
- }
256
- .icon-picture {
257
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
258
- }
259
- .icon-pencil {
260
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
261
- }
262
- .icon-map-marker {
263
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
264
- }
265
- .icon-adjust {
266
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
267
- }
268
- .icon-tint {
269
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
270
- }
271
- .icon-edit {
272
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
273
- }
274
- .icon-share {
275
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
276
- }
277
- .icon-check {
278
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
279
- }
280
- .icon-move {
281
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
282
- }
283
- .icon-step-backward {
284
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
285
- }
286
- .icon-fast-backward {
287
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
288
- }
289
- .icon-backward {
290
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
291
- }
292
- .icon-play {
293
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
294
- }
295
- .icon-pause {
296
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
297
- }
298
- .icon-stop {
299
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
300
- }
301
- .icon-forward {
302
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
303
- }
304
- .icon-fast-forward {
305
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
306
- }
307
- .icon-step-forward {
308
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
309
- }
310
- .icon-eject {
311
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
312
- }
313
- .icon-chevron-left {
314
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
315
- }
316
- .icon-chevron-right {
317
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
318
- }
319
- .icon-plus-sign {
320
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
321
- }
322
- .icon-minus-sign {
323
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
324
- }
325
- .icon-remove-sign {
326
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
327
- }
328
- .icon-ok-sign {
329
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
330
- }
331
- .icon-question-sign {
332
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
333
- }
334
- .icon-info-sign {
335
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
336
- }
337
- .icon-screenshot {
338
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
339
- }
340
- .icon-remove-circle {
341
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
342
- }
343
- .icon-ok-circle {
344
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
345
- }
346
- .icon-ban-circle {
347
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
348
- }
349
- .icon-arrow-left {
350
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
351
- }
352
- .icon-arrow-right {
353
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
354
- }
355
- .icon-arrow-up {
356
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
357
- }
358
- .icon-arrow-down {
359
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
360
- }
361
- .icon-share-alt {
362
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
363
- }
364
- .icon-mail-forward {
365
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
366
- }
367
- .icon-resize-full {
368
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
369
- }
370
- .icon-resize-small {
371
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
372
- }
373
- .icon-plus {
374
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
375
- }
376
- .icon-minus {
377
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
378
- }
379
- .icon-asterisk {
380
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
381
- }
382
- .icon-exclamation-sign {
383
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
384
- }
385
- .icon-gift {
386
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
387
- }
388
- .icon-leaf {
389
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
390
- }
391
- .icon-fire {
392
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
393
- }
394
- .icon-eye-open {
395
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
396
- }
397
- .icon-eye-close {
398
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
399
- }
400
- .icon-warning-sign {
401
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
402
- }
403
- .icon-plane {
404
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
405
- }
406
- .icon-calendar {
407
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
408
- }
409
- .icon-random {
410
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
411
- }
412
- .icon-comment {
413
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
414
- }
415
- .icon-magnet {
416
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
417
- }
418
- .icon-chevron-up {
419
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
420
- }
421
- .icon-chevron-down {
422
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
423
- }
424
- .icon-retweet {
425
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
426
- }
427
- .icon-shopping-cart {
428
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
429
- }
430
- .icon-folder-close {
431
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
432
- }
433
- .icon-folder-open {
434
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
435
- }
436
- .icon-resize-vertical {
437
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
438
- }
439
- .icon-resize-horizontal {
440
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
441
- }
442
- .icon-bar-chart {
443
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
444
- }
445
- .icon-twitter-sign {
446
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
447
- }
448
- .icon-facebook-sign {
449
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
450
- }
451
- .icon-camera-retro {
452
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
453
- }
454
- .icon-key {
455
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
456
- }
457
- .icon-cogs {
458
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
459
- }
460
- .icon-gears {
461
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
462
- }
463
- .icon-comments {
464
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
465
- }
466
- .icon-thumbs-up-alt {
467
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
468
- }
469
- .icon-thumbs-down-alt {
470
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
471
- }
472
- .icon-star-half {
473
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
474
- }
475
- .icon-heart-empty {
476
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
477
- }
478
- .icon-signout {
479
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
480
- }
481
- .icon-linkedin-sign {
482
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
483
- }
484
- .icon-pushpin {
485
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
486
- }
487
- .icon-external-link {
488
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
489
- }
490
- .icon-signin {
491
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
492
- }
493
- .icon-trophy {
494
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
495
- }
496
- .icon-github-sign {
497
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
498
- }
499
- .icon-upload-alt {
500
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
501
- }
502
- .icon-lemon {
503
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
504
- }
505
- .icon-phone {
506
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
507
- }
508
- .icon-check-empty {
509
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
510
- }
511
- .icon-unchecked {
512
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
513
- }
514
- .icon-bookmark-empty {
515
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
516
- }
517
- .icon-phone-sign {
518
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
519
- }
520
- .icon-twitter {
521
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
522
- }
523
- .icon-facebook {
524
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
525
- }
526
- .icon-github {
527
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
528
- }
529
- .icon-unlock {
530
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
531
- }
532
- .icon-credit-card {
533
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
534
- }
535
- .icon-rss {
536
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
537
- }
538
- .icon-hdd {
539
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
540
- }
541
- .icon-bullhorn {
542
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
543
- }
544
- .icon-bell {
545
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
546
- }
547
- .icon-certificate {
548
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
549
- }
550
- .icon-hand-right {
551
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
552
- }
553
- .icon-hand-left {
554
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
555
- }
556
- .icon-hand-up {
557
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
558
- }
559
- .icon-hand-down {
560
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
561
- }
562
- .icon-circle-arrow-left {
563
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
564
- }
565
- .icon-circle-arrow-right {
566
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
567
- }
568
- .icon-circle-arrow-up {
569
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
570
- }
571
- .icon-circle-arrow-down {
572
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
573
- }
574
- .icon-globe {
575
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
576
- }
577
- .icon-wrench {
578
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
579
- }
580
- .icon-tasks {
581
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
582
- }
583
- .icon-filter {
584
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
585
- }
586
- .icon-briefcase {
587
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
588
- }
589
- .icon-fullscreen {
590
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
591
- }
592
- .icon-group {
593
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
594
- }
595
- .icon-link {
596
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
597
- }
598
- .icon-cloud {
599
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
600
- }
601
- .icon-beaker {
602
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
603
- }
604
- .icon-cut {
605
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
606
- }
607
- .icon-copy {
608
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
609
- }
610
- .icon-paper-clip {
611
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
612
- }
613
- .icon-paperclip {
614
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
615
- }
616
- .icon-save {
617
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
618
- }
619
- .icon-sign-blank {
620
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
621
- }
622
- .icon-reorder {
623
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
624
- }
625
- .icon-list-ul {
626
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
627
- }
628
- .icon-list-ol {
629
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
630
- }
631
- .icon-strikethrough {
632
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
633
- }
634
- .icon-underline {
635
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
636
- }
637
- .icon-table {
638
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
639
- }
640
- .icon-magic {
641
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
642
- }
643
- .icon-truck {
644
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
645
- }
646
- .icon-pinterest {
647
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
648
- }
649
- .icon-pinterest-sign {
650
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
651
- }
652
- .icon-google-plus-sign {
653
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
654
- }
655
- .icon-google-plus {
656
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
657
- }
658
- .icon-money {
659
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
660
- }
661
- .icon-caret-down {
662
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
663
- }
664
- .icon-caret-up {
665
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
666
- }
667
- .icon-caret-left {
668
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
669
- }
670
- .icon-caret-right {
671
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
672
- }
673
- .icon-columns {
674
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
675
- }
676
- .icon-sort {
677
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
678
- }
679
- .icon-sort-down {
680
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
681
- }
682
- .icon-sort-up {
683
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
684
- }
685
- .icon-envelope {
686
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
687
- }
688
- .icon-linkedin {
689
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
690
- }
691
- .icon-undo {
692
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
693
- }
694
- .icon-rotate-left {
695
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
696
- }
697
- .icon-legal {
698
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
699
- }
700
- .icon-dashboard {
701
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
702
- }
703
- .icon-comment-alt {
704
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
705
- }
706
- .icon-comments-alt {
707
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
708
- }
709
- .icon-bolt {
710
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
711
- }
712
- .icon-sitemap {
713
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
714
- }
715
- .icon-umbrella {
716
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
717
- }
718
- .icon-paste {
719
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
720
- }
721
- .icon-lightbulb {
722
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
723
- }
724
- .icon-exchange {
725
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
726
- }
727
- .icon-cloud-download {
728
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
729
- }
730
- .icon-cloud-upload {
731
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
732
- }
733
- .icon-user-md {
734
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
735
- }
736
- .icon-stethoscope {
737
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
738
- }
739
- .icon-suitcase {
740
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
741
- }
742
- .icon-bell-alt {
743
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
744
- }
745
- .icon-coffee {
746
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
747
- }
748
- .icon-food {
749
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
750
- }
751
- .icon-file-text-alt {
752
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
753
- }
754
- .icon-building {
755
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
756
- }
757
- .icon-hospital {
758
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
759
- }
760
- .icon-ambulance {
761
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
762
- }
763
- .icon-medkit {
764
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
765
- }
766
- .icon-fighter-jet {
767
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
768
- }
769
- .icon-beer {
770
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
771
- }
772
- .icon-h-sign {
773
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
774
- }
775
- .icon-plus-sign-alt {
776
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
777
- }
778
- .icon-double-angle-left {
779
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
780
- }
781
- .icon-double-angle-right {
782
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
783
- }
784
- .icon-double-angle-up {
785
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
786
- }
787
- .icon-double-angle-down {
788
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
789
- }
790
- .icon-angle-left {
791
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
792
- }
793
- .icon-angle-right {
794
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
795
- }
796
- .icon-angle-up {
797
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
798
- }
799
- .icon-angle-down {
800
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
801
- }
802
- .icon-desktop {
803
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
804
- }
805
- .icon-laptop {
806
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
807
- }
808
- .icon-tablet {
809
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
810
- }
811
- .icon-mobile-phone {
812
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
813
- }
814
- .icon-circle-blank {
815
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
816
- }
817
- .icon-quote-left {
818
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
819
- }
820
- .icon-quote-right {
821
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
822
- }
823
- .icon-spinner {
824
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
825
- }
826
- .icon-circle {
827
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
828
- }
829
- .icon-reply {
830
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
831
- }
832
- .icon-mail-reply {
833
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
834
- }
835
- .icon-github-alt {
836
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
837
- }
838
- .icon-folder-close-alt {
839
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
840
- }
841
- .icon-folder-open-alt {
842
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
843
- }
844
- .icon-expand-alt {
845
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
846
- }
847
- .icon-collapse-alt {
848
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
849
- }
850
- .icon-smile {
851
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
852
- }
853
- .icon-frown {
854
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
855
- }
856
- .icon-meh {
857
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
858
- }
859
- .icon-gamepad {
860
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
861
- }
862
- .icon-keyboard {
863
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
864
- }
865
- .icon-flag-alt {
866
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
867
- }
868
- .icon-flag-checkered {
869
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
870
- }
871
- .icon-terminal {
872
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
873
- }
874
- .icon-code {
875
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
876
- }
877
- .icon-reply-all {
878
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
879
- }
880
- .icon-mail-reply-all {
881
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
882
- }
883
- .icon-star-half-empty {
884
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
885
- }
886
- .icon-star-half-full {
887
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
888
- }
889
- .icon-location-arrow {
890
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
891
- }
892
- .icon-crop {
893
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
894
- }
895
- .icon-code-fork {
896
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
897
- }
898
- .icon-unlink {
899
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
900
- }
901
- .icon-question {
902
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
903
- }
904
- .icon-info {
905
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
906
- }
907
- .icon-exclamation {
908
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
909
- }
910
- .icon-superscript {
911
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
912
- }
913
- .icon-subscript {
914
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
915
- }
916
- .icon-eraser {
917
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
918
- }
919
- .icon-puzzle-piece {
920
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
921
- }
922
- .icon-microphone {
923
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
924
- }
925
- .icon-microphone-off {
926
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
927
- }
928
- .icon-shield {
929
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
930
- }
931
- .icon-calendar-empty {
932
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
933
- }
934
- .icon-fire-extinguisher {
935
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
936
- }
937
- .icon-rocket {
938
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
939
- }
940
- .icon-maxcdn {
941
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
942
- }
943
- .icon-chevron-sign-left {
944
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
945
- }
946
- .icon-chevron-sign-right {
947
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
948
- }
949
- .icon-chevron-sign-up {
950
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
951
- }
952
- .icon-chevron-sign-down {
953
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
954
- }
955
- .icon-html5 {
956
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
957
- }
958
- .icon-css3 {
959
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
960
- }
961
- .icon-anchor {
962
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
963
- }
964
- .icon-unlock-alt {
965
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
966
- }
967
- .icon-bullseye {
968
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
969
- }
970
- .icon-ellipsis-horizontal {
971
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
972
- }
973
- .icon-ellipsis-vertical {
974
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
975
- }
976
- .icon-rss-sign {
977
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
978
- }
979
- .icon-play-sign {
980
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
981
- }
982
- .icon-ticket {
983
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
984
- }
985
- .icon-minus-sign-alt {
986
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
987
- }
988
- .icon-check-minus {
989
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
990
- }
991
- .icon-level-up {
992
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
993
- }
994
- .icon-level-down {
995
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
996
- }
997
- .icon-check-sign {
998
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
999
- }
1000
- .icon-edit-sign {
1001
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1002
- }
1003
- .icon-external-link-sign {
1004
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1005
- }
1006
- .icon-share-sign {
1007
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1008
- }
1009
- .icon-compass {
1010
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1011
- }
1012
- .icon-collapse {
1013
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1014
- }
1015
- .icon-collapse-top {
1016
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1017
- }
1018
- .icon-expand {
1019
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1020
- }
1021
- .icon-eur {
1022
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1023
- }
1024
- .icon-euro {
1025
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1026
- }
1027
- .icon-gbp {
1028
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1029
- }
1030
- .icon-usd {
1031
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1032
- }
1033
- .icon-dollar {
1034
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1035
- }
1036
- .icon-inr {
1037
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1038
- }
1039
- .icon-rupee {
1040
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1041
- }
1042
- .icon-jpy {
1043
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1044
- }
1045
- .icon-yen {
1046
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1047
- }
1048
- .icon-cny {
1049
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1050
- }
1051
- .icon-renminbi {
1052
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1053
- }
1054
- .icon-krw {
1055
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1056
- }
1057
- .icon-won {
1058
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1059
- }
1060
- .icon-btc {
1061
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1062
- }
1063
- .icon-bitcoin {
1064
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1065
- }
1066
- .icon-file {
1067
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1068
- }
1069
- .icon-file-text {
1070
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1071
- }
1072
- .icon-sort-by-alphabet {
1073
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1074
- }
1075
- .icon-sort-by-alphabet-alt {
1076
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1077
- }
1078
- .icon-sort-by-attributes {
1079
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1080
- }
1081
- .icon-sort-by-attributes-alt {
1082
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1083
- }
1084
- .icon-sort-by-order {
1085
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1086
- }
1087
- .icon-sort-by-order-alt {
1088
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1089
- }
1090
- .icon-thumbs-up {
1091
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1092
- }
1093
- .icon-thumbs-down {
1094
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1095
- }
1096
- .icon-youtube-sign {
1097
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1098
- }
1099
- .icon-youtube {
1100
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1101
- }
1102
- .icon-xing {
1103
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1104
- }
1105
- .icon-xing-sign {
1106
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1107
- }
1108
- .icon-youtube-play {
1109
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1110
- }
1111
- .icon-dropbox {
1112
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1113
- }
1114
- .icon-stackexchange {
1115
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1116
- }
1117
- .icon-instagram {
1118
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1119
- }
1120
- .icon-flickr {
1121
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1122
- }
1123
- .icon-adn {
1124
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1125
- }
1126
- .icon-bitbucket {
1127
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1128
- }
1129
- .icon-bitbucket-sign {
1130
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1131
- }
1132
- .icon-tumblr {
1133
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1134
- }
1135
- .icon-tumblr-sign {
1136
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1137
- }
1138
- .icon-long-arrow-down {
1139
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1140
- }
1141
- .icon-long-arrow-up {
1142
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1143
- }
1144
- .icon-long-arrow-left {
1145
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1146
- }
1147
- .icon-long-arrow-right {
1148
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1149
- }
1150
- .icon-apple {
1151
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1152
- }
1153
- .icon-windows {
1154
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1155
- }
1156
- .icon-android {
1157
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1158
- }
1159
- .icon-linux {
1160
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1161
- }
1162
- .icon-dribbble {
1163
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1164
- }
1165
- .icon-skype {
1166
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1167
- }
1168
- .icon-foursquare {
1169
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1170
- }
1171
- .icon-trello {
1172
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1173
- }
1174
- .icon-female {
1175
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1176
- }
1177
- .icon-male {
1178
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1179
- }
1180
- .icon-gittip {
1181
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1182
- }
1183
- .icon-sun {
1184
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1185
- }
1186
- .icon-moon {
1187
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1188
- }
1189
- .icon-archive {
1190
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1191
- }
1192
- .icon-bug {
1193
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1194
- }
1195
- .icon-vk {
1196
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1197
- }
1198
- .icon-weibo {
1199
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1200
- }
1201
- .icon-renren {
1202
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
1203
- }