locomotivecms_wagon 2.4.1 → 3.0.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (359) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -3
  3. data/generators/blank/app/assets/.babelrc +3 -0
  4. data/generators/blank/app/assets/fonts/.empty_directory +1 -0
  5. data/generators/blank/app/assets/javascripts/app.js +19 -0
  6. data/generators/blank/app/assets/javascripts/sections/_manager.js +94 -0
  7. data/generators/blank/app/assets/javascripts/sections/index.js +5 -0
  8. data/generators/blank/app/assets/package.json.tt +35 -0
  9. data/generators/blank/app/assets/postcss.config.js +6 -0
  10. data/generators/blank/app/assets/stylesheets/app.scss +1 -0
  11. data/generators/blank/app/assets/webpack.common.js +47 -0
  12. data/generators/blank/app/assets/webpack.dev.js +7 -0
  13. data/generators/blank/app/assets/webpack.prod.js +12 -0
  14. data/generators/blank/app/views/pages/404.liquid +1 -1
  15. data/generators/blank/app/views/pages/index.liquid +7 -15
  16. data/generators/blank/app/views/pages/layouts/default.liquid +22 -0
  17. data/generators/blank/app/views/sections/.empty_directory +1 -0
  18. data/generators/page/template.liquid.tt +11 -0
  19. data/generators/section/%type%.js.tt +26 -0
  20. data/generators/section/template.liquid.tt +183 -0
  21. data/lib/locomotive/wagon.rb +3 -2
  22. data/lib/locomotive/wagon/cli.rb +38 -10
  23. data/lib/locomotive/wagon/commands/clone_command.rb +3 -0
  24. data/lib/locomotive/wagon/commands/concerns/deploy_file_concern.rb +1 -1
  25. data/lib/locomotive/wagon/commands/concerns/steam_concern.rb +1 -1
  26. data/lib/locomotive/wagon/commands/loggers/sync_logger.rb +7 -0
  27. data/lib/locomotive/wagon/commands/pull_command.rb +1 -1
  28. data/lib/locomotive/wagon/commands/pull_sub_commands/concerns/assets_concern.rb +19 -10
  29. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_base_command.rb +7 -3
  30. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_entries_command.rb +11 -2
  31. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_types_command.rb +1 -1
  32. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_site_command.rb +24 -5
  33. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_translations_command.rb +6 -1
  34. data/lib/locomotive/wagon/commands/push_command.rb +6 -4
  35. data/lib/locomotive/wagon/commands/push_sub_commands/push_pages_command.rb +6 -1
  36. data/lib/locomotive/wagon/commands/push_sub_commands/push_sections_command.rb +23 -0
  37. data/lib/locomotive/wagon/commands/push_sub_commands/push_site_command.rb +2 -0
  38. data/lib/locomotive/wagon/commands/serve_command.rb +1 -1
  39. data/lib/locomotive/wagon/commands/sync_command.rb +1 -1
  40. data/lib/locomotive/wagon/commands/sync_sub_commands/concerns/base_concern.rb +2 -2
  41. data/lib/locomotive/wagon/commands/sync_sub_commands/sync_pages_command.rb +48 -37
  42. data/lib/locomotive/wagon/commands/sync_sub_commands/sync_site_command.rb +15 -12
  43. data/lib/locomotive/wagon/commands/sync_sub_commands/sync_translations_command.rb +12 -0
  44. data/lib/locomotive/wagon/decorators/concerns/persist_assets_concern.rb +1 -1
  45. data/lib/locomotive/wagon/decorators/content_entry_decorator.rb +1 -1
  46. data/lib/locomotive/wagon/decorators/content_type_decorator.rb +5 -1
  47. data/lib/locomotive/wagon/decorators/content_type_field_decorator.rb +5 -1
  48. data/lib/locomotive/wagon/decorators/page_decorator.rb +11 -1
  49. data/lib/locomotive/wagon/decorators/section_decorator.rb +35 -0
  50. data/lib/locomotive/wagon/decorators/site_decorator.rb +12 -4
  51. data/lib/locomotive/wagon/decorators/theme_asset_decorator.rb +2 -2
  52. data/lib/locomotive/wagon/generators/page.rb +2 -12
  53. data/lib/locomotive/wagon/generators/section.rb +82 -0
  54. data/lib/locomotive/wagon/generators/site.rb +0 -3
  55. data/lib/locomotive/wagon/generators/site/base.rb +11 -28
  56. data/lib/locomotive/wagon/generators/site/blank.rb +1 -17
  57. data/lib/locomotive/wagon/generators/site/cloned.rb +1 -4
  58. data/lib/locomotive/wagon/generators/snippet.rb +3 -11
  59. data/lib/locomotive/wagon/middlewares/error_page.rb +26 -6
  60. data/lib/locomotive/wagon/tools/listen.rb +3 -3
  61. data/lib/locomotive/wagon/version.rb +1 -1
  62. data/locomotivecms_wagon.gemspec +7 -6
  63. data/spec/fixtures/cassettes/authenticate.yml +47 -47
  64. data/spec/fixtures/cassettes/delete.yml +261 -261
  65. data/spec/fixtures/cassettes/push.yml +4571 -1783
  66. data/spec/fixtures/cassettes/sync.yml +11483 -0
  67. data/spec/integration/cli_spec.rb +1 -1
  68. data/spec/integration/commands/delete_command_spec.rb +1 -2
  69. data/spec/integration/commands/push_command_spec.rb +4 -4
  70. data/spec/integration/commands/sync_command_spec.rb +54 -0
  71. data/spec/integration/generators/page_spec.rb +1 -1
  72. data/spec/unit/commands/pull_sub_commands/concerns/assets_concern_spec.rb +3 -3
  73. metadata +55 -306
  74. data/generators/blank/app/views/pages/404.liquid.haml +0 -11
  75. data/generators/blank/app/views/pages/index.liquid.haml +0 -16
  76. data/generators/bootstrap/Gemfile.tt +0 -24
  77. data/generators/bootstrap/Guardfile +0 -22
  78. data/generators/bootstrap/app/content_types/.empty_directory +0 -1
  79. data/generators/bootstrap/app/views/pages/404.liquid +0 -18
  80. data/generators/bootstrap/app/views/pages/404.liquid.haml +0 -14
  81. data/generators/bootstrap/app/views/pages/index.liquid +0 -31
  82. data/generators/bootstrap/app/views/pages/index.liquid.haml +0 -25
  83. data/generators/bootstrap/app/views/pages/layouts/default.liquid +0 -31
  84. data/generators/bootstrap/app/views/pages/layouts/default.liquid.haml +0 -30
  85. data/generators/bootstrap/app/views/pages/layouts/simple.liquid +0 -36
  86. data/generators/bootstrap/app/views/pages/layouts/simple.liquid.haml +0 -29
  87. data/generators/bootstrap/app/views/snippets/footer.liquid +0 -5
  88. data/generators/bootstrap/app/views/snippets/footer.liquid.haml +0 -3
  89. data/generators/bootstrap/app/views/snippets/nav.liquid +0 -26
  90. data/generators/bootstrap/app/views/snippets/nav.liquid.haml +0 -19
  91. data/generators/bootstrap/config/deploy.yml +0 -16
  92. data/generators/bootstrap/config/metafields_schema.yml +0 -56
  93. data/generators/bootstrap/config/site.yml.tt +0 -48
  94. data/generators/bootstrap/config/translations.yml +0 -8
  95. data/generators/bootstrap/data/.empty_directory +0 -1
  96. data/generators/bootstrap/icon.png +0 -0
  97. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  98. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.svg +0 -288
  99. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  100. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  101. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  102. data/generators/bootstrap/public/images/favicon.png +0 -0
  103. data/generators/bootstrap/public/javascripts/application.js +0 -2
  104. data/generators/bootstrap/public/javascripts/bootstrap.min.js +0 -7
  105. data/generators/bootstrap/public/javascripts/bootstrap/affix.js +0 -162
  106. data/generators/bootstrap/public/javascripts/bootstrap/alert.js +0 -94
  107. data/generators/bootstrap/public/javascripts/bootstrap/button.js +0 -120
  108. data/generators/bootstrap/public/javascripts/bootstrap/carousel.js +0 -237
  109. data/generators/bootstrap/public/javascripts/bootstrap/collapse.js +0 -211
  110. data/generators/bootstrap/public/javascripts/bootstrap/dropdown.js +0 -165
  111. data/generators/bootstrap/public/javascripts/bootstrap/modal.js +0 -337
  112. data/generators/bootstrap/public/javascripts/bootstrap/popover.js +0 -108
  113. data/generators/bootstrap/public/javascripts/bootstrap/scrollspy.js +0 -172
  114. data/generators/bootstrap/public/javascripts/bootstrap/tab.js +0 -155
  115. data/generators/bootstrap/public/javascripts/bootstrap/tooltip.js +0 -514
  116. data/generators/bootstrap/public/javascripts/bootstrap/transition.js +0 -59
  117. data/generators/bootstrap/public/javascripts/jquery.min.js +0 -5
  118. data/generators/bootstrap/public/stylesheets/application.css +0 -7
  119. data/generators/bootstrap/public/stylesheets/application.scss +0 -7
  120. data/generators/bootstrap/public/stylesheets/bootstrap.css +0 -5
  121. data/generators/bootstrap/public/stylesheets/bootstrap.scss +0 -63
  122. data/generators/bootstrap/public/stylesheets/bootstrap/_alerts.scss +0 -73
  123. data/generators/bootstrap/public/stylesheets/bootstrap/_badges.scss +0 -68
  124. data/generators/bootstrap/public/stylesheets/bootstrap/_breadcrumbs.scss +0 -28
  125. data/generators/bootstrap/public/stylesheets/bootstrap/_button-groups.scss +0 -244
  126. data/generators/bootstrap/public/stylesheets/bootstrap/_buttons.scss +0 -168
  127. data/generators/bootstrap/public/stylesheets/bootstrap/_carousel.scss +0 -269
  128. data/generators/bootstrap/public/stylesheets/bootstrap/_close.scss +0 -36
  129. data/generators/bootstrap/public/stylesheets/bootstrap/_code.scss +0 -69
  130. data/generators/bootstrap/public/stylesheets/bootstrap/_component-animations.scss +0 -37
  131. data/generators/bootstrap/public/stylesheets/bootstrap/_dropdowns.scss +0 -216
  132. data/generators/bootstrap/public/stylesheets/bootstrap/_forms.scss +0 -611
  133. data/generators/bootstrap/public/stylesheets/bootstrap/_glyphicons.scss +0 -307
  134. data/generators/bootstrap/public/stylesheets/bootstrap/_grid.scss +0 -84
  135. data/generators/bootstrap/public/stylesheets/bootstrap/_input-groups.scss +0 -167
  136. data/generators/bootstrap/public/stylesheets/bootstrap/_jumbotron.scss +0 -52
  137. data/generators/bootstrap/public/stylesheets/bootstrap/_labels.scss +0 -66
  138. data/generators/bootstrap/public/stylesheets/bootstrap/_list-group.scss +0 -130
  139. data/generators/bootstrap/public/stylesheets/bootstrap/_media.scss +0 -66
  140. data/generators/bootstrap/public/stylesheets/bootstrap/_mixins.scss +0 -40
  141. data/generators/bootstrap/public/stylesheets/bootstrap/_modals.scss +0 -150
  142. data/generators/bootstrap/public/stylesheets/bootstrap/_navbar.scss +0 -662
  143. data/generators/bootstrap/public/stylesheets/bootstrap/_navs.scss +0 -242
  144. data/generators/bootstrap/public/stylesheets/bootstrap/_normalize.scss +0 -424
  145. data/generators/bootstrap/public/stylesheets/bootstrap/_pager.scss +0 -54
  146. data/generators/bootstrap/public/stylesheets/bootstrap/_pagination.scss +0 -89
  147. data/generators/bootstrap/public/stylesheets/bootstrap/_panels.scss +0 -271
  148. data/generators/bootstrap/public/stylesheets/bootstrap/_popovers.scss +0 -131
  149. data/generators/bootstrap/public/stylesheets/bootstrap/_print.scss +0 -101
  150. data/generators/bootstrap/public/stylesheets/bootstrap/_progress-bars.scss +0 -87
  151. data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-embed.scss +0 -35
  152. data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-utilities.scss +0 -179
  153. data/generators/bootstrap/public/stylesheets/bootstrap/_scaffolding.scss +0 -161
  154. data/generators/bootstrap/public/stylesheets/bootstrap/_tables.scss +0 -234
  155. data/generators/bootstrap/public/stylesheets/bootstrap/_theme.scss +0 -291
  156. data/generators/bootstrap/public/stylesheets/bootstrap/_thumbnails.scss +0 -38
  157. data/generators/bootstrap/public/stylesheets/bootstrap/_tooltip.scss +0 -101
  158. data/generators/bootstrap/public/stylesheets/bootstrap/_type.scss +0 -298
  159. data/generators/bootstrap/public/stylesheets/bootstrap/_utilities.scss +0 -55
  160. data/generators/bootstrap/public/stylesheets/bootstrap/_variables.scss +0 -872
  161. data/generators/bootstrap/public/stylesheets/bootstrap/_wells.scss +0 -29
  162. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_alerts.scss +0 -14
  163. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_background-variant.scss +0 -12
  164. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_border-radius.scss +0 -18
  165. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_buttons.scss +0 -68
  166. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_center-block.scss +0 -7
  167. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_clearfix.scss +0 -22
  168. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_forms.scss +0 -88
  169. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_gradients.scss +0 -58
  170. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -81
  171. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid.scss +0 -122
  172. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_hide-text.scss +0 -21
  173. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_image.scss +0 -33
  174. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_labels.scss +0 -12
  175. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_list-group.scss +0 -32
  176. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-divider.scss +0 -10
  177. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +0 -9
  178. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_opacity.scss +0 -8
  179. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_pagination.scss +0 -24
  180. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_panels.scss +0 -24
  181. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_progress-bar.scss +0 -10
  182. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-filter.scss +0 -8
  183. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-text.scss +0 -18
  184. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_resize.scss +0 -6
  185. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_responsive-visibility.scss +0 -21
  186. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_size.scss +0 -10
  187. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_tab-focus.scss +0 -9
  188. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_table-row.scss +0 -28
  189. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-emphasis.scss +0 -12
  190. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-overflow.scss +0 -8
  191. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +0 -222
  192. data/generators/foundation/Gemfile.tt +0 -24
  193. data/generators/foundation/Guardfile +0 -22
  194. data/generators/foundation/app/content_types/.gitkeep +0 -0
  195. data/generators/foundation/app/views/pages/404.liquid +0 -11
  196. data/generators/foundation/app/views/pages/404.liquid.haml +0 -11
  197. data/generators/foundation/app/views/pages/index.liquid +0 -172
  198. data/generators/foundation/app/views/pages/index.liquid.haml +0 -144
  199. data/generators/foundation/app/views/snippets/.gitkeep +0 -0
  200. data/generators/foundation/config/deploy.yml +0 -16
  201. data/generators/foundation/config/metafields_schema.yml +0 -56
  202. data/generators/foundation/config/site.yml +0 -48
  203. data/generators/foundation/config/translations.yml +0 -8
  204. data/generators/foundation/data/.gitkeep +0 -0
  205. data/generators/foundation/log/.gitkeep +0 -0
  206. data/generators/foundation/public/images/.gitkeep +0 -0
  207. data/generators/foundation/public/javascripts/app.js +0 -1
  208. data/generators/foundation/public/javascripts/vendor/foundation.js +0 -11788
  209. data/generators/foundation/public/javascripts/vendor/foundation.min.js +0 -5
  210. data/generators/foundation/public/javascripts/vendor/what-input.js +0 -212
  211. data/generators/foundation/public/javascripts/vendor/what-input.min.js +0 -1
  212. data/generators/foundation/public/stylesheets/_settings.scss +0 -869
  213. data/generators/foundation/public/stylesheets/app.css +0 -0
  214. data/generators/foundation/public/stylesheets/app.scss +0 -52
  215. data/generators/foundation/public/stylesheets/foundation.css +0 -5805
  216. data/generators/foundation/public/stylesheets/foundation6/_global.scss +0 -249
  217. data/generators/foundation/public/stylesheets/foundation6/components/_accordion-menu.scss +0 -171
  218. data/generators/foundation/public/stylesheets/foundation6/components/_accordion.scss +0 -155
  219. data/generators/foundation/public/stylesheets/foundation6/components/_badge.scss +0 -63
  220. data/generators/foundation/public/stylesheets/foundation6/components/_breadcrumbs.scss +0 -117
  221. data/generators/foundation/public/stylesheets/foundation6/components/_button-group.scss +0 -253
  222. data/generators/foundation/public/stylesheets/foundation6/components/_button.scss +0 -385
  223. data/generators/foundation/public/stylesheets/foundation6/components/_callout.scss +0 -106
  224. data/generators/foundation/public/stylesheets/foundation6/components/_card.scss +0 -129
  225. data/generators/foundation/public/stylesheets/foundation6/components/_close-button.scss +0 -102
  226. data/generators/foundation/public/stylesheets/foundation6/components/_drilldown.scss +0 -142
  227. data/generators/foundation/public/stylesheets/foundation6/components/_dropdown-menu.scss +0 -274
  228. data/generators/foundation/public/stylesheets/foundation6/components/_dropdown.scss +0 -79
  229. data/generators/foundation/public/stylesheets/foundation6/components/_flex-video.scss +0 -1
  230. data/generators/foundation/public/stylesheets/foundation6/components/_flex.scss +0 -117
  231. data/generators/foundation/public/stylesheets/foundation6/components/_float.scss +0 -27
  232. data/generators/foundation/public/stylesheets/foundation6/components/_label.scss +0 -64
  233. data/generators/foundation/public/stylesheets/foundation6/components/_media-object.scss +0 -114
  234. data/generators/foundation/public/stylesheets/foundation6/components/_menu-icon.scss +0 -9
  235. data/generators/foundation/public/stylesheets/foundation6/components/_menu.scss +0 -495
  236. data/generators/foundation/public/stylesheets/foundation6/components/_off-canvas.scss +0 -505
  237. data/generators/foundation/public/stylesheets/foundation6/components/_orbit.scss +0 -196
  238. data/generators/foundation/public/stylesheets/foundation6/components/_pagination.scss +0 -193
  239. data/generators/foundation/public/stylesheets/foundation6/components/_progress-bar.scss +0 -64
  240. data/generators/foundation/public/stylesheets/foundation6/components/_responsive-embed.scss +0 -70
  241. data/generators/foundation/public/stylesheets/foundation6/components/_reveal.scss +0 -180
  242. data/generators/foundation/public/stylesheets/foundation6/components/_slider.scss +0 -137
  243. data/generators/foundation/public/stylesheets/foundation6/components/_sticky.scss +0 -39
  244. data/generators/foundation/public/stylesheets/foundation6/components/_switch.scss +0 -247
  245. data/generators/foundation/public/stylesheets/foundation6/components/_table.scss +0 -330
  246. data/generators/foundation/public/stylesheets/foundation6/components/_tabs.scss +0 -196
  247. data/generators/foundation/public/stylesheets/foundation6/components/_thumbnail.scss +0 -67
  248. data/generators/foundation/public/stylesheets/foundation6/components/_title-bar.scss +0 -84
  249. data/generators/foundation/public/stylesheets/foundation6/components/_tooltip.scss +0 -160
  250. data/generators/foundation/public/stylesheets/foundation6/components/_top-bar.scss +0 -175
  251. data/generators/foundation/public/stylesheets/foundation6/components/_visibility.scss +0 -132
  252. data/generators/foundation/public/stylesheets/foundation6/forms/_checkbox.scss +0 -41
  253. data/generators/foundation/public/stylesheets/foundation6/forms/_error.scss +0 -88
  254. data/generators/foundation/public/stylesheets/foundation6/forms/_fieldset.scss +0 -53
  255. data/generators/foundation/public/stylesheets/foundation6/forms/_forms.scss +0 -34
  256. data/generators/foundation/public/stylesheets/foundation6/forms/_help-text.scss +0 -30
  257. data/generators/foundation/public/stylesheets/foundation6/forms/_input-group.scss +0 -142
  258. data/generators/foundation/public/stylesheets/foundation6/forms/_label.scss +0 -50
  259. data/generators/foundation/public/stylesheets/foundation6/forms/_meter.scss +0 -116
  260. data/generators/foundation/public/stylesheets/foundation6/forms/_progress.scss +0 -94
  261. data/generators/foundation/public/stylesheets/foundation6/forms/_range.scss +0 -149
  262. data/generators/foundation/public/stylesheets/foundation6/forms/_select.scss +0 -86
  263. data/generators/foundation/public/stylesheets/foundation6/forms/_text.scss +0 -179
  264. data/generators/foundation/public/stylesheets/foundation6/foundation.scss +0 -133
  265. data/generators/foundation/public/stylesheets/foundation6/grid/_classes.scss +0 -176
  266. data/generators/foundation/public/stylesheets/foundation6/grid/_column.scss +0 -112
  267. data/generators/foundation/public/stylesheets/foundation6/grid/_flex-grid.scss +0 -259
  268. data/generators/foundation/public/stylesheets/foundation6/grid/_grid.scss +0 -48
  269. data/generators/foundation/public/stylesheets/foundation6/grid/_gutter.scss +0 -82
  270. data/generators/foundation/public/stylesheets/foundation6/grid/_layout.scss +0 -76
  271. data/generators/foundation/public/stylesheets/foundation6/grid/_position.scss +0 -76
  272. data/generators/foundation/public/stylesheets/foundation6/grid/_row.scss +0 -99
  273. data/generators/foundation/public/stylesheets/foundation6/grid/_size.scss +0 -24
  274. data/generators/foundation/public/stylesheets/foundation6/motion-ui/_classes.scss +0 -109
  275. data/generators/foundation/public/stylesheets/foundation6/motion-ui/_settings.scss +0 -61
  276. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_fade.scss +0 -32
  277. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_hinge.scss +0 -65
  278. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_shake.scss +0 -15
  279. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_slide.scss +0 -41
  280. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_spin.scss +0 -28
  281. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_wiggle.scss +0 -13
  282. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_zoom.scss +0 -15
  283. data/generators/foundation/public/stylesheets/foundation6/motion-ui/motion-ui.scss +0 -29
  284. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_fade.scss +0 -28
  285. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_hinge.scss +0 -43
  286. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_slide.scss +0 -42
  287. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_spin.scss +0 -39
  288. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_zoom.scss +0 -39
  289. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_animation.scss +0 -7
  290. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_args.scss +0 -15
  291. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_keyframe.scss +0 -136
  292. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_selector.scss +0 -23
  293. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_series.scss +0 -54
  294. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_transition.scss +0 -45
  295. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_unit.scss +0 -7
  296. data/generators/foundation/public/stylesheets/foundation6/prototype/_arrow.scss +0 -36
  297. data/generators/foundation/public/stylesheets/foundation6/prototype/_border-box.scss +0 -35
  298. data/generators/foundation/public/stylesheets/foundation6/prototype/_border-none.scss +0 -35
  299. data/generators/foundation/public/stylesheets/foundation6/prototype/_bordered.scss +0 -54
  300. data/generators/foundation/public/stylesheets/foundation6/prototype/_box.scss +0 -23
  301. data/generators/foundation/public/stylesheets/foundation6/prototype/_display.scss +0 -50
  302. data/generators/foundation/public/stylesheets/foundation6/prototype/_font-styling.scss +0 -95
  303. data/generators/foundation/public/stylesheets/foundation6/prototype/_list-style-type.scss +0 -95
  304. data/generators/foundation/public/stylesheets/foundation6/prototype/_overflow.scss +0 -72
  305. data/generators/foundation/public/stylesheets/foundation6/prototype/_position.scss +0 -114
  306. data/generators/foundation/public/stylesheets/foundation6/prototype/_prototype.scss +0 -87
  307. data/generators/foundation/public/stylesheets/foundation6/prototype/_relation.scss +0 -157
  308. data/generators/foundation/public/stylesheets/foundation6/prototype/_rotate.scss +0 -31
  309. data/generators/foundation/public/stylesheets/foundation6/prototype/_rounded.scss +0 -54
  310. data/generators/foundation/public/stylesheets/foundation6/prototype/_separator.scss +0 -96
  311. data/generators/foundation/public/stylesheets/foundation6/prototype/_shadow.scss +0 -43
  312. data/generators/foundation/public/stylesheets/foundation6/prototype/_sizing.scss +0 -73
  313. data/generators/foundation/public/stylesheets/foundation6/prototype/_spacing.scss +0 -204
  314. data/generators/foundation/public/stylesheets/foundation6/prototype/_text-decoration.scss +0 -48
  315. data/generators/foundation/public/stylesheets/foundation6/prototype/_text-transformation.scss +0 -48
  316. data/generators/foundation/public/stylesheets/foundation6/prototype/_text-utilities.scss +0 -88
  317. data/generators/foundation/public/stylesheets/foundation6/settings/_settings.scss +0 -869
  318. data/generators/foundation/public/stylesheets/foundation6/typography/_alignment.scss +0 -22
  319. data/generators/foundation/public/stylesheets/foundation6/typography/_base.scss +0 -509
  320. data/generators/foundation/public/stylesheets/foundation6/typography/_helpers.scss +0 -80
  321. data/generators/foundation/public/stylesheets/foundation6/typography/_print.scss +0 -86
  322. data/generators/foundation/public/stylesheets/foundation6/typography/_typography.scss +0 -26
  323. data/generators/foundation/public/stylesheets/foundation6/util/_breakpoint.scss +0 -348
  324. data/generators/foundation/public/stylesheets/foundation6/util/_color.scss +0 -129
  325. data/generators/foundation/public/stylesheets/foundation6/util/_direction.scss +0 -31
  326. data/generators/foundation/public/stylesheets/foundation6/util/_flex.scss +0 -85
  327. data/generators/foundation/public/stylesheets/foundation6/util/_math.scss +0 -72
  328. data/generators/foundation/public/stylesheets/foundation6/util/_mixins.scss +0 -313
  329. data/generators/foundation/public/stylesheets/foundation6/util/_selector.scss +0 -41
  330. data/generators/foundation/public/stylesheets/foundation6/util/_typography.scss +0 -26
  331. data/generators/foundation/public/stylesheets/foundation6/util/_unit.scss +0 -152
  332. data/generators/foundation/public/stylesheets/foundation6/util/_util.scss +0 -14
  333. data/generators/foundation/public/stylesheets/foundation6/util/_value.scss +0 -160
  334. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/_normalize.scss +0 -3
  335. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_import-now.scss +0 -11
  336. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_normalize-mixin.scss +0 -676
  337. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_variables.scss +0 -36
  338. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss +0 -61
  339. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_contain.scss +0 -31
  340. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_purge.scss +0 -38
  341. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_remove.scss +0 -31
  342. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_replace.scss +0 -46
  343. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_to-list.scss +0 -27
  344. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss +0 -25
  345. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_true.scss +0 -13
  346. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_cell.scss +0 -169
  347. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_classes.scss +0 -476
  348. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_collapse.scss +0 -74
  349. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_frame.scss +0 -85
  350. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_grid.scss +0 -35
  351. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_gutters.scss +0 -45
  352. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_layout.scss +0 -33
  353. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_position.scss +0 -28
  354. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_xy-grid.scss +0 -51
  355. data/generators/page/template.liquid.haml.tt +0 -47
  356. data/generators/snippet/template.liquid.haml.tt +0 -4
  357. data/lib/locomotive/wagon/generators/site/bootstrap.rb +0 -52
  358. data/lib/locomotive/wagon/generators/site/foundation.rb +0 -44
  359. data/lib/locomotive/wagon/generators/site/line_case.rb +0 -20
