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,80 +0,0 @@
1
- // Foundation for Sites by ZURB
2
- // foundation.zurb.com
3
- // Licensed under MIT Open Source
4
-
5
- ////
6
- /// @group typography-helpers
7
- ////
8
-
9
- /// Default font size for lead paragraphs.
10
- /// @type Number
11
- $lead-font-size: $global-font-size * 1.25 !default;
12
-
13
- /// Default line height for lead paragraphs.
14
- /// @type String
15
- $lead-lineheight: 1.6 !default;
16
-
17
- /// Default line height for subheaders.
18
- /// @type Number
19
- $subheader-lineheight: 1.4 !default;
20
-
21
- /// Default font color for subheaders.
22
- /// @type Color
23
- $subheader-color: $dark-gray !default;
24
-
25
- /// Default font weight for subheaders.
26
- /// @type String
27
- $subheader-font-weight: $global-weight-normal !default;
28
-
29
- /// Default top margin for subhheaders.
30
- /// @type Number
31
- $subheader-margin-top: 0.2rem !default;
32
-
33
- /// Default bottom margin for subheaders.
34
- /// @type Number
35
- $subheader-margin-bottom: 0.5rem !default;
36
-
37
- /// Default font size for statistic numbers.
38
- /// @type Number
39
- $stat-font-size: 2.5rem !default;
40
-
41
- @mixin foundation-typography-helpers {
42
- // Use to create a subheading under a main header
43
- // Make sure you pair the two elements in a <header> element, like this:
44
- // <header>
45
- // <h1>Heading</h1>
46
- // <h2>Subheading</h2>
47
- // </header>
48
- .subheader {
49
- margin-top: $subheader-margin-top;
50
- margin-bottom: $subheader-margin-bottom;
51
-
52
- font-weight: $subheader-font-weight;
53
- line-height: $subheader-lineheight;
54
- color: $subheader-color;
55
- }
56
-
57
- // Use to style an introductory lead, deck, blurb, etc.
58
- .lead {
59
- font-size: $lead-font-size;
60
- line-height: $lead-lineheight;
61
- }
62
-
63
- // Use to style a large number to display a statistic
64
- .stat {
65
- font-size: $stat-font-size;
66
- line-height: 1;
67
-
68
- p + & {
69
- margin-top: -1rem;
70
- }
71
- }
72
-
73
- ul, ol {
74
- // Use to remove numbers from ordered list & bullets from unordered list
75
- &.no-bullet {
76
- margin-#{$global-left}: 0;
77
- list-style: none;
78
- }
79
- }
80
- }
@@ -1,86 +0,0 @@
1
- // Foundation for Sites by ZURB
2
- // foundation.zurb.com
3
- // Licensed under MIT Open Source
4
-
5
- /// If `true`, all elements will have transparent backgrounds when printed, to save on ink.
6
- /// @type Boolean
7
- /// @group global
8
- $print-transparent-backgrounds: true !default;
9
- $print-hrefs: true !default;
10
-
11
- // sass-lint:disable-all
12
-
13
- @mixin foundation-print-styles {
14
- .show-for-print { display: none !important; }
15
-
16
- @media print {
17
- * {
18
- @if $print-transparent-backgrounds {
19
- background: transparent !important;
20
- }
21
-
22
- box-shadow: none !important;
23
-
24
- color: black !important; // Black prints faster: h5bp.com/s
25
- text-shadow: none !important;
26
- }
27
-
28
- .show-for-print { display: block !important; }
29
- .hide-for-print { display: none !important; }
30
-
31
- table.show-for-print { display: table !important; }
32
- thead.show-for-print { display: table-header-group !important; }
33
- tbody.show-for-print { display: table-row-group !important; }
34
- tr.show-for-print { display: table-row !important; }
35
- td.show-for-print { display: table-cell !important; }
36
- th.show-for-print { display: table-cell !important; }
37
-
38
- // Display the URL of a link after the text
39
- a,
40
- a:visited { text-decoration: underline;}
41
- @if $print-hrefs {
42
- a[href]:after { content: ' (' attr(href) ')'; }
43
- }
44
-
45
- // Don't display the URL for images or JavaScript/internal links
46
- .ir a:after,
47
- a[href^='javascript:']:after,
48
- a[href^='#']:after { content: ''; }
49
-
50
- // Display what an abbreviation stands for after the text
51
- abbr[title]:after { content: ' (' attr(title) ')'; }
52
-
53
- // Prevent page breaks in the middle of a blockquote or preformatted text block
54
- pre,
55
- blockquote {
56
- border: 1px solid $dark-gray;
57
- page-break-inside: avoid;
58
- }
59
-
60
- // h5bp.com/t
61
- thead { display: table-header-group; }
62
-
63
- tr,
64
- img { page-break-inside: avoid; }
65
-
66
- img { max-width: 100% !important; }
67
-
68
- @page { margin: 0.5cm; }
69
-
70
- p,
71
- h2,
72
- h3 {
73
- orphans: 3;
74
- widows: 3;
75
- }
76
-
77
- // Avoid page breaks after a heading
78
- h2,
79
- h3 { page-break-after: avoid; }
80
-
81
- // Helper to re-allow page breaks in the middle of certain elements (e.g. pre, blockquote, tr)
82
- .print-break-inside {
83
- page-break-inside: auto;
84
- }
85
- }
86
- }
@@ -1,26 +0,0 @@
1
- // Foundation for Sites by ZURB
2
- // foundation.zurb.com
3
- // Licensed under MIT Open Source
4
-
5
- ////
6
- /// @group typography
7
- ////
8
-
9
- // Base typography styles (tags only)
10
- @import 'base';
11
-
12
- // Typography helper classes (classes only)
13
- @import 'helpers';
14
-
15
- // Text alignment classes
16
- @import 'alignment';
17
-
18
- // Print styles
19
- @import 'print';
20
-
21
- @mixin foundation-typography {
22
- @include foundation-typography-base;
23
- @include foundation-typography-helpers;
24
- @include foundation-text-alignment;
25
- @include foundation-print-styles;
26
- }
@@ -1,348 +0,0 @@
1
- // Foundation for Sites by ZURB
2
- // foundation.zurb.com
3
- // Licensed under MIT Open Source
4
-
5
- ////
6
- /// @group breakpoints
7
- ////
8
-
9
- /// A list of named breakpoints. You can use these with the `breakpoint()` mixin to quickly create media queries.
10
- /// @type Map
11
- $breakpoints: (
12
- small: 0,
13
- medium: 640px,
14
- large: 1024px,
15
- xlarge: 1200px,
16
- xxlarge: 1440px,
17
- ) !default;
18
-
19
- /// The largest named breakpoint in which to include print as a media type
20
- /// @type Keyword
21
- $print-breakpoint: large !default;
22
-
23
- $-zf-zero-breakpoint: small !default;
24
-
25
- $-zf-breakpoints-keys: map-to-list($breakpoints, 'keys');
26
-
27
- @if nth(map-values($breakpoints), 1) != 0 {
28
- @error 'Your smallest breakpoint (defined in $breakpoints) must be set to "0".';
29
- }
30
- @else {
31
- $-zf-zero-breakpoint: nth(map-keys($breakpoints), 1);
32
- }
33
-
34
- /// All of the names in this list will be output as classes in your CSS, like `.small-12`, `.medium-6`, and so on. Each value in this list must also be in the `$breakpoints` map.
35
- /// @type List
36
- $breakpoint-classes: (small medium large) !default;
37
-
38
- /// Generates a media query string matching the input value. Refer to the documentation for the `breakpoint()` mixin to see what the possible inputs are.
39
- ///
40
- /// @param {Keyword|Number} $val [small] - Breakpoint name, or px, rem, or em value to process.
41
- @function breakpoint($val: $-zf-zero-breakpoint) {
42
- // Size or keyword
43
- $bp: nth($val, 1);
44
- // Value for max-width media queries
45
- $bp-max: 0;
46
- // Direction of media query (up, down, or only)
47
- $dir: if(length($val) > 1, nth($val, 2), up);
48
- // Eventual output
49
- $str: '';
50
- // Is it a named media query?
51
- $named: false;
52
-
53
- // Orientation media queries have a unique syntax
54
- @if $bp == 'landscape' or $bp == 'portrait' {
55
- @return '(orientation: #{$bp})';
56
- }
57
- @else if $bp == 'retina' {
58
- @return '(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)';
59
- }
60
-
61
- // Try to pull a named breakpoint out of the $breakpoints map
62
- @if type-of($bp) == 'string' {
63
- @if map-has-key($breakpoints, $bp) {
64
- @if $dir == 'only' or $dir == 'down' {
65
- $bp-max: -zf-map-next($breakpoints, $bp);
66
- }
67
-
68
- $bp: map-get($breakpoints, $bp);
69
- $named: true;
70
- }
71
- @else {
72
- $bp: 0;
73
- @warn 'breakpoint(): "#{$val}" is not defined in your $breakpoints setting.';
74
- }
75
- }
76
-
77
- // Convert any pixel, rem, or unitless value to em
78
- $bp: -zf-bp-to-em($bp);
79
- @if $bp-max {
80
- $bp-max: -zf-bp-to-em($bp-max) - (1/16);
81
- }
82
-
83
- // Conditions to skip media query creation
84
- // - It's a named breakpoint that resolved to "0 down" or "0 up"
85
- // - It's a numeric breakpoint that resolved to "0 " + anything
86
- @if $bp > 0em or $dir == 'only' or $dir == 'down' {
87
- // `only` ranges use the format `(min-width: n) and (max-width: n)`
88
- @if $dir == 'only' {
89
- // Only named media queries can have an "only" range
90
- @if $named == true {
91
- // Only use "min-width" if the floor is greater than 0
92
- @if $bp > 0em {
93
- $str: $str + '(min-width: #{$bp})';
94
-
95
- // Only add "and" to the media query if there's a ceiling
96
- @if $bp-max != null {
97
- $str: $str + ' and ';
98
- }
99
- }
100
-
101
- // Only use "max-width" if there's a ceiling
102
- @if $bp-max != null {
103
- $str: $str + '(max-width: #{$bp-max})';
104
- }
105
- }
106
- @else {
107
- @warn 'breakpoint(): Only named media queries can have an `only` range.';
108
- }
109
- }
110
-
111
- // `down` ranges use the format `(max-width: n)`
112
- @else if $dir == 'down' {
113
- $max: if($named, $bp-max, $bp);
114
-
115
- // Skip media query creation if input value is exactly "0 down",
116
- // unless the function was called as "small down", in which case it's just "small only"
117
- @if $named or $bp > 0em {
118
- @if $max != null {
119
- $str: $str + '(max-width: #{$max})';
120
- }
121
- }
122
- }
123
-
124
- // `up` ranges use the format `(min-width: n)`
125
- @else if $bp > 0em {
126
- $str: $str + '(min-width: #{$bp})';
127
- }
128
- }
129
-
130
- @return $str;
131
- }
132
-
133
- /// Wraps a media query around the content you put inside the mixin. This mixin accepts a number of values:
134
- /// - If a string is passed, the mixin will look for it in the `$breakpoints` map, and use a media query there.
135
- /// - If a pixel value is passed, it will be converted to an em value using `$global-font-size` as the base.
136
- /// - If a rem value is passed, the unit will be changed to em.
137
- /// - If an em value is passed, the value will be used as-is.
138
- ///
139
- /// @param {Keyword|Number} $value - Breakpoint name, or px, rem, or em value to process.
140
- ///
141
- /// @output If the breakpoint is "0px and larger", outputs the content as-is. Otherwise, outputs the content wrapped in a media query.
142
- @mixin breakpoint($value) {
143
- $str: breakpoint($value);
144
- $bp: index($-zf-breakpoints-keys, $value);
145
- $pbp: index($-zf-breakpoints-keys, $print-breakpoint);
146
-
147
- $old-zf-size: null;
148
-
149
- // Make breakpoint size available as a variable
150
- @if global-variable-exists(-zf-size) {
151
- $old-zf-size: $-zf-size;
152
- }
153
- $-zf-size: nth($value, 1) !global; // get the first value to account for `only` and `down` keywords
154
-
155
- // If $str is still an empty string, no media query is needed
156
- @if $str == '' {
157
- @content;
158
- }
159
-
160
- // Otherwise, wrap the content in a media query
161
- @else {
162
- // For named breakpoints less than or equal to $print-breakpoint, add print to the media types
163
- @if $bp != null and $bp <= $pbp {
164
- @media print, screen and #{$str} {
165
- @content;
166
- }
167
- }
168
- @else {
169
- @media screen and #{$str} {
170
- @content;
171
- }
172
- }
173
- }
174
-
175
- @if $old-zf-size != null {
176
- // Restore the old breakpoint size
177
- $-zf-size: $old-zf-size !global;
178
- } @else {
179
- $-zf-size: null !global;
180
- }
181
- }
182
-
183
- /// Convers the breakpoints map to a URL-encoded string, like this: `key1=value1&key2=value2`. The value is then dropped into the CSS for a special `<meta>` tag, which is read by the Foundation JavaScript. This is how we transfer values from Sass to JavaScript, so they can be defined in one place.
184
- /// @access private
185
- ///
186
- /// @param {Map} $map - Map to convert.
187
- ///
188
- /// @returns {String} A string containing the map's contents.
189
- @function -zf-bp-serialize($map) {
190
- $str: '';
191
- @each $key, $value in $map {
192
- $str: $str + $key + '=' + -zf-bp-to-em($value) + '&';
193
- }
194
- $str: str-slice($str, 1, -2);
195
-
196
- @return $str;
197
- }
198
-
199
- /// Find the next key in a map.
200
- /// @access private
201
- ///
202
- /// @param {Map} $map - Map to traverse.
203
- /// @param {Mixed} $key - Key to use as a starting point.
204
- ///
205
- /// @returns {Mixed} The value for the key after `$key`, if `$key` was found. If `$key` was not found, or `$key` was the last value in the map, returns `null`.
206
- @function -zf-map-next($map, $key) {
207
-
208
- // Store the keys of the map as a list
209
- $values: map-keys($map);
210
-
211
- $i: 0;
212
-
213
- // If the Key Exists, Get the index of the key within the map and add 1 to it for the next breakpoint in the map
214
- @if (map-has-key($map, $key)) {
215
- $i: index($values, $key) + 1;
216
- }
217
-
218
- // If the key doesn't exist, or it's the last key in the map, return null
219
- @if ($i > length($map) or $i == 0) {
220
- @return null;
221
- }
222
- // Otherwise, return the value
223
- @else {
224
- @return map-get($map, nth($values, $i));
225
- }
226
-
227
- }
228
-
229
- /// Return a list of our named breakpoints less than $key. Useful for dealing with
230
- /// responsive gutters for the grid.
231
- /// @access private
232
- ///
233
- /// @param {String} $key - Key to use as last breakpoint.
234
- ///
235
- /// @returns {Array} The list of breakpoints up to and. If $key is auto, returns breakpoints above the zero
236
- @function -zf-breakpoints-less-than($key) {
237
- $list: ();
238
- $found_key: false;
239
-
240
- @each $name in $-zf-breakpoints-keys {
241
- @if ($name == $key) {
242
- $found_key: true;
243
- }
244
- @if not $found_key {
245
- $list: append($list, $name);
246
- }
247
- }
248
- @return $list;
249
- }
250
-
251
- /// Return a list of our named breakpoints less than $key. Useful for dealing with
252
- /// responsive gutters for the grid.
253
- /// @access private
254
- ///
255
- /// @param {String} $breakpoing - a named or non-named breakpoing.
256
- ///
257
- /// @returns {Array} The list of breakpoints up to and. If $key is auto, returns breakpoints above the zero
258
- @function -zf-closest-named-breakpoint($breakpoint) {
259
- $last: $-zf-zero-breakpoint;
260
- $found: false;
261
-
262
- $value: unitless-calc($breakpoint, 1px);
263
- @each $key, $val in $breakpoints {
264
- @if not $found {
265
- @if unitless-calc($val) > $value {
266
- $found: true;
267
- } @else {
268
- $last: $key;
269
- }
270
- }
271
- }
272
-
273
- @return $last;
274
- }
275
-
276
- /// Get a value for a breakpoint from a responsive config map or single value.
277
- /// - If the config is a single value, return it regardless of `$value`.
278
- /// - If the config is a map and has the key `$value`, the exact breakpoint value is returned.
279
- /// - If the config is a map and does *not* have the breakpoint, the value matching the next lowest breakpoint in the config map is returned.
280
- /// @access private
281
- ///
282
- /// @param {Number|Map} $map - Responsive config map or single value.
283
- /// @param {Keyword} $value - Breakpoint name to use.
284
- ///
285
- /// @return {Mixed} The corresponding breakpoint value.
286
- @function -zf-get-bp-val($map, $value) {
287
- // If the given map is a single value, return it
288
- @if type-of($map) == 'number' {
289
- @return $map;
290
- }
291
-
292
-
293
- // Check if the breakpoint name exists globally
294
- @if not map-has-key($breakpoints, $value) {
295
- @if type-of($value) == 'number' {
296
- $value: -zf-closest-named-breakpoint($value);
297
- } @else {
298
- @return null;
299
- }
300
- }
301
- // Check if the breakpoint name exists in the local config map
302
- @else if map-has-key($map, $value) {
303
- // If it does, just return the value
304
- @return map-get($map, $value);
305
- }
306
- // Otherwise, find the next lowest breakpoint and return that value
307
- @else {
308
- $anchor: null;
309
- $found: false;
310
-
311
- @each $key, $val in $breakpoints {
312
- @if not $found {
313
- @if map-has-key($map, $key) {
314
- $anchor: $key;
315
- }
316
- @if $key == $value {
317
- $found: true;
318
- }
319
- }
320
- }
321
-
322
- @return map-get($map, $anchor);
323
- }
324
- }
325
-
326
- @if map-has-key($breakpoints, small) {
327
- $small-up: screen;
328
- $small-only: unquote('screen and #{breakpoint(small only)}');
329
- }
330
-
331
- @if map-has-key($breakpoints, medium) {
332
- $medium-up: unquote('screen and #{breakpoint(medium)}');
333
- $medium-only: unquote('screen and #{breakpoint(medium only)}');
334
- }
335
-
336
- @if map-has-key($breakpoints, large) {
337
- $large-up: unquote('screen and #{breakpoint(large)}');
338
- $large-only: unquote('screen and #{breakpoint(large only)}');
339
- }
340
-
341
- @if map-has-key($breakpoints, xlarge) {
342
- $xlarge-up: unquote('screen and #{breakpoint(xlarge)}');
343
- $xlarge-only: unquote('screen and #{breakpoint(xlarge only)}');
344
- }
345
-
346
- @if map-has-key($breakpoints, xxlarge) {
347
- $xxlarge-up: unquote('screen and #{breakpoint(xxlarge)}');
348
- }