@@ -1,307 +0,0 @@
1
- //
2
- // Glyphicons for Bootstrap
3
- //
4
- // Since icons are fonts, they can be placed anywhere text is placed and are
5
- // thus automatically sized to match the surrounding child. To use, create an
6
- // inline element with the appropriate classes, like so:
7
- //
8
- // <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
9
-
10
- @at-root {
11
- // Import the fonts
12
- @font-face {
13
- font-family: 'Glyphicons Halflings';
14
- src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot'), '#{$icon-font-path}#{$icon-font-name}.eot'));
15
- src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot?#iefix'), '#{$icon-font-path}#{$icon-font-name}.eot?#iefix')) format('embedded-opentype'),
16
- url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.woff2'), '#{$icon-font-path}#{$icon-font-name}.woff2')) format('woff2'),
17
- url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.woff'), '#{$icon-font-path}#{$icon-font-name}.woff')) format('woff'),
18
- url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.ttf'), '#{$icon-font-path}#{$icon-font-name}.ttf')) format('truetype'),
19
- url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}'), '#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}')) format('svg');
20
- }
21
- }
22
-
23
- // Catchall baseclass
24
- .glyphicon {
25
- position: relative;
26
- top: 1px;
27
- display: inline-block;
28
- font-family: 'Glyphicons Halflings';
29
- font-style: normal;
30
- font-weight: normal;
31
- line-height: 1;
32
- -webkit-font-smoothing: antialiased;
33
- -moz-osx-font-smoothing: grayscale;
34
- }
35
-
36
- // Individual icons
37
- .glyphicon-asterisk { &:before { content: "\2a"; } }
38
- .glyphicon-plus { &:before { content: "\2b"; } }
39
- .glyphicon-euro,
40
- .glyphicon-eur { &:before { content: "\20ac"; } }
41
- .glyphicon-minus { &:before { content: "\2212"; } }
42
- .glyphicon-cloud { &:before { content: "\2601"; } }
43
- .glyphicon-envelope { &:before { content: "\2709"; } }
44
- .glyphicon-pencil { &:before { content: "\270f"; } }
45
- .glyphicon-glass { &:before { content: "\e001"; } }
46
- .glyphicon-music { &:before { content: "\e002"; } }
47
- .glyphicon-search { &:before { content: "\e003"; } }
48
- .glyphicon-heart { &:before { content: "\e005"; } }
49
- .glyphicon-star { &:before { content: "\e006"; } }
50
- .glyphicon-star-empty { &:before { content: "\e007"; } }
51
- .glyphicon-user { &:before { content: "\e008"; } }
52
- .glyphicon-film { &:before { content: "\e009"; } }
53
- .glyphicon-th-large { &:before { content: "\e010"; } }
54
- .glyphicon-th { &:before { content: "\e011"; } }
55
- .glyphicon-th-list { &:before { content: "\e012"; } }
56
- .glyphicon-ok { &:before { content: "\e013"; } }
57
- .glyphicon-remove { &:before { content: "\e014"; } }
58
- .glyphicon-zoom-in { &:before { content: "\e015"; } }
59
- .glyphicon-zoom-out { &:before { content: "\e016"; } }
60
- .glyphicon-off { &:before { content: "\e017"; } }
61
- .glyphicon-signal { &:before { content: "\e018"; } }
62
- .glyphicon-cog { &:before { content: "\e019"; } }
63
- .glyphicon-trash { &:before { content: "\e020"; } }
64
- .glyphicon-home { &:before { content: "\e021"; } }
65
- .glyphicon-file { &:before { content: "\e022"; } }
66
- .glyphicon-time { &:before { content: "\e023"; } }
67
- .glyphicon-road { &:before { content: "\e024"; } }
68
- .glyphicon-download-alt { &:before { content: "\e025"; } }
69
- .glyphicon-download { &:before { content: "\e026"; } }
70
- .glyphicon-upload { &:before { content: "\e027"; } }
71
- .glyphicon-inbox { &:before { content: "\e028"; } }
72
- .glyphicon-play-circle { &:before { content: "\e029"; } }
73
- .glyphicon-repeat { &:before { content: "\e030"; } }
74
- .glyphicon-refresh { &:before { content: "\e031"; } }
75
- .glyphicon-list-alt { &:before { content: "\e032"; } }
76
- .glyphicon-lock { &:before { content: "\e033"; } }
77
- .glyphicon-flag { &:before { content: "\e034"; } }
78
- .glyphicon-headphones { &:before { content: "\e035"; } }
79
- .glyphicon-volume-off { &:before { content: "\e036"; } }
80
- .glyphicon-volume-down { &:before { content: "\e037"; } }
81
- .glyphicon-volume-up { &:before { content: "\e038"; } }
82
- .glyphicon-qrcode { &:before { content: "\e039"; } }
83
- .glyphicon-barcode { &:before { content: "\e040"; } }
84
- .glyphicon-tag { &:before { content: "\e041"; } }
85
- .glyphicon-tags { &:before { content: "\e042"; } }
86
- .glyphicon-book { &:before { content: "\e043"; } }
87
- .glyphicon-bookmark { &:before { content: "\e044"; } }
88
- .glyphicon-print { &:before { content: "\e045"; } }
89
- .glyphicon-camera { &:before { content: "\e046"; } }
90
- .glyphicon-font { &:before { content: "\e047"; } }
91
- .glyphicon-bold { &:before { content: "\e048"; } }
92
- .glyphicon-italic { &:before { content: "\e049"; } }
93
- .glyphicon-text-height { &:before { content: "\e050"; } }
94
- .glyphicon-text-width { &:before { content: "\e051"; } }
95
- .glyphicon-align-left { &:before { content: "\e052"; } }
96
- .glyphicon-align-center { &:before { content: "\e053"; } }
97
- .glyphicon-align-right { &:before { content: "\e054"; } }
98
- .glyphicon-align-justify { &:before { content: "\e055"; } }
99
- .glyphicon-list { &:before { content: "\e056"; } }
100
- .glyphicon-indent-left { &:before { content: "\e057"; } }
101
- .glyphicon-indent-right { &:before { content: "\e058"; } }
102
- .glyphicon-facetime-video { &:before { content: "\e059"; } }
103
- .glyphicon-picture { &:before { content: "\e060"; } }
104
- .glyphicon-map-marker { &:before { content: "\e062"; } }
105
- .glyphicon-adjust { &:before { content: "\e063"; } }
106
- .glyphicon-tint { &:before { content: "\e064"; } }
107
- .glyphicon-edit { &:before { content: "\e065"; } }
108
- .glyphicon-share { &:before { content: "\e066"; } }
109
- .glyphicon-check { &:before { content: "\e067"; } }
110
- .glyphicon-move { &:before { content: "\e068"; } }
111
- .glyphicon-step-backward { &:before { content: "\e069"; } }
112
- .glyphicon-fast-backward { &:before { content: "\e070"; } }
113
- .glyphicon-backward { &:before { content: "\e071"; } }
114
- .glyphicon-play { &:before { content: "\e072"; } }
115
- .glyphicon-pause { &:before { content: "\e073"; } }
116
- .glyphicon-stop { &:before { content: "\e074"; } }
117
- .glyphicon-forward { &:before { content: "\e075"; } }
118
- .glyphicon-fast-forward { &:before { content: "\e076"; } }
119
- .glyphicon-step-forward { &:before { content: "\e077"; } }
120
- .glyphicon-eject { &:before { content: "\e078"; } }
121
- .glyphicon-chevron-left { &:before { content: "\e079"; } }
122
- .glyphicon-chevron-right { &:before { content: "\e080"; } }
123
- .glyphicon-plus-sign { &:before { content: "\e081"; } }
124
- .glyphicon-minus-sign { &:before { content: "\e082"; } }
125
- .glyphicon-remove-sign { &:before { content: "\e083"; } }
126
- .glyphicon-ok-sign { &:before { content: "\e084"; } }
127
- .glyphicon-question-sign { &:before { content: "\e085"; } }
128
- .glyphicon-info-sign { &:before { content: "\e086"; } }
129
- .glyphicon-screenshot { &:before { content: "\e087"; } }
130
- .glyphicon-remove-circle { &:before { content: "\e088"; } }
131
- .glyphicon-ok-circle { &:before { content: "\e089"; } }
132
- .glyphicon-ban-circle { &:before { content: "\e090"; } }
133
- .glyphicon-arrow-left { &:before { content: "\e091"; } }
134
- .glyphicon-arrow-right { &:before { content: "\e092"; } }
135
- .glyphicon-arrow-up { &:before { content: "\e093"; } }
136
- .glyphicon-arrow-down { &:before { content: "\e094"; } }
137
- .glyphicon-share-alt { &:before { content: "\e095"; } }
138
- .glyphicon-resize-full { &:before { content: "\e096"; } }
139
- .glyphicon-resize-small { &:before { content: "\e097"; } }
140
- .glyphicon-exclamation-sign { &:before { content: "\e101"; } }
141
- .glyphicon-gift { &:before { content: "\e102"; } }
142
- .glyphicon-leaf { &:before { content: "\e103"; } }
143
- .glyphicon-fire { &:before { content: "\e104"; } }
144
- .glyphicon-eye-open { &:before { content: "\e105"; } }
145
- .glyphicon-eye-close { &:before { content: "\e106"; } }
146
- .glyphicon-warning-sign { &:before { content: "\e107"; } }
147
- .glyphicon-plane { &:before { content: "\e108"; } }
148
- .glyphicon-calendar { &:before { content: "\e109"; } }
149
- .glyphicon-random { &:before { content: "\e110"; } }
150
- .glyphicon-comment { &:before { content: "\e111"; } }
151
- .glyphicon-magnet { &:before { content: "\e112"; } }
152
- .glyphicon-chevron-up { &:before { content: "\e113"; } }
153
- .glyphicon-chevron-down { &:before { content: "\e114"; } }
154
- .glyphicon-retweet { &:before { content: "\e115"; } }
155
- .glyphicon-shopping-cart { &:before { content: "\e116"; } }
156
- .glyphicon-folder-close { &:before { content: "\e117"; } }
157
- .glyphicon-folder-open { &:before { content: "\e118"; } }
158
- .glyphicon-resize-vertical { &:before { content: "\e119"; } }
159
- .glyphicon-resize-horizontal { &:before { content: "\e120"; } }
160
- .glyphicon-hdd { &:before { content: "\e121"; } }
161
- .glyphicon-bullhorn { &:before { content: "\e122"; } }
162
- .glyphicon-bell { &:before { content: "\e123"; } }
163
- .glyphicon-certificate { &:before { content: "\e124"; } }
164
- .glyphicon-thumbs-up { &:before { content: "\e125"; } }
165
- .glyphicon-thumbs-down { &:before { content: "\e126"; } }
166
- .glyphicon-hand-right { &:before { content: "\e127"; } }
167
- .glyphicon-hand-left { &:before { content: "\e128"; } }
168
- .glyphicon-hand-up { &:before { content: "\e129"; } }
169
- .glyphicon-hand-down { &:before { content: "\e130"; } }
170
- .glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
171
- .glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
172
- .glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
173
- .glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
174
- .glyphicon-globe { &:before { content: "\e135"; } }
175
- .glyphicon-wrench { &:before { content: "\e136"; } }
176
- .glyphicon-tasks { &:before { content: "\e137"; } }
177
- .glyphicon-filter { &:before { content: "\e138"; } }
178
- .glyphicon-briefcase { &:before { content: "\e139"; } }
179
- .glyphicon-fullscreen { &:before { content: "\e140"; } }
180
- .glyphicon-dashboard { &:before { content: "\e141"; } }
181
- .glyphicon-paperclip { &:before { content: "\e142"; } }
182
- .glyphicon-heart-empty { &:before { content: "\e143"; } }
183
- .glyphicon-link { &:before { content: "\e144"; } }
184
- .glyphicon-phone { &:before { content: "\e145"; } }
185
- .glyphicon-pushpin { &:before { content: "\e146"; } }
186
- .glyphicon-usd { &:before { content: "\e148"; } }
187
- .glyphicon-gbp { &:before { content: "\e149"; } }
188
- .glyphicon-sort { &:before { content: "\e150"; } }
189
- .glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
190
- .glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
191
- .glyphicon-sort-by-order { &:before { content: "\e153"; } }
192
- .glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
193
- .glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
194
- .glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
195
- .glyphicon-unchecked { &:before { content: "\e157"; } }
196
- .glyphicon-expand { &:before { content: "\e158"; } }
197
- .glyphicon-collapse-down { &:before { content: "\e159"; } }
198
- .glyphicon-collapse-up { &:before { content: "\e160"; } }
199
- .glyphicon-log-in { &:before { content: "\e161"; } }
200
- .glyphicon-flash { &:before { content: "\e162"; } }
201
- .glyphicon-log-out { &:before { content: "\e163"; } }
202
- .glyphicon-new-window { &:before { content: "\e164"; } }
203
- .glyphicon-record { &:before { content: "\e165"; } }
204
- .glyphicon-save { &:before { content: "\e166"; } }
205
- .glyphicon-open { &:before { content: "\e167"; } }
206
- .glyphicon-saved { &:before { content: "\e168"; } }
207
- .glyphicon-import { &:before { content: "\e169"; } }
208
- .glyphicon-export { &:before { content: "\e170"; } }
209
- .glyphicon-send { &:before { content: "\e171"; } }
210
- .glyphicon-floppy-disk { &:before { content: "\e172"; } }
211
- .glyphicon-floppy-saved { &:before { content: "\e173"; } }
212
- .glyphicon-floppy-remove { &:before { content: "\e174"; } }
213
- .glyphicon-floppy-save { &:before { content: "\e175"; } }
214
- .glyphicon-floppy-open { &:before { content: "\e176"; } }
215
- .glyphicon-credit-card { &:before { content: "\e177"; } }
216
- .glyphicon-transfer { &:before { content: "\e178"; } }
217
- .glyphicon-cutlery { &:before { content: "\e179"; } }
218
- .glyphicon-header { &:before { content: "\e180"; } }
219
- .glyphicon-compressed { &:before { content: "\e181"; } }
220
- .glyphicon-earphone { &:before { content: "\e182"; } }
221
- .glyphicon-phone-alt { &:before { content: "\e183"; } }
222
- .glyphicon-tower { &:before { content: "\e184"; } }
223
- .glyphicon-stats { &:before { content: "\e185"; } }
224
- .glyphicon-sd-video { &:before { content: "\e186"; } }
225
- .glyphicon-hd-video { &:before { content: "\e187"; } }
226
- .glyphicon-subtitles { &:before { content: "\e188"; } }
227
- .glyphicon-sound-stereo { &:before { content: "\e189"; } }
228
- .glyphicon-sound-dolby { &:before { content: "\e190"; } }
229
- .glyphicon-sound-5-1 { &:before { content: "\e191"; } }
230
- .glyphicon-sound-6-1 { &:before { content: "\e192"; } }
231
- .glyphicon-sound-7-1 { &:before { content: "\e193"; } }
232
- .glyphicon-copyright-mark { &:before { content: "\e194"; } }
233
- .glyphicon-registration-mark { &:before { content: "\e195"; } }
234
- .glyphicon-cloud-download { &:before { content: "\e197"; } }
235
- .glyphicon-cloud-upload { &:before { content: "\e198"; } }
236
- .glyphicon-tree-conifer { &:before { content: "\e199"; } }
237
- .glyphicon-tree-deciduous { &:before { content: "\e200"; } }
238
- .glyphicon-cd { &:before { content: "\e201"; } }
239
- .glyphicon-save-file { &:before { content: "\e202"; } }
240
- .glyphicon-open-file { &:before { content: "\e203"; } }
241
- .glyphicon-level-up { &:before { content: "\e204"; } }
242
- .glyphicon-copy { &:before { content: "\e205"; } }
243
- .glyphicon-paste { &:before { content: "\e206"; } }
244
- // The following 2 Glyphicons are omitted for the time being because
245
- // they currently use Unicode codepoints that are outside the
246
- // Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
247
- // non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
248
- // Notably, the bug affects some older versions of the Android Browser.
249
- // More info: https://github.com/twbs/bootstrap/issues/10106
250
- // .glyphicon-door { &:before { content: "\1f6aa"; } }
251
- // .glyphicon-key { &:before { content: "\1f511"; } }
252
- .glyphicon-alert { &:before { content: "\e209"; } }
253
- .glyphicon-equalizer { &:before { content: "\e210"; } }
254
- .glyphicon-king { &:before { content: "\e211"; } }
255
- .glyphicon-queen { &:before { content: "\e212"; } }
256
- .glyphicon-pawn { &:before { content: "\e213"; } }
257
- .glyphicon-bishop { &:before { content: "\e214"; } }
258
- .glyphicon-knight { &:before { content: "\e215"; } }
259
- .glyphicon-baby-formula { &:before { content: "\e216"; } }
260
- .glyphicon-tent { &:before { content: "\26fa"; } }
261
- .glyphicon-blackboard { &:before { content: "\e218"; } }
262
- .glyphicon-bed { &:before { content: "\e219"; } }
263
- .glyphicon-apple { &:before { content: "\f8ff"; } }
264
- .glyphicon-erase { &:before { content: "\e221"; } }
265
- .glyphicon-hourglass { &:before { content: "\231b"; } }
266
- .glyphicon-lamp { &:before { content: "\e223"; } }
267
- .glyphicon-duplicate { &:before { content: "\e224"; } }
268
- .glyphicon-piggy-bank { &:before { content: "\e225"; } }
269
- .glyphicon-scissors { &:before { content: "\e226"; } }
270
- .glyphicon-bitcoin { &:before { content: "\e227"; } }
271
- .glyphicon-btc { &:before { content: "\e227"; } }
272
- .glyphicon-xbt { &:before { content: "\e227"; } }
273
- .glyphicon-yen { &:before { content: "\00a5"; } }
274
- .glyphicon-jpy { &:before { content: "\00a5"; } }
275
- .glyphicon-ruble { &:before { content: "\20bd"; } }
276
- .glyphicon-rub { &:before { content: "\20bd"; } }
277
- .glyphicon-scale { &:before { content: "\e230"; } }
278
- .glyphicon-ice-lolly { &:before { content: "\e231"; } }
279
- .glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } }
280
- .glyphicon-education { &:before { content: "\e233"; } }
281
- .glyphicon-option-horizontal { &:before { content: "\e234"; } }
282
- .glyphicon-option-vertical { &:before { content: "\e235"; } }
283
- .glyphicon-menu-hamburger { &:before { content: "\e236"; } }
284
- .glyphicon-modal-window { &:before { content: "\e237"; } }
285
- .glyphicon-oil { &:before { content: "\e238"; } }
286
- .glyphicon-grain { &:before { content: "\e239"; } }
287
- .glyphicon-sunglasses { &:before { content: "\e240"; } }
288
- .glyphicon-text-size { &:before { content: "\e241"; } }
289
- .glyphicon-text-color { &:before { content: "\e242"; } }
290
- .glyphicon-text-background { &:before { content: "\e243"; } }
291
- .glyphicon-object-align-top { &:before { content: "\e244"; } }
292
- .glyphicon-object-align-bottom { &:before { content: "\e245"; } }
293
- .glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
294
- .glyphicon-object-align-left { &:before { content: "\e247"; } }
295
- .glyphicon-object-align-vertical { &:before { content: "\e248"; } }
296
- .glyphicon-object-align-right { &:before { content: "\e249"; } }
297
- .glyphicon-triangle-right { &:before { content: "\e250"; } }
298
- .glyphicon-triangle-left { &:before { content: "\e251"; } }
299
- .glyphicon-triangle-bottom { &:before { content: "\e252"; } }
300
- .glyphicon-triangle-top { &:before { content: "\e253"; } }
301
- .glyphicon-console { &:before { content: "\e254"; } }
302
- .glyphicon-superscript { &:before { content: "\e255"; } }
303
- .glyphicon-subscript { &:before { content: "\e256"; } }
304
- .glyphicon-menu-left { &:before { content: "\e257"; } }
305
- .glyphicon-menu-right { &:before { content: "\e258"; } }
306
- .glyphicon-menu-down { &:before { content: "\e259"; } }
307
- .glyphicon-menu-up { &:before { content: "\e260"; } }
@@ -1,84 +0,0 @@
1
- //
2
- // Grid system
3
- // --------------------------------------------------
4
-
5
-
6
- // Container widths
7
- //
8
- // Set the container width, and override it for fixed navbars in media queries.
9
-
10
- .container {
11
- @include container-fixed;
12
-
13
- @media (min-width: $screen-sm-min) {
14
- width: $container-sm;
15
- }
16
- @media (min-width: $screen-md-min) {
17
- width: $container-md;
18
- }
19
- @media (min-width: $screen-lg-min) {
20
- width: $container-lg;
21
- }
22
- }
23
-
24
-
25
- // Fluid container
26
- //
27
- // Utilizes the mixin meant for fixed width containers, but without any defined
28
- // width for fluid, full width layouts.
29
-
30
- .container-fluid {
31
- @include container-fixed;
32
- }
33
-
34
-
35
- // Row
36
- //
37
- // Rows contain and clear the floats of your columns.
38
-
39
- .row {
40
- @include make-row;
41
- }
42
-
43
-
44
- // Columns
45
- //
46
- // Common styles for small and large grid columns
47
-
48
- @include make-grid-columns;
49
-
50
-
51
- // Extra small grid
52
- //
53
- // Columns, offsets, pushes, and pulls for extra small devices like
54
- // smartphones.
55
-
56
- @include make-grid(xs);
57
-
58
-
59
- // Small grid
60
- //
61
- // Columns, offsets, pushes, and pulls for the small device range, from phones
62
- // to tablets.
63
-
64
- @media (min-width: $screen-sm-min) {
65
- @include make-grid(sm);
66
- }
67
-
68
-
69
- // Medium grid
70
- //
71
- // Columns, offsets, pushes, and pulls for the desktop device range.
72
-
73
- @media (min-width: $screen-md-min) {
74
- @include make-grid(md);
75
- }
76
-
77
-
78
- // Large grid
79
- //
80
- // Columns, offsets, pushes, and pulls for the large desktop device range.
81
-
82
- @media (min-width: $screen-lg-min) {
83
- @include make-grid(lg);
84
- }
@@ -1,167 +0,0 @@
1
- //
2
- // Input groups
3
- // --------------------------------------------------
4
-
5
- // Base styles
6
- // -------------------------
7
- .input-group {
8
- position: relative; // For dropdowns
9
- display: table;
10
- border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
11
-
12
- // Undo padding and float of grid classes
13
- &[class*="col-"] {
14
- float: none;
15
- padding-left: 0;
16
- padding-right: 0;
17
- }
18
-
19
- .form-control {
20
- // Ensure that the input is always above the *appended* addon button for
21
- // proper border colors.
22
- position: relative;
23
- z-index: 2;
24
-
25
- // IE9 fubars the placeholder attribute in text inputs and the arrows on
26
- // select elements in input groups. To fix it, we float the input. Details:
27
- // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
28
- float: left;
29
-
30
- width: 100%;
31
- margin-bottom: 0;
32
- }
33
- }
34
-
35
- // Sizing options
36
- //
37
- // Remix the default form control sizing classes into new ones for easier
38
- // manipulation.
39
-
40
- .input-group-lg > .form-control,
41
- .input-group-lg > .input-group-addon,
42
- .input-group-lg > .input-group-btn > .btn {
43
- @extend .input-lg;
44
- }
45
- .input-group-sm > .form-control,
46
- .input-group-sm > .input-group-addon,
47
- .input-group-sm > .input-group-btn > .btn {
48
- @extend .input-sm;
49
- }
50
-
51
-
52
- // Display as table-cell
53
- // -------------------------
54
- .input-group-addon,
55
- .input-group-btn,
56
- .input-group .form-control {
57
- display: table-cell;
58
-
59
- &:not(:first-child):not(:last-child) {
60
- border-radius: 0;
61
- }
62
- }
63
- // Addon and addon wrapper for buttons
64
- .input-group-addon,
65
- .input-group-btn {
66
- width: 1%;
67
- white-space: nowrap;
68
- vertical-align: middle; // Match the inputs
69
- }
70
-
71
- // Text input groups
72
- // -------------------------
73
- .input-group-addon {
74
- padding: $padding-base-vertical $padding-base-horizontal;
75
- font-size: $font-size-base;
76
- font-weight: normal;
77
- line-height: 1;
78
- color: $input-color;
79
- text-align: center;
80
- background-color: $input-group-addon-bg;
81
- border: 1px solid $input-group-addon-border-color;
82
- border-radius: $border-radius-base;
83
-
84
- // Sizing
85
- &.input-sm {
86
- padding: $padding-small-vertical $padding-small-horizontal;
87
- font-size: $font-size-small;
88
- border-radius: $border-radius-small;
89
- }
90
- &.input-lg {
91
- padding: $padding-large-vertical $padding-large-horizontal;
92
- font-size: $font-size-large;
93
- border-radius: $border-radius-large;
94
- }
95
-
96
- // Nuke default margins from checkboxes and radios to vertically center within.
97
- input[type="radio"],
98
- input[type="checkbox"] {
99
- margin-top: 0;
100
- }
101
- }
102
-
103
- // Reset rounded corners
104
- .input-group .form-control:first-child,
105
- .input-group-addon:first-child,
106
- .input-group-btn:first-child > .btn,
107
- .input-group-btn:first-child > .btn-group > .btn,
108
- .input-group-btn:first-child > .dropdown-toggle,
109
- .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
110
- .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
111
- @include border-right-radius(0);
112
- }
113
- .input-group-addon:first-child {
114
- border-right: 0;
115
- }
116
- .input-group .form-control:last-child,
117
- .input-group-addon:last-child,
118
- .input-group-btn:last-child > .btn,
119
- .input-group-btn:last-child > .btn-group > .btn,
120
- .input-group-btn:last-child > .dropdown-toggle,
121
- .input-group-btn:first-child > .btn:not(:first-child),
122
- .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
123
- @include border-left-radius(0);
124
- }
125
- .input-group-addon:last-child {
126
- border-left: 0;
127
- }
128
-
129
- // Button input groups
130
- // -------------------------
131
- .input-group-btn {
132
- position: relative;
133
- // Jankily prevent input button groups from wrapping with `white-space` and
134
- // `font-size` in combination with `inline-block` on buttons.
135
- font-size: 0;
136
- white-space: nowrap;
137
-
138
- // Negative margin for spacing, position for bringing hovered/focused/actived
139
- // element above the siblings.
140
- > .btn {
141
- position: relative;
142
- + .btn {
143
- margin-left: -1px;
144
- }
145
- // Bring the "active" button to the front
146
- &:hover,
147
- &:focus,
148
- &:active {
149
- z-index: 2;
150
- }
151
- }
152
-
153
- // Negative margin to only have a 1px border between the two
154
- &:first-child {
155
- > .btn,
156
- > .btn-group {
157
- margin-right: -1px;
158
- }
159
- }
160
- &:last-child {
161
- > .btn,
162
- > .btn-group {
163
- z-index: 2;
164
- margin-left: -1px;
165
- }
166
- }
167
- }