cmtool 0.4.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (530) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +6 -0
  5. data/Gemfile +51 -0
  6. data/Gemfile.lock +308 -0
  7. data/README.md +157 -0
  8. data/app/assets/images/cmtool/.gitkeep +0 -0
  9. data/app/assets/javascripts/cmtool/application.js.coffee +38 -0
  10. data/app/assets/javascripts/cmtool/collapsible.js.coffee +6 -0
  11. data/app/assets/javascripts/cmtool/emblem.js +6262 -0
  12. data/app/assets/javascripts/cmtool/handlebars.js +2746 -0
  13. data/app/assets/javascripts/cmtool/html_edit.js.coffee +59 -0
  14. data/app/assets/javascripts/cmtool/structure.js.coffee.erb +11 -9
  15. data/app/assets/javascripts/cmtool/yml_edit.js.coffee +21 -0
  16. data/{spec/dummy/tmp/cache/sass/6fd3e79c0fc7956a77d618829b24dd38fd27df09 → app/assets/stylesheets/cmtool/.sass-cache/b5d17fb5f008f2aeb0c48718fa7162f96b9e7cc3}/_jquery-ui.css.sassc +0 -0
  17. data/app/assets/stylesheets/cmtool/application.sass +8 -0
  18. data/app/assets/stylesheets/cmtool/components/_buttons.sass +12 -0
  19. data/app/assets/stylesheets/cmtool/components/_collapsible.sass +13 -0
  20. data/app/assets/stylesheets/cmtool/{directories.css.sass → components/_directories.sass} +0 -0
  21. data/app/assets/stylesheets/cmtool/components/_forms.sass +45 -0
  22. data/app/assets/stylesheets/cmtool/components/_modal.sass +6 -0
  23. data/app/assets/stylesheets/cmtool/{table.css.sass → components/_tables.sass} +1 -2
  24. data/app/assets/stylesheets/cmtool/{form_errors.css.sass → form_errors.sass} +0 -0
  25. data/app/assets/stylesheets/cmtool/foundation_and_overrides.scss +1447 -0
  26. data/app/assets/stylesheets/cmtool/{locale.css.sass → locale.sass} +0 -0
  27. data/app/assets/stylesheets/cmtool/structure.sass +31 -0
  28. data/app/assets/stylesheets/cmtool/{twittered.css.sass → twittered.sass} +0 -0
  29. data/app/assets/stylesheets/cmtool/{user_info.css.sass → user_info.sass} +0 -0
  30. data/app/controllers/cmtool/application_controller.rb +9 -3
  31. data/app/controllers/cmtool/contact_forms_controller.rb +10 -4
  32. data/app/controllers/cmtool/directories_controller.rb +6 -2
  33. data/app/controllers/cmtool/faqs_controller.rb +8 -2
  34. data/app/controllers/cmtool/images_controller.rb +8 -3
  35. data/app/controllers/cmtool/keywords_controller.rb +8 -2
  36. data/app/controllers/cmtool/newsletter_subscriptions_controller.rb +9 -3
  37. data/app/controllers/cmtool/pages_controller.rb +14 -3
  38. data/app/controllers/cmtool/sessions_controller.rb +1 -0
  39. data/app/controllers/cmtool/svg_files_controller.rb +91 -0
  40. data/app/controllers/cmtool/users_controller.rb +8 -6
  41. data/app/controllers/cmtool/yml_files_controller.rb +91 -0
  42. data/app/controllers/concerns/cmtool/controller_glue.rb +11 -0
  43. data/app/helpers/cmtool/application_helper.rb +25 -8
  44. data/app/models/cmtool/contact_form.rb +1 -0
  45. data/app/models/cmtool/directory.rb +4 -4
  46. data/app/models/cmtool/faq.rb +4 -4
  47. data/app/models/cmtool/image.rb +6 -5
  48. data/app/models/cmtool/keyword.rb +2 -2
  49. data/app/models/cmtool/newsletter_subscription.rb +5 -5
  50. data/app/models/cmtool/quote.rb +6 -6
  51. data/app/models/cmtool/yml_file.rb +16 -0
  52. data/app/models/page.rb +1 -0
  53. data/app/views/cmtool/application/_alerts.html.slim +16 -0
  54. data/app/views/cmtool/application/_error_messages.html.slim +6 -0
  55. data/app/views/cmtool/application/_links.html.slim +6 -6
  56. data/app/views/cmtool/application/_menu.html.slim +32 -0
  57. data/app/views/cmtool/contact_forms/{_form.html.haml → _form.html.slim} +0 -0
  58. data/app/views/cmtool/contact_forms/edit.html.slim +7 -0
  59. data/app/views/cmtool/contact_forms/index.html.slim +26 -0
  60. data/app/views/cmtool/contact_forms/{new.html.haml → new.html.slim} +2 -2
  61. data/app/views/cmtool/contact_forms/show.html.slim +21 -0
  62. data/app/views/cmtool/dashboard/index.html.slim +1 -0
  63. data/app/views/cmtool/directories/{_form.html.haml → _form.html.slim} +0 -0
  64. data/app/views/cmtool/directories/_image.html.slim +5 -0
  65. data/app/views/cmtool/directories/edit.html.slim +7 -0
  66. data/app/views/cmtool/directories/index.html.slim +20 -0
  67. data/app/views/cmtool/directories/{new.html.haml → new.html.slim} +2 -2
  68. data/app/views/cmtool/directories/show.html.slim +35 -0
  69. data/app/views/cmtool/faqs/{_form.html.haml → _form.html.slim} +0 -0
  70. data/app/views/cmtool/faqs/edit.html.slim +7 -0
  71. data/app/views/cmtool/faqs/index.html.slim +22 -0
  72. data/app/views/cmtool/faqs/{new.html.haml → new.html.slim} +2 -2
  73. data/app/views/cmtool/faqs/show.html.slim +13 -0
  74. data/app/views/cmtool/images/{_form.html.haml → _form.html.slim} +3 -3
  75. data/app/views/cmtool/images/edit.html.slim +7 -0
  76. data/app/views/cmtool/images/index.html.slim +30 -0
  77. data/app/views/cmtool/images/index.js.erb +8 -3
  78. data/app/views/cmtool/images/{new.html.haml → new.html.slim} +2 -2
  79. data/app/views/cmtool/images/show.html.slim +22 -0
  80. data/app/views/cmtool/keywords/_form.html.slim +7 -0
  81. data/app/views/cmtool/keywords/{_habtm.html.haml → _habtm.html.slim} +1 -1
  82. data/app/views/cmtool/keywords/edit.html.slim +7 -0
  83. data/app/views/cmtool/keywords/index.html.slim +20 -0
  84. data/app/views/cmtool/keywords/{new.html.haml → new.html.slim} +2 -2
  85. data/app/views/cmtool/keywords/show.html.slim +9 -0
  86. data/app/views/cmtool/news/{_form.html.haml → _form.html.slim} +5 -5
  87. data/app/views/cmtool/news/edit.html.slim +9 -0
  88. data/app/views/cmtool/news/index.html.slim +24 -0
  89. data/app/views/cmtool/news/{new.html.haml → new.html.slim} +2 -2
  90. data/app/views/cmtool/news/show.html.slim +28 -0
  91. data/app/views/cmtool/newsletter_subscriptions/{_form.html.haml → _form.html.slim} +0 -0
  92. data/app/views/cmtool/newsletter_subscriptions/edit.html.slim +7 -0
  93. data/app/views/cmtool/newsletter_subscriptions/index.html.slim +24 -0
  94. data/app/views/cmtool/newsletter_subscriptions/{new.html.haml → new.html.slim} +2 -2
  95. data/app/views/cmtool/newsletter_subscriptions/show.html.slim +15 -0
  96. data/app/views/cmtool/pages/_form.html.slim +56 -0
  97. data/app/views/cmtool/pages/_nested_pages.html.slim +10 -0
  98. data/app/views/cmtool/pages/edit.html.slim +9 -0
  99. data/app/views/cmtool/pages/index.html.slim +17 -0
  100. data/app/views/cmtool/pages/{new.html.haml → new.html.slim} +2 -2
  101. data/app/views/cmtool/pages/show.html.slim +39 -0
  102. data/app/views/cmtool/passwords/edit.html.slim +2 -2
  103. data/app/views/cmtool/quotes/{_form.html.haml → _form.html.slim} +3 -3
  104. data/app/views/cmtool/quotes/edit.html.slim +7 -0
  105. data/app/views/cmtool/quotes/index.html.slim +26 -0
  106. data/app/views/cmtool/quotes/{new.html.haml → new.html.slim} +2 -2
  107. data/app/views/cmtool/quotes/{show.html.haml → show.html.slim} +8 -8
  108. data/app/views/{devise → cmtool/sessions}/_devise_links.html.slim +0 -0
  109. data/app/views/cmtool/sessions/new.html.slim +1 -1
  110. data/app/views/cmtool/users/{_form.html.haml → _form.html.slim} +12 -6
  111. data/app/views/cmtool/users/edit.html.slim +7 -0
  112. data/app/views/cmtool/users/index.html.slim +20 -0
  113. data/app/views/cmtool/users/{new.html.haml → new.html.slim} +2 -2
  114. data/app/views/cmtool/users/show.html.slim +37 -0
  115. data/app/views/cmtool/yml_files/_form.html.slim +9 -0
  116. data/app/views/cmtool/yml_files/edit.html.slim +7 -0
  117. data/app/views/cmtool/yml_files/index.html.slim +20 -0
  118. data/app/views/cmtool/yml_files/new.html.slim +7 -0
  119. data/app/views/cmtool/yml_files/show.html.slim +9 -0
  120. data/app/views/layouts/cmtool/application.html.slim +19 -63
  121. data/app/views/pages/{home.html.haml → home.html.slim} +0 -0
  122. data/app/views/pages/{show.html.haml → show.html.slim} +0 -0
  123. data/cmtool.gemspec +30 -0
  124. data/config/initializers/model_human_plural.rb +1 -1
  125. data/config/locales/cmtool.en.yml +2 -0
  126. data/config/locales/cmtool.nl.yml +87 -0
  127. data/config/locales/devise.en.yml +48 -60
  128. data/config/routes.rb +4 -1
  129. data/lib/cmtool/engine.rb +37 -3
  130. data/lib/cmtool/includes/page.rb +28 -4
  131. data/lib/cmtool/includes/pages_controller.rb +28 -3
  132. data/lib/cmtool/includes/user.rb +2 -4
  133. data/lib/cmtool/menu.rb +55 -6
  134. data/lib/cmtool/version.rb +1 -1
  135. data/script/rails +8 -0
  136. data/spec/cmtool_menu/engine_link_spec.rb +24 -0
  137. data/spec/cmtool_menu_spec.rb +58 -4
  138. data/spec/controllers/contact_forms_controller_spec.rb +4 -36
  139. data/spec/controllers/faqs_controller_spec.rb +4 -35
  140. data/spec/controllers/newsletter_subscriptions_controller_spec.rb +10 -9
  141. data/spec/controllers/pages_controller_spec.rb +4 -4
  142. data/spec/dummy/app/assets/stylesheets/application.css +3 -0
  143. data/spec/dummy/app/controllers/application_controller.rb +10 -0
  144. data/spec/dummy/app/mailers/.gitkeep +0 -0
  145. data/spec/dummy/app/models/.gitkeep +0 -0
  146. data/spec/dummy/app/models/user.rb +1 -0
  147. data/spec/dummy/config/application.rb +5 -7
  148. data/spec/dummy/config/environments/development.rb +1 -1
  149. data/spec/dummy/config/environments/production.rb +1 -1
  150. data/spec/dummy/config/environments/test.rb +1 -1
  151. data/{config → spec/dummy/config}/initializers/devise.rb +79 -45
  152. data/spec/dummy/config/routes.rb +6 -2
  153. data/spec/dummy/config/secrets.yml +4 -0
  154. data/spec/dummy/lib/assets/.gitkeep +0 -0
  155. data/spec/dummy/log/.gitkeep +0 -0
  156. data/spec/factories/page_factory.rb +6 -0
  157. data/spec/features/cmtool/pages/listing_spec.rb +40 -0
  158. data/spec/features/cmtool/pages/preview_spec.rb +21 -0
  159. data/spec/features/cmtool/sitemap_spec.rb +12 -0
  160. data/spec/includes/pages_controller_include_spec.rb +11 -0
  161. data/spec/models/cmtool/yml_file_spec.rb +28 -0
  162. data/spec/models/page_spec.rb +21 -0
  163. data/spec/spec_helper.rb +8 -16
  164. data/spec/support/feature_helpers.rb +21 -0
  165. data/spec/support/js_helpers.rb +66 -0
  166. data/vendor/assets/devise/.sass-cache/7ede1f82605657b07dc1ea1aa5b2ecca40d4b017/devise.css.sassc +0 -0
  167. metadata +231 -833
  168. data/README.rdoc +0 -100
  169. data/app/assets/javascripts/cmtool/application.js +0 -18
  170. data/app/assets/stylesheets/cmtool/application.css +0 -14
  171. data/app/assets/stylesheets/cmtool/bootstrap_and_overrides.css.less +0 -32
  172. data/app/assets/stylesheets/cmtool/menu.css.sass +0 -26
  173. data/app/assets/stylesheets/cmtool/sessions/_jquery-ui.css.sass +0 -1433
  174. data/app/assets/stylesheets/cmtool/sessions/application.css +0 -7
  175. data/app/assets/stylesheets/cmtool/sessions/structure.css.sass +0 -73
  176. data/app/assets/stylesheets/cmtool/structure.css.sass +0 -55
  177. data/app/views/cmtool/application/_alerts.html.haml +0 -20
  178. data/app/views/cmtool/application/_error_messages.html.haml +0 -6
  179. data/app/views/cmtool/application/_user_info.html.haml +0 -7
  180. data/app/views/cmtool/contact_forms/edit.html.haml +0 -7
  181. data/app/views/cmtool/contact_forms/index.html.haml +0 -26
  182. data/app/views/cmtool/contact_forms/show.html.haml +0 -21
  183. data/app/views/cmtool/dashboard/index.html.haml +0 -1
  184. data/app/views/cmtool/directories/_image.html.haml +0 -5
  185. data/app/views/cmtool/directories/edit.html.haml +0 -7
  186. data/app/views/cmtool/directories/index.html.haml +0 -20
  187. data/app/views/cmtool/directories/show.html.haml +0 -36
  188. data/app/views/cmtool/faqs/edit.html.haml +0 -7
  189. data/app/views/cmtool/faqs/index.html.haml +0 -22
  190. data/app/views/cmtool/faqs/show.html.haml +0 -13
  191. data/app/views/cmtool/images/edit.html.haml +0 -7
  192. data/app/views/cmtool/images/index.html.haml +0 -30
  193. data/app/views/cmtool/images/show.html.haml +0 -22
  194. data/app/views/cmtool/keywords/_form.html.haml +0 -8
  195. data/app/views/cmtool/keywords/edit.html.haml +0 -7
  196. data/app/views/cmtool/keywords/index.html.haml +0 -20
  197. data/app/views/cmtool/keywords/show.html.haml +0 -9
  198. data/app/views/cmtool/news/edit.html.haml +0 -9
  199. data/app/views/cmtool/news/index.html.haml +0 -24
  200. data/app/views/cmtool/news/show.html.haml +0 -28
  201. data/app/views/cmtool/newsletter_subscriptions/edit.html.haml +0 -7
  202. data/app/views/cmtool/newsletter_subscriptions/index.html.haml +0 -24
  203. data/app/views/cmtool/newsletter_subscriptions/show.html.haml +0 -15
  204. data/app/views/cmtool/pages/_form.html.haml +0 -48
  205. data/app/views/cmtool/pages/_nested_pages.html.haml +0 -10
  206. data/app/views/cmtool/pages/edit.html.haml +0 -9
  207. data/app/views/cmtool/pages/index.html.haml +0 -21
  208. data/app/views/cmtool/pages/show.html.haml +0 -39
  209. data/app/views/cmtool/quotes/edit.html.haml +0 -7
  210. data/app/views/cmtool/quotes/index.html.haml +0 -26
  211. data/app/views/cmtool/users/edit.html.haml +0 -8
  212. data/app/views/cmtool/users/index.html.haml +0 -20
  213. data/app/views/cmtool/users/show.html.haml +0 -38
  214. data/app/views/devise/confirmations/new.html.erb +0 -12
  215. data/app/views/devise/mailer/confirmation_instructions.html.erb +0 -5
  216. data/app/views/devise/mailer/reset_password_instructions.html.erb +0 -8
  217. data/app/views/devise/mailer/unlock_instructions.html.erb +0 -7
  218. data/app/views/devise/passwords/edit.html.slim +0 -14
  219. data/app/views/devise/passwords/new.html.slim +0 -10
  220. data/app/views/devise/registrations/edit.html.erb +0 -25
  221. data/app/views/devise/registrations/new.html.slim +0 -16
  222. data/app/views/devise/sessions/new.html.slim +0 -19
  223. data/app/views/devise/unlocks/new.html.erb +0 -12
  224. data/config/initializers/cmtool_menu.rb +0 -27
  225. data/spec/dummy/log/development.log +0 -100840
  226. data/spec/dummy/log/test.log +0 -3337
  227. data/spec/dummy/public/system/cmtool/news/images/c06/64b/3b7/medium/cover.jpg +0 -0
  228. data/spec/dummy/public/system/cmtool/news/images/c06/64b/3b7/original/cover.jpg +0 -0
  229. data/spec/dummy/public/system/cmtool/news/images/c06/64b/3b7/thumb/cover.jpg +0 -0
  230. data/spec/dummy/public/system/files/c0664b3b7e6cf34a209545255b6f4776/medium.jpg +0 -0
  231. data/spec/dummy/public/system/files/c0664b3b7e6cf34a209545255b6f4776/original.jpg +0 -0
  232. data/spec/dummy/public/system/files/c0664b3b7e6cf34a209545255b6f4776/page.jpg +0 -0
  233. data/spec/dummy/public/system/files/c0664b3b7e6cf34a209545255b6f4776/thumb.jpg +0 -0
  234. data/spec/dummy/public/system/files/c0664b3b7e6cf34a209545255b6f7288/medium.jpg +0 -0
  235. data/spec/dummy/public/system/files/c0664b3b7e6cf34a209545255b6f7288/original.jpg +0 -0
  236. data/spec/dummy/public/system/files/c0664b3b7e6cf34a209545255b6f7288/page.jpg +0 -0
  237. data/spec/dummy/public/system/files/c0664b3b7e6cf34a209545255b6f7288/thumb.jpg +0 -0
  238. data/spec/dummy/public/system/images/6bd15f9f57c9a09835fe2bf15715f9dd/medium/atool-filter-button.png +0 -0
  239. data/spec/dummy/public/system/images/6bd15f9f57c9a09835fe2bf15715f9dd/original/atool-filter-button.png +0 -0
  240. data/spec/dummy/public/system/images/6bd15f9f57c9a09835fe2bf15715f9dd/thumb/atool-filter-button.png +0 -0
  241. data/spec/dummy/public/system/images/6bd15f9f57c9a09835fe2bf157940d56/medium/Screen_Shot_2011-11-05_at_9.51.09_AM.png +0 -0
  242. data/spec/dummy/public/system/images/6bd15f9f57c9a09835fe2bf157940d56/original/Screen_Shot_2011-11-05_at_9.51.09_AM.png +0 -0
  243. data/spec/dummy/public/system/images/6bd15f9f57c9a09835fe2bf157940d56/thumb/Screen_Shot_2011-11-05_at_9.51.09_AM.png +0 -0
  244. data/spec/dummy/routes.txt +0 -104
  245. data/spec/dummy/tmp/cache/assets/C18/850/sprockets%2F752d32380d03669019b62ec5f0028436 +0 -0
  246. data/spec/dummy/tmp/cache/assets/C19/DE0/sprockets%2F216b2f20128081555197cf82f0753b64 +0 -0
  247. data/spec/dummy/tmp/cache/assets/C26/7E0/sprockets%2F235237c7f38507872090328ecda15964 +0 -0
  248. data/spec/dummy/tmp/cache/assets/C36/760/sprockets%2Fd46689607807ff743808b38c330b6485 +0 -0
  249. data/spec/dummy/tmp/cache/assets/C41/E50/sprockets%2F7b62328b3304e6239117c90a0454cc54 +0 -0
  250. data/spec/dummy/tmp/cache/assets/C4B/DD0/sprockets%2F427bdb632b14368be8280395174c5315 +0 -0
  251. data/spec/dummy/tmp/cache/assets/C4C/2E0/sprockets%2F712383c70fac05461cd06763867a7442 +0 -0
  252. data/spec/dummy/tmp/cache/assets/C61/E90/sprockets%2F44f491ccec961d1894853a7617369306 +0 -0
  253. data/spec/dummy/tmp/cache/assets/C70/C50/sprockets%2F06d9010b38d4343243f36e2456d116dc +0 -0
  254. data/spec/dummy/tmp/cache/assets/C73/1F0/sprockets%2F5100d441c272ff7b322075916156e6af +0 -0
  255. data/spec/dummy/tmp/cache/assets/C74/5A0/sprockets%2F5401e46acd059d390117a88f4273b502 +0 -0
  256. data/spec/dummy/tmp/cache/assets/C75/790/sprockets%2Fc7c2173bd0657d520a0626038c5d3928 +0 -0
  257. data/spec/dummy/tmp/cache/assets/C7A/C60/sprockets%2Fc4f5f761f754c02703680242a56ad903 +0 -0
  258. data/spec/dummy/tmp/cache/assets/C81/190/sprockets%2F7227190f4a040f888428a2eb96b187c0 +0 -0
  259. data/spec/dummy/tmp/cache/assets/C82/C20/sprockets%2F3d20075675436d0b3d812e9694af4d19 +0 -0
  260. data/spec/dummy/tmp/cache/assets/C85/400/sprockets%2F31c17bd5fb19a86d67800f6073506983 +0 -0
  261. data/spec/dummy/tmp/cache/assets/C8C/090/sprockets%2F843101bc779edc85928803e7a4b60874 +0 -0
  262. data/spec/dummy/tmp/cache/assets/C91/C20/sprockets%2Fa3953ecd83959146795fe757007325ba +0 -0
  263. data/spec/dummy/tmp/cache/assets/C96/FE0/sprockets%2F703143041f12431a07dd21ca81ed982f +0 -0
  264. data/spec/dummy/tmp/cache/assets/C9F/780/sprockets%2Fc52453e3ee6629e66d24c4a0610011a7 +0 -0
  265. data/spec/dummy/tmp/cache/assets/CA2/0B0/sprockets%2F99155226b1fa65ab47a5d0232704b9d1 +0 -0
  266. data/spec/dummy/tmp/cache/assets/CA8/2B0/sprockets%2Ffac601814422a2c545c868496625ebb0 +0 -0
  267. data/spec/dummy/tmp/cache/assets/CA9/720/sprockets%2F7319b892fa23cba1310439c59670d53c +0 -0
  268. data/spec/dummy/tmp/cache/assets/CA9/930/sprockets%2Ff4bc192521154063e2f1e7709e907bb4 +0 -0
  269. data/spec/dummy/tmp/cache/assets/CAE/ED0/sprockets%2F30c2c36619e184b56b991524b238ea8b +0 -0
  270. data/spec/dummy/tmp/cache/assets/CB1/410/sprockets%2F49724ef608982ecd3669f376948e589e +0 -0
  271. data/spec/dummy/tmp/cache/assets/CBF/640/sprockets%2Fe26d7237754cae8ce533ee6669570541 +0 -0
  272. data/spec/dummy/tmp/cache/assets/CC6/920/sprockets%2Fe650083249a19e993792f64d4d9ede51 +0 -0
  273. data/spec/dummy/tmp/cache/assets/CD1/5C0/sprockets%2F345b7e9e791da31a1ee2104c1d207906 +0 -0
  274. data/spec/dummy/tmp/cache/assets/CD1/AF0/sprockets%2Fd21dfa46fc728612ab1650c067d95221 +0 -0
  275. data/spec/dummy/tmp/cache/assets/CD2/CC0/sprockets%2F48545086cbb2d1006c0f6565bf2c1c46 +0 -0
  276. data/spec/dummy/tmp/cache/assets/CD6/E50/sprockets%2Ff65d7119ec77ea58798898b6b188165b +0 -0
  277. data/spec/dummy/tmp/cache/assets/CD8/310/sprockets%2F4d8f023f4b4d3004a45405592a67bf8e +0 -0
  278. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  279. data/spec/dummy/tmp/cache/assets/CDA/D50/sprockets%2F57af0c226e5d5f92b58c6b1892b04420 +0 -0
  280. data/spec/dummy/tmp/cache/assets/CDB/140/sprockets%2F7cd220251d480568d4639e70ea59bca2 +0 -0
  281. data/spec/dummy/tmp/cache/assets/CDB/DD0/sprockets%2F0116ad0c816ef52720f72f9636e8fb12 +0 -0
  282. data/spec/dummy/tmp/cache/assets/CE1/B80/sprockets%2F869e48b3940bc74424cd9d80cd72210b +0 -0
  283. data/spec/dummy/tmp/cache/assets/CE2/390/sprockets%2F131572427c03768bd11de289f9ba6cf6 +0 -0
  284. data/spec/dummy/tmp/cache/assets/CE2/D50/sprockets%2F3037550bf61b57f925adc9e86352b6b4 +0 -0
  285. data/spec/dummy/tmp/cache/assets/CE8/0C0/sprockets%2F229b78558cf45ce8701d3237f86ca50b +0 -0
  286. data/spec/dummy/tmp/cache/assets/CE9/5A0/sprockets%2F89152d154331d923e773f6f0e8bfd3a8 +0 -0
  287. data/spec/dummy/tmp/cache/assets/CE9/670/sprockets%2F648f281b64e6939680ac90ddb40b6a48 +0 -0
  288. data/spec/dummy/tmp/cache/assets/CEB/EB0/sprockets%2F549bc3b7a508bd570c2276796fbf0893 +0 -0
  289. data/spec/dummy/tmp/cache/assets/CEC/C70/sprockets%2F89bb77a512f7073fd1979daa90762d07 +0 -0
  290. data/spec/dummy/tmp/cache/assets/CED/900/sprockets%2F8474c76b55a41efe4217c291be4596f6 +0 -0
  291. data/spec/dummy/tmp/cache/assets/CEE/FA0/sprockets%2F72a8f9d3a67b73f0e196a505f3794b38 +0 -0
  292. data/spec/dummy/tmp/cache/assets/CF0/D40/sprockets%2Fd0785e7c6720e90418bfcb8d3c249984 +0 -0
  293. data/spec/dummy/tmp/cache/assets/CF2/340/sprockets%2F7570cc0f76d7d92949ea5f20ca597734 +0 -0
  294. data/spec/dummy/tmp/cache/assets/CF2/940/sprockets%2F6f2e083ec93635c64f5a7898d21db196 +0 -0
  295. data/spec/dummy/tmp/cache/assets/CF5/4E0/sprockets%2F73784f916067754fe6b34b3c878beb4c +0 -0
  296. data/spec/dummy/tmp/cache/assets/CF5/790/sprockets%2F3716eabe454c014ec74c5122335ab2c3 +0 -0
  297. data/spec/dummy/tmp/cache/assets/CF6/2A0/sprockets%2F665f20d37e2ad71fb43a4704600c0d0c +0 -0
  298. data/spec/dummy/tmp/cache/assets/CFA/DC0/sprockets%2F3e815db3628b44efa3dfa0b015140617 +0 -0
  299. data/spec/dummy/tmp/cache/assets/CFB/880/sprockets%2Fd79d58771382c1ecdd4e76688269da26 +0 -0
  300. data/spec/dummy/tmp/cache/assets/CFB/E40/sprockets%2F14004524c4a7676faf1bb330bd81de54 +0 -0
  301. data/spec/dummy/tmp/cache/assets/CFD/BE0/sprockets%2F543ecb888e5d14912ba121abe00067b6 +0 -0
  302. data/spec/dummy/tmp/cache/assets/CFD/C00/sprockets%2F1b69d90d158c0b5670a033e62aad243f +0 -0
  303. data/spec/dummy/tmp/cache/assets/CFE/000/sprockets%2Fff00b174d00b5649b16a01aa8738d4b9 +0 -0
  304. data/spec/dummy/tmp/cache/assets/D03/BB0/sprockets%2F84b90473d354dcd12a22142bf8af664a +0 -0
  305. data/spec/dummy/tmp/cache/assets/D04/C20/sprockets%2Fd3470cdf028a733b1e4447ea1de52609 +0 -0
  306. data/spec/dummy/tmp/cache/assets/D09/5E0/sprockets%2Fba3902159cf74d9227d6e84dc00b2a37 +0 -0
  307. data/spec/dummy/tmp/cache/assets/D0B/E90/sprockets%2Fadd1f8d5205e35b242c42519855be6e4 +0 -0
  308. data/spec/dummy/tmp/cache/assets/D0D/4A0/sprockets%2Fee2361e99915650313f9aa0a52d0f7fc +0 -0
  309. data/spec/dummy/tmp/cache/assets/D0D/F80/sprockets%2F40692cf534a61cff919b63894c4b10ab +0 -0
  310. data/spec/dummy/tmp/cache/assets/D0E/F30/sprockets%2F934463eeac1886c1dd0983c050a89c2a +0 -0
  311. data/spec/dummy/tmp/cache/assets/D0F/4D0/sprockets%2F95a2330cd69437564cf9b0de801f0dc6 +0 -0
  312. data/spec/dummy/tmp/cache/assets/D10/5F0/sprockets%2Fd32e1ef38940222d6cb93fd85af06364 +0 -0
  313. data/spec/dummy/tmp/cache/assets/D10/A20/sprockets%2F5ed250162d47476dc0a6fb39928ab29c +0 -0
  314. data/spec/dummy/tmp/cache/assets/D13/250/sprockets%2F0a446508af63f31d5a3b36f834f86cf7 +0 -0
  315. data/spec/dummy/tmp/cache/assets/D14/380/sprockets%2Fc4d6301c85657a68d31f933ae246be8d +0 -0
  316. data/spec/dummy/tmp/cache/assets/D15/3A0/sprockets%2Fff88e74706b1362a8a56b0d4cb6e3709 +0 -0
  317. data/spec/dummy/tmp/cache/assets/D17/5B0/sprockets%2Fdf083bb4363d52e163087a9c9c49ae94 +0 -0
  318. data/spec/dummy/tmp/cache/assets/D19/430/sprockets%2F747be7ecbdf9965a7140bb361467813d +0 -0
  319. data/spec/dummy/tmp/cache/assets/D1A/790/sprockets%2F4bb639c18639cd5455fd78adb722e345 +0 -0
  320. data/spec/dummy/tmp/cache/assets/D1A/B70/sprockets%2Fa70be6054ed638f2443584c9fe2e79c1 +0 -0
  321. data/spec/dummy/tmp/cache/assets/D1C/440/sprockets%2F8e4e50647becc1359408c980ddb9c780 +0 -0
  322. data/spec/dummy/tmp/cache/assets/D1E/480/sprockets%2F355e66dff10d6484a5b87d72d9f480a5 +0 -0
  323. data/spec/dummy/tmp/cache/assets/D1E/6A0/sprockets%2Fa83b717905767a831cbecf87644fdb46 +0 -0
  324. data/spec/dummy/tmp/cache/assets/D1F/480/sprockets%2F05ec291ba6b0d0b30851266e15bdb06a +0 -0
  325. data/spec/dummy/tmp/cache/assets/D23/D80/sprockets%2F5587d784715ef5c1f18d812e1ec55fb8 +0 -0
  326. data/spec/dummy/tmp/cache/assets/D24/F50/sprockets%2Fb2bb9f6f9373f27c09ae6ef843491394 +0 -0
  327. data/spec/dummy/tmp/cache/assets/D25/670/sprockets%2F9f464863a944690acd0f85825fe92ccd +0 -0
  328. data/spec/dummy/tmp/cache/assets/D25/A80/sprockets%2F8460ae4fe401232b011edc5ee83a32d2 +0 -0
  329. data/spec/dummy/tmp/cache/assets/D26/230/sprockets%2Ffc0e2968365849a4f4d5fdc2a148e859 +0 -0
  330. data/spec/dummy/tmp/cache/assets/D26/DF0/sprockets%2F15bbc8d6a21383a1be0d3274c70bb194 +0 -0
  331. data/spec/dummy/tmp/cache/assets/D27/3B0/sprockets%2F8278cfc294587ff1d02fd4569f58c40d +0 -0
  332. data/spec/dummy/tmp/cache/assets/D2C/710/sprockets%2F9899603e39b6bc76d9cb2dc8415fd459 +0 -0
  333. data/spec/dummy/tmp/cache/assets/D31/2D0/sprockets%2Ffedb3fb4f03a024f63662835af420a64 +0 -0
  334. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  335. data/spec/dummy/tmp/cache/assets/D33/D90/sprockets%2F796916aa58a6b60c8cb81af11e130e2a +0 -0
  336. data/spec/dummy/tmp/cache/assets/D37/900/sprockets%2Fd2ff7a1a3700c64bb77b208f817d0f37 +0 -0
  337. data/spec/dummy/tmp/cache/assets/D39/920/sprockets%2Fb9de62ccbda6e374f22650481468b1c1 +0 -0
  338. data/spec/dummy/tmp/cache/assets/D3B/BF0/sprockets%2Fd11417e5a5b02ea3c09512969ce87efb +0 -0
  339. data/spec/dummy/tmp/cache/assets/D3C/630/sprockets%2F42df12297ce8daa92f405b139863a2ce +0 -0
  340. data/spec/dummy/tmp/cache/assets/D3E/080/sprockets%2F128be3c02a98f158af2d3617615fbbe9 +0 -0
  341. data/spec/dummy/tmp/cache/assets/D3E/270/sprockets%2Fa7a7d118aad8f138da7e93522d92723c +0 -0
  342. data/spec/dummy/tmp/cache/assets/D3E/E10/sprockets%2Fa05a146ba97496f412fdf55413fec09d +0 -0
  343. data/spec/dummy/tmp/cache/assets/D40/1B0/sprockets%2Fa773c84c1988aa1cb19fefb8244091d1 +0 -0
  344. data/spec/dummy/tmp/cache/assets/D40/360/sprockets%2F8f3725fed33c9baab8831765af009c14 +0 -0
  345. data/spec/dummy/tmp/cache/assets/D41/9E0/sprockets%2F63671c98d7549aacabacae65631e0269 +0 -0
  346. data/spec/dummy/tmp/cache/assets/D42/830/sprockets%2F8ba29d0cf03f3592a8518fff75ae1371 +0 -0
  347. data/spec/dummy/tmp/cache/assets/D45/FB0/sprockets%2F7fbc31df2ebf823a407a6771d6c62868 +0 -0
  348. data/spec/dummy/tmp/cache/assets/D47/140/sprockets%2Fb9bb798df905ddf26d2999c2100cb631 +0 -0
  349. data/spec/dummy/tmp/cache/assets/D48/EF0/sprockets%2F3668d9cf118adf5a00183de47c295f8c +0 -0
  350. data/spec/dummy/tmp/cache/assets/D4A/710/sprockets%2F2834ae3958218fe37a48e94f4aab5ef1 +0 -0
  351. data/spec/dummy/tmp/cache/assets/D4C/580/sprockets%2F1fd365b8f948c64cf29f5173c1ca099a +0 -0
  352. data/spec/dummy/tmp/cache/assets/D4C/D00/sprockets%2Fc38aec60e761866329b9abea688a55f3 +0 -0
  353. data/spec/dummy/tmp/cache/assets/D4C/D20/sprockets%2Fdc06d6f68c94eb9483b25ed35ba88405 +0 -0
  354. data/spec/dummy/tmp/cache/assets/D4D/EF0/sprockets%2F74a6c210074a5ae04abdd40d5e11b0d9 +0 -0
  355. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  356. data/spec/dummy/tmp/cache/assets/D4E/7F0/sprockets%2F3e9b265d67d44427d7c8a4becce52389 +0 -0
  357. data/spec/dummy/tmp/cache/assets/D51/050/sprockets%2F9a449ad847fa6e2b6f6890c80be6c266 +0 -0
  358. data/spec/dummy/tmp/cache/assets/D52/FD0/sprockets%2F8b037fa4b8862d24379ef2c6c94ced68 +0 -0
  359. data/spec/dummy/tmp/cache/assets/D53/530/sprockets%2F7f57af856dee92e95556a8da238a045c +0 -0
  360. data/spec/dummy/tmp/cache/assets/D55/C30/sprockets%2F198b9f7b78a6510a4f7ed5f39bf85e50 +0 -0
  361. data/spec/dummy/tmp/cache/assets/D57/9A0/sprockets%2F0643407599f96ec7dd7b229c74b6fecf +0 -0
  362. data/spec/dummy/tmp/cache/assets/D5A/0D0/sprockets%2F46130d07df2ae14cf4a950d0fc5a25f2 +0 -0
  363. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  364. data/spec/dummy/tmp/cache/assets/D5F/3A0/sprockets%2F8cb0fb1e95311cab5b10fb3b84d29960 +0 -0
  365. data/spec/dummy/tmp/cache/assets/D63/3D0/sprockets%2F3314d0ec51a3ebed254d56ba16fb4958 +0 -0
  366. data/spec/dummy/tmp/cache/assets/D65/210/sprockets%2Fc67ddf5445c15d14f081f0e08a326bdc +0 -0
  367. data/spec/dummy/tmp/cache/assets/D65/3D0/sprockets%2F4f5dec87e2a1631b5f29bd3600ea0c66 +0 -0
  368. data/spec/dummy/tmp/cache/assets/D65/E80/sprockets%2F32397abcb74bbf4069ee7203d4a5f0e2 +0 -0
  369. data/spec/dummy/tmp/cache/assets/D66/B20/sprockets%2Fe08942bdb8d5bacc5137a38fab671513 +0 -0
  370. data/spec/dummy/tmp/cache/assets/D66/D80/sprockets%2Fc28404df58839bdcf4d1ae01a16f4c51 +0 -0
  371. data/spec/dummy/tmp/cache/assets/D68/180/sprockets%2Fec4f867065cdf642e0703af20ace542e +0 -0
  372. data/spec/dummy/tmp/cache/assets/D69/290/sprockets%2F8e8e322f42dc52123fe17ea35c62a9cc +0 -0
  373. data/spec/dummy/tmp/cache/assets/D69/4F0/sprockets%2F57a67e1e209aaa2ba364e4f60c6836cf +0 -0
  374. data/spec/dummy/tmp/cache/assets/D69/870/sprockets%2Ff5f84d52b488a81fe1fe38f9c71f9989 +0 -0
  375. data/spec/dummy/tmp/cache/assets/D6B/AF0/sprockets%2F34fe551257ca78c066fbbc80b4d78aa2 +0 -0
  376. data/spec/dummy/tmp/cache/assets/D6C/650/sprockets%2F1e5e21b1d943db98c0d7deaf3c396720 +0 -0
  377. data/spec/dummy/tmp/cache/assets/D6C/CA0/sprockets%2F42ca78137cfdd34f74a022266f9ebac6 +0 -0
  378. data/spec/dummy/tmp/cache/assets/D6D/7A0/sprockets%2F66dff56001b3bd1d86c515ce4470cf9d +0 -0
  379. data/spec/dummy/tmp/cache/assets/D6F/0B0/sprockets%2F26b974b1e770125bf784ef7a04bfb8ab +0 -0
  380. data/spec/dummy/tmp/cache/assets/D6F/980/sprockets%2Faefbbc72259b038b8b49bb517ff07157 +0 -0
  381. data/spec/dummy/tmp/cache/assets/D70/3F0/sprockets%2Fd714afb443c399a3e42d4a476bc37f9a +0 -0
  382. data/spec/dummy/tmp/cache/assets/D71/B80/sprockets%2F769efcab8adecc627d33d7127204d518 +0 -0
  383. data/spec/dummy/tmp/cache/assets/D73/C90/sprockets%2Fc3c832ab2e4c0070865e53ed6e6f9be9 +0 -0
  384. data/spec/dummy/tmp/cache/assets/D77/D10/sprockets%2Fb3ac5976a7b43f36f55832ee7ae63cb5 +0 -0
  385. data/spec/dummy/tmp/cache/assets/D78/240/sprockets%2Fe3ae0c0c6fe8933c9c8cd2b69a025887 +0 -0
  386. data/spec/dummy/tmp/cache/assets/D7A/3D0/sprockets%2Fa9c8b7933d9fe1407d73ea2e94507dad +0 -0
  387. data/spec/dummy/tmp/cache/assets/D7C/150/sprockets%2Fb5d7250647add8228d98c95dd24dcef3 +0 -0
  388. data/spec/dummy/tmp/cache/assets/D82/C80/sprockets%2F77ae8924b92737f2be12ff5ee96d6d0c +0 -0
  389. data/spec/dummy/tmp/cache/assets/D83/5F0/sprockets%2Fc14ed4b5437e008b0ddac22a5bbc8324 +0 -0
  390. data/spec/dummy/tmp/cache/assets/D88/550/sprockets%2F8d7310cafdf89c5d83a8777fb34f819d +0 -0
  391. data/spec/dummy/tmp/cache/assets/D8C/250/sprockets%2F50101e61fa2b55a3dbff72aef5346bc6 +0 -0
  392. data/spec/dummy/tmp/cache/assets/D92/6D0/sprockets%2F461afccadb5d704c144f688f104bf41c +0 -0
  393. data/spec/dummy/tmp/cache/assets/D92/A50/sprockets%2F42aa858eec2ada4440aae06cfb983831 +0 -0
  394. data/spec/dummy/tmp/cache/assets/D92/E00/sprockets%2Ffc5593af5c5e6ab0547803ba58dcba00 +0 -0
  395. data/spec/dummy/tmp/cache/assets/D94/530/sprockets%2F81cb86e3c68a720cd40e25c6c740dbcb +0 -0
  396. data/spec/dummy/tmp/cache/assets/D9A/520/sprockets%2F6c94ab38bdd617fb89226d2a6ca8a02c +0 -0
  397. data/spec/dummy/tmp/cache/assets/D9B/520/sprockets%2Fc5c0a988aa2c7ad84fa184678ab2c08b +0 -0
  398. data/spec/dummy/tmp/cache/assets/D9C/3B0/sprockets%2Ff1b89fdbd44840f1bf4e14d1c5ed5181 +0 -0
  399. data/spec/dummy/tmp/cache/assets/D9E/690/sprockets%2F0bf2c3caae57689b6920d93ecc351f4d +0 -0
  400. data/spec/dummy/tmp/cache/assets/DA5/600/sprockets%2Fe29c610bc668dccae7836162cf7e7b5b +0 -0
  401. data/spec/dummy/tmp/cache/assets/DA8/DF0/sprockets%2F59a7f928b3c3cf52a22bb9fcb9e5674a +0 -0
  402. data/spec/dummy/tmp/cache/assets/DAC/B40/sprockets%2Fc12150ac5ae4952c510b0e31b3fecdcc +0 -0
  403. data/spec/dummy/tmp/cache/assets/DAE/690/sprockets%2Fd79029d350cde8541ac9fc1c8f6acf89 +0 -0
  404. data/spec/dummy/tmp/cache/assets/DB6/DF0/sprockets%2Fe34b300ce8abb53b009d12dfb51f9a4d +0 -0
  405. data/spec/dummy/tmp/cache/assets/DB7/490/sprockets%2F9ba7b4d86dd05f20204106adcb1a6efa +0 -0
  406. data/spec/dummy/tmp/cache/assets/DB7/D00/sprockets%2Fadec63fc7a127311a64dc2a6c21fbc63 +0 -0
  407. data/spec/dummy/tmp/cache/assets/DB8/190/sprockets%2F3495e9974966def99ef4c1b24cb0ccde +0 -0
  408. data/spec/dummy/tmp/cache/assets/DBA/F50/sprockets%2Fcf00c2bb1b1b42bead85d93c9217f1c7 +0 -0
  409. data/spec/dummy/tmp/cache/assets/DC5/540/sprockets%2F7c4c1524fb49a0bf7e1caac934e55bc5 +0 -0
  410. data/spec/dummy/tmp/cache/assets/DD0/790/sprockets%2Fe18e2fad4bc8d5a4e3f5828dc5256a1e +0 -0
  411. data/spec/dummy/tmp/cache/assets/DD3/710/sprockets%2F299f2e9a525bdda212a76e9cc36b6ded +0 -0
  412. data/spec/dummy/tmp/cache/assets/DD4/230/sprockets%2Ffee908a38ae9da4838cba416a6dd067c +0 -0
  413. data/spec/dummy/tmp/cache/assets/DD4/8B0/sprockets%2F7dc1d1b4c3efe7f5178465c5daa8ad48 +0 -0
  414. data/spec/dummy/tmp/cache/assets/DD9/1B0/sprockets%2F69db2b8a7cd8f680ebf16c57239bda4e +0 -0
  415. data/spec/dummy/tmp/cache/assets/DD9/B90/sprockets%2Fb2f5c6d0fd648b718ca0fc7df9d6682b +0 -0
  416. data/spec/dummy/tmp/cache/assets/DD9/CF0/sprockets%2Fecef5c1af2a28879a42b08e5a91f97ed +0 -0
  417. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  418. data/spec/dummy/tmp/cache/assets/DE1/350/sprockets%2F5e15c91cdfa6a8b79ede69cd9711d56d +0 -0
  419. data/spec/dummy/tmp/cache/assets/DEC/7F0/sprockets%2F5aabd14fbecd60293bf48f731ae0f40a +0 -0
  420. data/spec/dummy/tmp/cache/assets/DEE/540/sprockets%2Fff84a81ec877bee84c8cad57c3b9389f +0 -0
  421. data/spec/dummy/tmp/cache/assets/DF3/E20/sprockets%2F3ca4bc71ff37da7b5aba7c00fbd19855 +0 -0
  422. data/spec/dummy/tmp/cache/assets/DF4/300/sprockets%2Fb02f8aacfd025f240acc7e6390c89bed +0 -0
  423. data/spec/dummy/tmp/cache/assets/DF6/E70/sprockets%2F06e8dade364dcf5d42be314ed43a2ae8 +0 -0
  424. data/spec/dummy/tmp/cache/assets/DF7/DB0/sprockets%2F6b62cfc2a9b188a04acb3cff9f1d7b33 +0 -0
  425. data/spec/dummy/tmp/cache/assets/DF8/240/sprockets%2F5072bd83ee1a24eebb458ca76ebdd42f +0 -0
  426. data/spec/dummy/tmp/cache/assets/DFB/EF0/sprockets%2F7879b1d53bec53274abbbbaffd4c90e3 +0 -0
  427. data/spec/dummy/tmp/cache/assets/DFC/2C0/sprockets%2F0e9bb829af3cf230d92ac77a8c6dca3e +0 -0
  428. data/spec/dummy/tmp/cache/assets/DFD/B00/sprockets%2Fcd3e2faf4b47abd6fc68bc6b7214845b +0 -0
  429. data/spec/dummy/tmp/cache/assets/E03/280/sprockets%2F782ad2536ab1dd9e7fc49af61bf8c3ea +0 -0
  430. data/spec/dummy/tmp/cache/assets/E03/470/sprockets%2Fc9b1ea91af7b8e40e9bd3d82a7094dfc +0 -0
  431. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  432. data/spec/dummy/tmp/cache/assets/E07/CB0/sprockets%2F88c7ab6fa52aaf46d8fba778e4a813af +0 -0
  433. data/spec/dummy/tmp/cache/assets/E1B/600/sprockets%2F708dfcc2bdca257aaa5ba778b42b33bc +0 -0
  434. data/spec/dummy/tmp/cache/assets/E1F/0B0/sprockets%2Fda0fe5bb0eeac4e1d4f42a3c861ca479 +0 -0
  435. data/spec/dummy/tmp/cache/assets/E25/590/sprockets%2F2fb5aaa408da4f4dfd727f15cf076cda +0 -0
  436. data/spec/dummy/tmp/cache/assets/E25/BC0/sprockets%2Fecdbc56d8fee7da4f1e21f29513b13aa +0 -0
  437. data/spec/dummy/tmp/cache/assets/E29/690/sprockets%2F90e22b0f0d4a91ea4bce6fd4d4ddd89c +0 -0
  438. data/spec/dummy/tmp/cache/assets/E2B/690/sprockets%2Fba73f78bc0ad82ae2ff85454fdb72cba +0 -0
  439. data/spec/dummy/tmp/cache/assets/E3F/260/sprockets%2Fa6d28c62ddf8eabbf596e47289aadc9d +0 -0
  440. data/spec/dummy/tmp/cache/assets/E5A/510/sprockets%2F5ab30bdfde4be86f421c88ef7cbe60ba +0 -0
  441. data/spec/dummy/tmp/cache/assets/E62/D20/sprockets%2F547efc7f9feaecef1fce4a2832c051dc +0 -0
  442. data/spec/dummy/tmp/cache/assets/E87/BE0/sprockets%2F4fe6a7bfbbdfb501bdb6c13c71ede94e +0 -0
  443. data/spec/dummy/tmp/cache/assets/E93/500/sprockets%2F7fef7cbfa3be3ea13be9bf7cd243e39e +0 -0
  444. data/spec/dummy/tmp/cache/assets/EB3/1E0/sprockets%2Fd1aa601ff9cd894ca2d3caaef3fef3ac +0 -0
  445. data/spec/dummy/tmp/cache/sass/0f4170e2c0dfafae958929df2269909fd04155f8/_bourbon.scssc +0 -0
  446. data/spec/dummy/tmp/cache/sass/30550dd06066c61de7356ec0ed99b5a54ab95cbb/_bourbon.scssc +0 -0
  447. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_deprecated-webkit-gradient.scssc +0 -0
  448. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_flex-grid.scssc +0 -0
  449. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_grid-width.scssc +0 -0
  450. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_linear-gradient.scssc +0 -0
  451. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_modular-scale.scssc +0 -0
  452. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_radial-gradient.scssc +0 -0
  453. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_render-gradients.scssc +0 -0
  454. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_tint-shade.scssc +0 -0
  455. data/spec/dummy/tmp/cache/sass/64602afee052d8643f70ff4c3e588bed58fdca6f/_transition-property-name.scssc +0 -0
  456. data/spec/dummy/tmp/cache/sass/6fd3e79c0fc7956a77d618829b24dd38fd27df09/structure.css.sassc +0 -0
  457. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_button.scssc +0 -0
  458. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_clearfix.scssc +0 -0
  459. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_font-face.scssc +0 -0
  460. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_font-family.scssc +0 -0
  461. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_hide-text.scssc +0 -0
  462. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_hidpi-media-query.scssc +0 -0
  463. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_html5-input-types.scssc +0 -0
  464. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_position.scssc +0 -0
  465. data/spec/dummy/tmp/cache/sass/7b8f2ea47363eb8116829d6542aadbd34fab9710/_timing-functions.scssc +0 -0
  466. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/_jquery-ui.css.sassc +0 -0
  467. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/directories.css.sassc +0 -0
  468. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/form_errors.css.sassc +0 -0
  469. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/jquery-ui.css.sassc +0 -0
  470. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/locale.css.sassc +0 -0
  471. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/menu.css.sassc +0 -0
  472. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/structure.css.sassc +0 -0
  473. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/table.css.sassc +0 -0
  474. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/twittered.css.sassc +0 -0
  475. data/spec/dummy/tmp/cache/sass/8a35b8b42cba9732fd41c0a08cedb219aa934fd9/user_info.css.sassc +0 -0
  476. data/spec/dummy/tmp/cache/sass/9132eaa648859339b3f352e4310d577a1094f5ad/_button.scssc +0 -0
  477. data/spec/dummy/tmp/cache/sass/9132eaa648859339b3f352e4310d577a1094f5ad/_clearfix.scssc +0 -0
  478. data/spec/dummy/tmp/cache/sass/9132eaa648859339b3f352e4310d577a1094f5ad/_font-face.scssc +0 -0
  479. data/spec/dummy/tmp/cache/sass/9132eaa648859339b3f352e4310d577a1094f5ad/_font-family.scssc +0 -0
  480. data/spec/dummy/tmp/cache/sass/9132eaa648859339b3f352e4310d577a1094f5ad/_hide-text.scssc +0 -0
  481. data/spec/dummy/tmp/cache/sass/9132eaa648859339b3f352e4310d577a1094f5ad/_html5-input-types.scssc +0 -0
  482. data/spec/dummy/tmp/cache/sass/9132eaa648859339b3f352e4310d577a1094f5ad/_position.scssc +0 -0
  483. data/spec/dummy/tmp/cache/sass/9132eaa648859339b3f352e4310d577a1094f5ad/_timing-functions.scssc +0 -0
  484. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_animation.scssc +0 -0
  485. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_appearance.scssc +0 -0
  486. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_background-image.scssc +0 -0
  487. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_background-size.scssc +0 -0
  488. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_background.scssc +0 -0
  489. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_border-image.scssc +0 -0
  490. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_border-radius.scssc +0 -0
  491. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_box-shadow.scssc +0 -0
  492. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_box-sizing.scssc +0 -0
  493. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_columns.scssc +0 -0
  494. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_flex-box.scssc +0 -0
  495. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_image-rendering.scssc +0 -0
  496. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_inline-block.scssc +0 -0
  497. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_linear-gradient.scssc +0 -0
  498. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_prefixer.scssc +0 -0
  499. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_radial-gradient.scssc +0 -0
  500. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_transform.scssc +0 -0
  501. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_transition.scssc +0 -0
  502. data/spec/dummy/tmp/cache/sass/a76620eaab9602774e7379701f4993d4732caf0b/_user-select.scssc +0 -0
  503. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_animation.scssc +0 -0
  504. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_appearance.scssc +0 -0
  505. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_background-image.scssc +0 -0
  506. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_background-size.scssc +0 -0
  507. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_border-image.scssc +0 -0
  508. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_border-radius.scssc +0 -0
  509. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_box-shadow.scssc +0 -0
  510. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_box-sizing.scssc +0 -0
  511. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_columns.scssc +0 -0
  512. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_flex-box.scssc +0 -0
  513. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_inline-block.scssc +0 -0
  514. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_linear-gradient.scssc +0 -0
  515. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_prefixer.scssc +0 -0
  516. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_radial-gradient.scssc +0 -0
  517. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_transform.scssc +0 -0
  518. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_transition.scssc +0 -0
  519. data/spec/dummy/tmp/cache/sass/dfd39df4e3b6da33547a9dc1e9e22d6197d74369/_user-select.scssc +0 -0
  520. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_deprecated-webkit-gradient.scssc +0 -0
  521. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_flex-grid.scssc +0 -0
  522. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_grid-width.scssc +0 -0
  523. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_linear-gradient.scssc +0 -0
  524. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_modular-scale.scssc +0 -0
  525. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_radial-gradient.scssc +0 -0
  526. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_render-gradients.scssc +0 -0
  527. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_tint-shade.scssc +0 -0
  528. data/spec/dummy/tmp/cache/sass/e6bccc5282a4d028b21ae7a6e055956f48bcd357/_transition-property-name.scssc +0 -0
  529. data/spec/dummy/tmp/pids/server.pid +0 -1
  530. data/vendor/assets/devise/bootstrap-devise-rails.css.less +0 -51
@@ -0,0 +1,59 @@
1
+ class HtmlEdit
2
+ setup: ->
3
+ #ACE
4
+ locale_field = $('#page_locale')
5
+ $('.html-content').each (i, el)->
6
+ text_field = $(el)
7
+ template_field = $("##{text_field.attr('id')}_template")
8
+ ace_div = $('<div></div>').addClass('ace-div')
9
+ text_field.after ace_div
10
+ ace_div.css
11
+ width: '100%'
12
+ height: '600px'
13
+ editor = ace.edit(ace_div.get(0))
14
+ editor.setTheme 'ace/theme/monokai'
15
+ if template_field.length
16
+ editor.setValue template_field.val(), -1
17
+ editor.getSession().setMode 'ace/mode/haml'
18
+ console.log "Editing haml"
19
+ else
20
+ editor.setValue text_field.val(), -1
21
+ editor.getSession().setMode 'ace/mode/handlebars'
22
+ console.log "Editing handlebars"
23
+ editor.getSession().setTabSize(2)
24
+ editor.getSession().setUseSoftTabs(true)
25
+ template_vars = page_vars
26
+ if locale = locale_field.val()
27
+ template_vars = template_vars[locale] if template_vars[locale]
28
+ rebuild_html = ->
29
+ value = editor.getValue()
30
+ if template_field.length
31
+ try
32
+ template = Emblem.compile(Handlebars, value)
33
+ result_value = template(template_vars)
34
+ template_field.val value
35
+ text_field.val result_value
36
+ else
37
+ text_field.val value
38
+ editor.getSession().on 'change', rebuild_html
39
+ locale_field.change ->
40
+ locale = $(this).val()
41
+ template_vars = page_vars[locale] if page_vars[locale]
42
+ rebuild_html()
43
+ text_field.hide()
44
+ template_field.hide()
45
+ @html_edit = new HtmlEdit()
46
+ Handlebars.registerHelper "link-to", (url, args..., options = {})->
47
+ unless not url or url.match(/^http|^\/\w{2}\//)
48
+ # Starts with http or /:locale/ explicitly
49
+ if options.hash and options.hash.hasOwnProperty 'locale'
50
+ if locale = options.hash.locale
51
+ url = "/#{locale}/#{url}".replace('//', '/')
52
+ else if locale = $('#page_locale').val()
53
+ url = "/#{locale}/#{url}".replace('//', '/')
54
+ if options.fn
55
+ text = options.fn(this)
56
+ else
57
+ text = args[0]
58
+ link = "<a href='#{url}'>#{text}</a>"
59
+ new Handlebars.SafeString(link)
@@ -1,11 +1,13 @@
1
1
  <% cmtool = Cmtool::Engine.routes.url_helpers %>
2
- $( ->
3
- $('textarea.mceEditor, .editor_full').tinymce(
4
- theme: 'advanced',
5
- plugins: 'advimage',
6
- language: tinymce_language,
7
- external_image_list_url: '<%= cmtool.images_path(format: :js) %>',
2
+ $ ->
3
+ $('textarea.mceEditor, .editor_full').tinymce
4
+ theme: 'modern'
5
+ plugins: ['image', 'link', 'table', 'searchreplace', 'code']
6
+ language: tinymce_language
7
+ image_list: '<%= cmtool.images_path(format: :js) %>'
8
8
  relative_urls: false
9
- )
10
- $('.editor_basic').tinymce({theme: 'simple', language: tinymce_language})
11
- )
9
+ removed_menuitems: 'newdocument'
10
+ apply_source_formatting: true
11
+ $('.editor_basic').tinymce
12
+ theme: 'modern'
13
+ language: tinymce_language
@@ -0,0 +1,21 @@
1
+ class YmlEdit
2
+ setup: ->
3
+ #ACE
4
+ $('.yml-content').each (i, el)->
5
+ text_field = $(el)
6
+ ace_div = $('<div></div>').addClass('ace-div') #.html(text_field.val())
7
+ text_field.after ace_div
8
+ ace_div.css
9
+ width: '100%'
10
+ height: '600px'
11
+ editor = ace.edit(ace_div.get(0))
12
+ editor.setTheme 'ace/theme/monokai'
13
+ editor.getSession().setMode 'ace/mode/yaml'
14
+ editor.getSession().setValue text_field.val()
15
+ editor.getSession().setTabSize(2)
16
+ editor.getSession().setUseSoftTabs(true)
17
+ editor.getSession().on 'change', (e)->
18
+ text_field.val(editor.getValue()).change()
19
+ text_field.hide()
20
+ #ace_div.hide()
21
+ @yml_edit = new YmlEdit()
@@ -0,0 +1,8 @@
1
+ //= require pickadate/default
2
+ //= require pickadate/default.date
3
+ //= require pickadate/default.time
4
+ @import font-awesome
5
+ @import ./foundation_and_overrides
6
+ @import ./structure
7
+ @import ./components/*
8
+ @import ./locale
@@ -0,0 +1,12 @@
1
+ .to-index-button
2
+ +button($bg: $secondary-color)
3
+ .record-show-button
4
+ +button($bg: $info-color)
5
+ .record-new-button
6
+ +button
7
+ .record-edit-button
8
+ +button($bg: $warning-color)
9
+ .record-destroy-button
10
+ +button($bg: $alert-color)
11
+ .form-submit-button
12
+ +button
@@ -0,0 +1,13 @@
1
+ .collapsible-container
2
+ .collapsible-title
3
+ font-size: 1.4em
4
+ font-weight: bold
5
+ cursor: pointer
6
+ span
7
+ @extend .fa, .fa-arrow-down
8
+ &.collapsed
9
+ .collapsible-title
10
+ span
11
+ @extend .fa, .fa-arrow-right
12
+ .collapsible-content
13
+ display: none
@@ -0,0 +1,45 @@
1
+ .form-row
2
+ +grid-row
3
+ .form-label
4
+ @media #{$small-only}
5
+ +grid-column($columns:10, $center:true)
6
+ @media #{$medium-only}
7
+ +grid-column($columns:4, $offset:1)
8
+ @media #{$large-up}
9
+ +grid-column(3)
10
+ &.half
11
+ +grid-column(6)
12
+ .form-field
13
+ @media #{$small-only}
14
+ +grid-column($columns:10, $center:true, $last-column:true)
15
+ @media #{$medium-only}
16
+ +grid-column($columns:4, $last-column:true)
17
+ @media #{$large-up}
18
+ +grid-column($columns: 3, $last-column:true)
19
+ &.full
20
+ @media #{$small-only}
21
+ +grid-column($columns:10, $center:true, $last-column:true)
22
+ @media #{$medium-only}
23
+ +grid-column($columns:6, $last-column:true)
24
+ @media #{$large-up}
25
+ +grid-column($columns: 9, $last-column:true)
26
+ &.half
27
+ +grid-column(6)
28
+ &.form-actions
29
+ padding-top: 12px
30
+ body
31
+ label
32
+ &.number
33
+ display: inline-block
34
+ padding: 4px 10px
35
+ input
36
+ &.number
37
+ width: 60px
38
+ display: inline-block
39
+ .apply-filter
40
+ +button($bg: $primary-color, $padding: $button-tny)
41
+ .error
42
+ input, textarea
43
+ border-color: $alert-color
44
+ input[type="number"]
45
+ text-align: right
@@ -0,0 +1,6 @@
1
+ .reveal-modal-bg
2
+ position: fixed
3
+ #preview-modal
4
+ width: 90%
5
+ height: 90%
6
+ margin-top: -70px
@@ -1,5 +1,4 @@
1
- @import bourbon
2
-
3
1
  table.index-table
2
+ width: 100%
4
3
  td.action
5
4
  width: 24px
@@ -0,0 +1,1447 @@
1
+ // Foundation by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ //
6
+
7
+ // Table of Contents
8
+ // Foundation Settings
9
+ //
10
+ // a. Base
11
+ // b. Grid
12
+ // c. Global
13
+ // d. Media Query Ranges
14
+ // e. Typography
15
+ // 01. Accordion
16
+ // 02. Alert Boxes
17
+ // 03. Block Grid
18
+ // 04. Breadcrumbs
19
+ // 05. Buttons
20
+ // 06. Button Groups
21
+ // 07. Clearing
22
+ // 08. Dropdown
23
+ // 09. Dropdown Buttons
24
+ // 10. Flex Video
25
+ // 11. Forms
26
+ // 12. Icon Bar
27
+ // 13. Inline Lists
28
+ // 14. Joyride
29
+ // 15. Keystrokes
30
+ // 16. Labels
31
+ // 17. Magellan
32
+ // 18. Off-canvas
33
+ // 19. Orbit
34
+ // 20. Pagination
35
+ // 21. Panels
36
+ // 22. Pricing Tables
37
+ // 23. Progress Bar
38
+ // 24. Range Slider
39
+ // 25. Reveal
40
+ // 26. Side Nav
41
+ // 27. Split Buttons
42
+ // 28. Sub Nav
43
+ // 29. Switch
44
+ // 30. Tables
45
+ // 31. Tabs
46
+ // 32. Thumbnails
47
+ // 33. Tooltips
48
+ // 34. Top Bar
49
+ // 36. Visibility Classes
50
+
51
+ // a. Base
52
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
53
+
54
+ // This is the default html and body font-size for the base rem value.
55
+ // $rem-base: 16px;
56
+
57
+ // Allows the use of rem-calc() or lower-bound() in your settings
58
+ @import "foundation/functions";
59
+
60
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
61
+ // for compatibility with browser-based text zoom or user-set defaults.
62
+
63
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
64
+ // If you want your base font-size to be different and not have it affect the grid breakpoints,
65
+ // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
66
+ // $base-font-size: 100%;
67
+
68
+ // The $base-font-size is 100% while $base-line-height is 150%
69
+ // $base-line-height: 150%;
70
+
71
+ // We use this to control whether or not CSS classes come through in the gem files.
72
+ $include-html-classes: true;
73
+ // $include-print-styles: true;
74
+ $include-html-global-classes: $include-html-classes;
75
+
76
+ // b. Grid
77
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
78
+
79
+ // $include-html-grid-classes: $include-html-classes;
80
+ // $include-xl-html-grid-classes: false;
81
+
82
+ // $row-width: rem-calc(1000);
83
+ // $total-columns: 12;
84
+ // $column-gutter: rem-calc(30);
85
+
86
+ // c. Global
87
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
88
+
89
+ // We use these to define default font stacks
90
+ // $font-family-sans-serif: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
91
+ // $font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif;
92
+ // $font-family-monospace: Consolas, "Liberation Mono", Courier, monospace;
93
+
94
+ // We use these to define default font weights
95
+ // $font-weight-normal: normal !default;
96
+ // $font-weight-bold: bold !default;
97
+
98
+ // $white : #FFFFFF;
99
+ // $ghost : #FAFAFA;
100
+ // $snow : #F9F9F9;
101
+ // $vapor : #F6F6F6;
102
+ // $white-smoke : #F5F5F5;
103
+ // $silver : #EFEFEF;
104
+ // $smoke : #EEEEEE;
105
+ // $gainsboro : #DDDDDD;
106
+ // $iron : #CCCCCC;
107
+ // $base : #AAAAAA;
108
+ // $aluminum : #999999;
109
+ // $jumbo : #888888;
110
+ // $monsoon : #777777;
111
+ // $steel : #666666;
112
+ // $charcoal : #555555;
113
+ // $tuatara : #444444;
114
+ // $oil : #333333;
115
+ // $jet : #222222;
116
+ // $black : #000000;
117
+
118
+ // We use these as default colors throughout
119
+ // $primary-color: #008CBA;
120
+ // $secondary-color: #e7e7e7;
121
+ // $alert-color: #f04124;
122
+ // $success-color: #43AC6A;
123
+ // $warning-color: #f08a24;
124
+ // $info-color: #a0d3e8;
125
+
126
+ // We use these to control various global styles
127
+ // $body-bg: $white;
128
+ // $body-font-color: $jet;
129
+ // $body-font-family: $font-family-sans-serif;
130
+ // $body-font-weight: $font-weight-normal;
131
+ // $body-font-style: normal;
132
+
133
+ // We use this to control font-smoothing
134
+ // $font-smoothing: antialiased;
135
+
136
+ // We use these to control text direction settings
137
+ // $text-direction: ltr;
138
+ // $opposite-direction: right;
139
+ // $default-float: left;
140
+ // $last-child-float: $opposite-direction;
141
+
142
+ // We use these to make sure border radius matches unless we want it different.
143
+ // $global-radius: 3px;
144
+ // $global-rounded: 1000px;
145
+
146
+ // We use these to control inset shadow shiny edges and depressions.
147
+ // $shiny-edge-size: 0 1px 0;
148
+ // $shiny-edge-color: rgba($white, .5);
149
+ // $shiny-edge-active-color: rgba($black, .2);
150
+
151
+ // d. Media Query Ranges
152
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
153
+
154
+ // $small-range: (0em, 40em);
155
+ // $medium-range: (40.063em, 64em);
156
+ // $large-range: (64.063em, 90em);
157
+ // $xlarge-range: (90.063em, 120em);
158
+ // $xxlarge-range: (120.063em, 99999999em);
159
+
160
+ // $screen: "only screen";
161
+
162
+ // $landscape: "#{$screen} and (orientation: landscape)";
163
+ // $portrait: "#{$screen} and (orientation: portrait)";
164
+
165
+ // $small-up: $screen;
166
+ // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
167
+
168
+ // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
169
+ // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
170
+
171
+ // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
172
+ // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
173
+
174
+ // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
175
+ // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
176
+
177
+ // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
178
+ // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
179
+
180
+ // Legacy
181
+ // $small: $medium-up;
182
+ // $medium: $medium-up;
183
+ // $large: $large-up;
184
+
185
+ // We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
186
+ // $cursor-crosshair-value: crosshair;
187
+ // $cursor-default-value: default;
188
+ // $cursor-pointer-value: pointer;
189
+ // $cursor-help-value: help;
190
+ // $cursor-text-value: text;
191
+
192
+ // e. Typography
193
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
194
+
195
+ // $include-html-type-classes: $include-html-classes;
196
+
197
+ // We use these to control header font styles
198
+ // $header-font-family: $body-font-family;
199
+ // $header-font-weight: $font-weight-normal;
200
+ // $header-font-style: normal;
201
+ // $header-font-color: $jet;
202
+ // $header-line-height: 1.4;
203
+ // $header-top-margin: .2rem;
204
+ // $header-bottom-margin: .5rem;
205
+ // $header-text-rendering: optimizeLegibility;
206
+
207
+ // We use these to control header font sizes
208
+ // $h1-font-size: rem-calc(44);
209
+ // $h2-font-size: rem-calc(37);
210
+ // $h3-font-size: rem-calc(27);
211
+ // $h4-font-size: rem-calc(23);
212
+ // $h5-font-size: rem-calc(18);
213
+ // $h6-font-size: 1rem;
214
+
215
+ // We use these to control header size reduction on small screens
216
+ // $h1-font-reduction: rem-calc(10) !default;
217
+ // $h2-font-reduction: rem-calc(10) !default;
218
+ // $h3-font-reduction: rem-calc(5) !default;
219
+ // $h4-font-reduction: rem-calc(5) !default;
220
+ // $h5-font-reduction: 0 !default;
221
+ // $h6-font-reduction: 0 !default;
222
+
223
+ // These control how subheaders are styled.
224
+ // $subheader-line-height: 1.4;
225
+ // $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
226
+ // $subheader-font-weight: $font-weight-normal;
227
+ // $subheader-top-margin: .2rem;
228
+ // $subheader-bottom-margin: .5rem;
229
+
230
+ // A general <small> styling
231
+ // $small-font-size: 60%;
232
+ // $small-font-color: scale-color($header-font-color, $lightness: 35%);
233
+
234
+ // We use these to style paragraphs
235
+ // $paragraph-font-family: inherit;
236
+ // $paragraph-font-weight: $font-weight-normal;
237
+ // $paragraph-font-size: 1rem;
238
+ // $paragraph-line-height: 1.6;
239
+ // $paragraph-margin-bottom: rem-calc(20);
240
+ // $paragraph-aside-font-size: rem-calc(14);
241
+ // $paragraph-aside-line-height: 1.35;
242
+ // $paragraph-aside-font-style: italic;
243
+ // $paragraph-text-rendering: optimizeLegibility;
244
+
245
+ // We use these to style <code> tags
246
+ // $code-color: $oil;
247
+ // $code-font-family: $font-family-monospace;
248
+ // $code-font-weight: $font-weight-normal;
249
+ // $code-background-color: scale-color($secondary-color, $lightness: 70%);
250
+ // $code-border-size: 1px;
251
+ // $code-border-style: solid;
252
+ // $code-border-color: scale-color($code-background-color, $lightness: -10%);
253
+ // $code-padding: rem-calc(2) rem-calc(5) rem-calc(1);
254
+
255
+ // We use these to style anchors
256
+ // $anchor-text-decoration: none;
257
+ // $anchor-text-decoration-hover: none;
258
+ // $anchor-font-color: $primary-color;
259
+ // $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
260
+
261
+ // We use these to style the <hr> element
262
+ // $hr-border-width: 1px;
263
+ // $hr-border-style: solid;
264
+ // $hr-border-color: $gainsboro;
265
+ // $hr-margin: rem-calc(20);
266
+
267
+ // We use these to style lists
268
+ // $list-font-family: $paragraph-font-family;
269
+ // $list-font-size: $paragraph-font-size;
270
+ // $list-line-height: $paragraph-line-height;
271
+ // $list-margin-bottom: $paragraph-margin-bottom;
272
+ // $list-style-position: outside;
273
+ // $list-side-margin: 1.1rem;
274
+ // $list-ordered-side-margin: 1.4rem;
275
+ // $list-side-margin-no-bullet: 0;
276
+ // $list-nested-margin: rem-calc(20);
277
+ // $definition-list-header-weight: $font-weight-bold;
278
+ // $definition-list-header-margin-bottom: .3rem;
279
+ // $definition-list-margin-bottom: rem-calc(12);
280
+
281
+ // We use these to style blockquotes
282
+ // $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
283
+ // $blockquote-padding: rem-calc(9 20 0 19);
284
+ // $blockquote-border: 1px solid $gainsboro;
285
+ // $blockquote-cite-font-size: rem-calc(13);
286
+ // $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
287
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
288
+
289
+ // Acronym styles
290
+ // $acronym-underline: 1px dotted $gainsboro;
291
+
292
+ // We use these to control padding and margin
293
+ // $microformat-padding: rem-calc(10 12);
294
+ // $microformat-margin: rem-calc(0 0 20 0);
295
+
296
+ // We use these to control the border styles
297
+ // $microformat-border-width: 1px;
298
+ // $microformat-border-style: solid;
299
+ // $microformat-border-color: $gainsboro;
300
+
301
+ // We use these to control full name font styles
302
+ // $microformat-fullname-font-weight: $font-weight-bold;
303
+ // $microformat-fullname-font-size: rem-calc(15);
304
+
305
+ // We use this to control the summary font styles
306
+ // $microformat-summary-font-weight: $font-weight-bold;
307
+
308
+ // We use this to control abbr padding
309
+ // $microformat-abbr-padding: rem-calc(0 1);
310
+
311
+ // We use this to control abbr font styles
312
+ // $microformat-abbr-font-weight: $font-weight-bold;
313
+ // $microformat-abbr-font-decoration: none;
314
+
315
+ // 01. Accordion
316
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
317
+
318
+ // $include-html-accordion-classes: $include-html-classes;
319
+
320
+ // $accordion-navigation-padding: rem-calc(16);
321
+ // $accordion-navigation-bg-color: $silver;
322
+ // $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
323
+ // $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
324
+ // $accordion-navigation-font-color: $jet;
325
+ // $accordion-navigation-font-size: rem-calc(16);
326
+ // $accordion-navigation-font-family: $body-font-family;
327
+
328
+ // $accordion-content-padding: ($column-gutter/2);
329
+ // $accordion-content-active-bg-color: $white;
330
+
331
+ // 02. Alert Boxes
332
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
333
+
334
+ // $include-html-alert-classes: $include-html-classes;
335
+
336
+ // We use this to control alert padding.
337
+ // $alert-padding-top: rem-calc(14);
338
+ // $alert-padding-default-float: $alert-padding-top;
339
+ // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
340
+ // $alert-padding-bottom: $alert-padding-top;
341
+
342
+ // We use these to control text style.
343
+ // $alert-font-weight: $font-weight-normal;
344
+ // $alert-font-size: rem-calc(13);
345
+ // $alert-font-color: $white;
346
+ // $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
347
+
348
+ // We use this for close hover effect.
349
+ // $alert-function-factor: -14%;
350
+
351
+ // We use these to control border styles.
352
+ // $alert-border-style: solid;
353
+ // $alert-border-width: 1px;
354
+ // $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
355
+ // $alert-bottom-margin: rem-calc(20);
356
+
357
+ // We use these to style the close buttons
358
+ // $alert-close-color: $oil;
359
+ // $alert-close-top: 50%;
360
+ // $alert-close-position: rem-calc(4);
361
+ // $alert-close-font-size: rem-calc(22);
362
+ // $alert-close-opacity: 0.3;
363
+ // $alert-close-opacity-hover: 0.5;
364
+ // $alert-close-padding: 9px 6px 4px;
365
+
366
+ // We use this to control border radius
367
+ // $alert-radius: $global-radius;
368
+
369
+ // We use this to control transition effects
370
+ // $alert-transition-speed: 300ms;
371
+ // $alert-transition-ease: ease-out;
372
+
373
+ // 03. Block Grid
374
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
375
+
376
+ // $include-html-block-grid-classes: $include-html-classes;
377
+ // $include-xl-html-block-grid-classes: false;
378
+
379
+ // We use this to control the maximum number of block grid elements per row
380
+ // $block-grid-elements: 12;
381
+ // $block-grid-default-spacing: rem-calc(20);
382
+ // $align-block-grid-to-grid: false;
383
+
384
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
385
+ // $block-grid-media-queries: true;
386
+
387
+ // 04. Breadcrumbs
388
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
389
+
390
+ // $include-html-nav-classes: $include-html-classes;
391
+
392
+ // We use this to set the background color for the breadcrumb container.
393
+ // $crumb-bg: scale-color($secondary-color, $lightness: 55%);
394
+
395
+ // We use these to set the padding around the breadcrumbs.
396
+ // $crumb-padding: rem-calc(9 14 9);
397
+ // $crumb-side-padding: rem-calc(12);
398
+
399
+ // We use these to control border styles.
400
+ // $crumb-function-factor: -10%;
401
+ // $crumb-border-size: 1px;
402
+ // $crumb-border-style: solid;
403
+ // $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
404
+ // $crumb-radius: $global-radius;
405
+
406
+ // We use these to set various text styles for breadcrumbs.
407
+ // $crumb-font-size: rem-calc(11);
408
+ // $crumb-font-color: $primary-color;
409
+ // $crumb-font-color-current: $oil;
410
+ // $crumb-font-color-unavailable: $aluminum;
411
+ // $crumb-font-transform: uppercase;
412
+ // $crumb-link-decor: underline;
413
+
414
+ // We use these to control the slash between breadcrumbs
415
+ // $crumb-slash-color: $base;
416
+ // $crumb-slash: "/";
417
+
418
+ // 05. Buttons
419
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
420
+
421
+ // $include-html-button-classes: $include-html-classes;
422
+
423
+ // We use these to build padding for buttons.
424
+ // $button-tny: rem-calc(10);
425
+ // $button-sml: rem-calc(14);
426
+ // $button-med: rem-calc(16);
427
+ // $button-lrg: rem-calc(18);
428
+
429
+ // We use this to control the display property.
430
+ // $button-display: inline-block;
431
+ $button-margin-bottom: 0;
432
+
433
+ // We use these to control button text styles.
434
+ // $button-font-family: $body-font-family;
435
+ // $button-font-color: $white;
436
+ // $button-font-color-alt: $oil;
437
+ // $button-font-tny: rem-calc(11);
438
+ // $button-font-sml: rem-calc(13);
439
+ // $button-font-med: rem-calc(16);
440
+ // $button-font-lrg: rem-calc(20);
441
+ // $button-font-weight: $font-weight-normal;
442
+ // $button-font-align: center;
443
+
444
+ // We use these to control various hover effects.
445
+ // $button-function-factor: -20%;
446
+
447
+ // We use these to control button border and hover styles.
448
+ // $button-border-width: 0px;
449
+ // $button-border-style: solid;
450
+ // $button-bg-color: $primary-color;
451
+ // $button-bg-hover: scale-color($button-bg-color, $lightness: $button-function-factor);
452
+ // $button-border-color: $button-bg-hover;
453
+ // $secondary-button-bg-hover: scale-color($secondary-color, $lightness: $button-function-factor);
454
+ // $secondary-button-border-color: $secondary-button-bg-hover;
455
+ // $success-button-bg-hover: scale-color($success-color, $lightness: $button-function-factor);
456
+ // $success-button-border-color: $success-button-bg-hover;
457
+ // $alert-button-bg-hover: scale-color($alert-color, $lightness: $button-function-factor);
458
+ // $alert-button-border-color: $alert-button-bg-hover;
459
+
460
+ // We use this to set the default radius used throughout the core.
461
+ // $button-radius: $global-radius;
462
+ // $button-round: $global-rounded;
463
+
464
+ // We use this to set default opacity and cursor for disabled buttons.
465
+ // $button-disabled-opacity: 0.7;
466
+ // $button-disabled-cursor: $cursor-default-value;
467
+
468
+ // 06. Button Groups
469
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
470
+
471
+ // $include-html-button-classes: $include-html-classes;
472
+
473
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
474
+ // $button-bar-margin-opposite: rem-calc(10);
475
+ // $button-group-border-width: 1px;
476
+
477
+ // 07. Clearing
478
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
479
+
480
+ // $include-html-clearing-classes: $include-html-classes;
481
+
482
+ // We use these to set the background colors for parts of Clearing.
483
+ // $clearing-bg: $oil;
484
+ // $clearing-caption-bg: $clearing-bg;
485
+ // $clearing-carousel-bg: rgba(51,51,51,0.8);
486
+ // $clearing-img-bg: $clearing-bg;
487
+
488
+ // We use these to style the close button
489
+ // $clearing-close-color: $iron;
490
+ // $clearing-close-size: 30px;
491
+
492
+ // We use these to style the arrows
493
+ // $clearing-arrow-size: 12px;
494
+ // $clearing-arrow-color: $clearing-close-color;
495
+
496
+ // We use these to style captions
497
+ // $clearing-caption-font-color: $iron;
498
+ // $clearing-caption-font-size: 0.875em;
499
+ // $clearing-caption-padding: 10px 30px 20px;
500
+
501
+ // We use these to make the image and carousel height and style
502
+ // $clearing-active-img-height: 85%;
503
+ // $clearing-carousel-height: 120px;
504
+ // $clearing-carousel-thumb-width: 120px;
505
+ // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
506
+
507
+ // 08. Dropdown
508
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
509
+
510
+ // $include-html-dropdown-classes: $include-html-classes;
511
+
512
+ // We use these to controls height and width styles.
513
+ // $f-dropdown-max-width: 200px;
514
+ // $f-dropdown-height: auto;
515
+ // $f-dropdown-max-height: none;
516
+
517
+ // Used for bottom position
518
+ // $f-dropdown-margin-top: 2px;
519
+
520
+ // Used for right position
521
+ // $f-dropdown-margin-left: $f-dropdown-margin-top;
522
+
523
+ // Used for left position
524
+ // $f-dropdown-margin-right: $f-dropdown-margin-top;
525
+
526
+ // Used for top position
527
+ // $f-dropdown-margin-bottom: $f-dropdown-margin-top;
528
+
529
+ // We use this to control the background color
530
+ // $f-dropdown-bg: $white;
531
+
532
+ // We use this to set the border styles for dropdowns.
533
+ // $f-dropdown-border-style: solid;
534
+ // $f-dropdown-border-width: 1px;
535
+ // $f-dropdown-border-color: scale-color($white, $lightness: -20%);
536
+
537
+ // We use these to style the triangle pip.
538
+ // $f-dropdown-triangle-size: 6px;
539
+ // $f-dropdown-triangle-color: $white;
540
+ // $f-dropdown-triangle-side-offset: 10px;
541
+
542
+ // We use these to control styles for the list elements.
543
+ // $f-dropdown-list-style: none;
544
+ // $f-dropdown-font-color: $charcoal;
545
+ // $f-dropdown-font-size: rem-calc(14);
546
+ // $f-dropdown-list-padding: rem-calc(5, 10);
547
+ // $f-dropdown-line-height: rem-calc(18);
548
+ // $f-dropdown-list-hover-bg: $smoke;
549
+ // $dropdown-mobile-default-float: 0;
550
+
551
+ // We use this to control the styles for when the dropdown has custom content.
552
+ // $f-dropdown-content-padding: rem-calc(20);
553
+
554
+ // Default radius for dropdown.
555
+ // $f-dropdown-radius: $global-radius;
556
+
557
+
558
+ // 09. Dropdown Buttons
559
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
560
+
561
+ // $include-html-button-classes: $include-html-classes;
562
+
563
+ // We use these to set the color of the pip in dropdown buttons
564
+ // $dropdown-button-pip-color: $white;
565
+ // $dropdown-button-pip-color-alt: $oil;
566
+
567
+ // $button-pip-tny: rem-calc(6);
568
+ // $button-pip-sml: rem-calc(7);
569
+ // $button-pip-med: rem-calc(9);
570
+ // $button-pip-lrg: rem-calc(11);
571
+
572
+ // We use these to style tiny dropdown buttons
573
+ // $dropdown-button-padding-tny: $button-pip-tny * 7;
574
+ // $dropdown-button-pip-size-tny: $button-pip-tny;
575
+ // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
576
+ // $dropdown-button-pip-top-tny: (-$button-pip-tny / 2) + rem-calc(1);
577
+
578
+ // We use these to style small dropdown buttons
579
+ // $dropdown-button-padding-sml: $button-pip-sml * 7;
580
+ // $dropdown-button-pip-size-sml: $button-pip-sml;
581
+ // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
582
+ // $dropdown-button-pip-top-sml: (-$button-pip-sml / 2) + rem-calc(1);
583
+
584
+ // We use these to style medium dropdown buttons
585
+ // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
586
+ // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
587
+ // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
588
+ // $dropdown-button-pip-top-med: (-$button-pip-med / 2) + rem-calc(2);
589
+
590
+ // We use these to style large dropdown buttons
591
+ // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
592
+ // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
593
+ // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
594
+ // $dropdown-button-pip-top-lrg: (-$button-pip-lrg / 2) + rem-calc(3);
595
+
596
+ // 10. Flex Video
597
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
598
+
599
+ // $include-html-media-classes: $include-html-classes;
600
+
601
+ // We use these to control video container padding and margins
602
+ // $flex-video-padding-top: rem-calc(25);
603
+ // $flex-video-padding-bottom: 67.5%;
604
+ // $flex-video-margin-bottom: rem-calc(16);
605
+
606
+ // We use this to control widescreen bottom padding
607
+ // $flex-video-widescreen-padding-bottom: 56.34%;
608
+
609
+ // 11. Forms
610
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
611
+
612
+ // $include-html-form-classes: $include-html-classes;
613
+
614
+ // We use this to set the base for lots of form spacing and positioning styles
615
+ // $form-spacing: rem-calc(16);
616
+
617
+ // We use these to style the labels in different ways
618
+ // $form-label-pointer: pointer;
619
+ // $form-label-font-size: rem-calc(14);
620
+ // $form-label-font-weight: $font-weight-normal;
621
+ // $form-label-line-height: 1.5;
622
+ // $form-label-font-color: scale-color($black, $lightness: 30%);
623
+ // $form-label-small-transform: capitalize;
624
+ // $form-label-bottom-margin: 0;
625
+ // $input-font-family: inherit;
626
+ // $input-font-color: rgba(0,0,0,0.75);
627
+ // $input-font-size: rem-calc(14);
628
+ // $input-bg-color: $white;
629
+ // $input-focus-bg-color: scale-color($white, $lightness: -2%);
630
+ // $input-border-color: scale-color($white, $lightness: -20%);
631
+ // $input-focus-border-color: scale-color($white, $lightness: -40%);
632
+ // $input-border-style: solid;
633
+ // $input-border-width: 1px;
634
+ // $input-border-radius: $global-radius;
635
+ // $input-disabled-bg: $gainsboro;
636
+ // $input-disabled-cursor: $cursor-default-value;
637
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
638
+
639
+ // We use these to style the fieldset border and spacing.
640
+ // $fieldset-border-style: solid;
641
+ // $fieldset-border-width: 1px;
642
+ // $fieldset-border-color: $gainsboro;
643
+ // $fieldset-padding: rem-calc(20);
644
+ // $fieldset-margin: rem-calc(18 0);
645
+
646
+ // We use these to style the legends when you use them
647
+ // $legend-bg: $white;
648
+ // $legend-font-weight: $font-weight-bold;
649
+ // $legend-padding: rem-calc(0 3);
650
+
651
+ // We use these to style the prefix and postfix input elements
652
+ // $input-prefix-bg: scale-color($white, $lightness: -5%);
653
+ // $input-prefix-border-color: scale-color($white, $lightness: -20%);
654
+ // $input-prefix-border-size: 1px;
655
+ // $input-prefix-border-type: solid;
656
+ // $input-prefix-overflow: hidden;
657
+ // $input-prefix-font-color: $oil;
658
+ // $input-prefix-font-color-alt: $white;
659
+
660
+ // We use this setting to turn on/off HTML5 number spinners (the up/down arrows)
661
+ // $input-number-spinners: true;
662
+
663
+ // We use these to style the error states for inputs and labels
664
+ // $input-error-message-padding: rem-calc(6 9 9);
665
+ // $input-error-message-top: -1px;
666
+ // $input-error-message-font-size: rem-calc(12);
667
+ // $input-error-message-font-weight: $font-weight-normal;
668
+ // $input-error-message-font-style: italic;
669
+ // $input-error-message-font-color: $white;
670
+ // $input-error-message-bg-color: $alert-color;
671
+ // $input-error-message-font-color-alt: $oil;
672
+
673
+ // We use this to style the glowing effect of inputs when focused
674
+ // $input-include-glowing-effect: true;
675
+ // $glowing-effect-fade-time: 0.45s;
676
+ // $glowing-effect-color: $input-focus-border-color;
677
+
678
+ // Select variables
679
+ // $select-bg-color: $ghost;
680
+ // $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
681
+
682
+ // 12. Icon Bar
683
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
684
+
685
+ // We use these to style the icon-bar and items
686
+ // $include-html-icon-bar-classes: $include-html-classes;
687
+ // $icon-bar-bg: $oil;
688
+ // $icon-bar-font-color: $white;
689
+ // $icon-bar-font-color-hover: $icon-bar-font-color;
690
+ // $icon-bar-font-size: 1rem;
691
+ // $icon-bar-hover-color: $primary-color;
692
+ // $icon-bar-icon-color: $white;
693
+ // $icon-bar-icon-color-hover: $icon-bar-icon-color;
694
+ // $icon-bar-icon-size: 1.875rem;
695
+ // $icon-bar-image-width: 1.875rem;
696
+ // $icon-bar-image-height: 1.875rem;
697
+ // $icon-bar-active-color: $primary-color;
698
+ // $icon-bar-item-padding: 1.25rem;
699
+
700
+ // 13. Inline Lists
701
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
702
+
703
+ // $include-html-inline-list-classes: $include-html-classes;
704
+
705
+ // We use this to control the margins and padding of the inline list.
706
+ // $inline-list-top-margin: 0;
707
+ // $inline-list-opposite-margin: 0;
708
+ // $inline-list-bottom-margin: rem-calc(17);
709
+ // $inline-list-default-float-margin: rem-calc(-22);
710
+ // $inline-list-default-float-list-margin: rem-calc(22);
711
+
712
+ // $inline-list-padding: 0;
713
+
714
+ // We use this to control the overflow of the inline list.
715
+ // $inline-list-overflow: hidden;
716
+
717
+ // We use this to control the list items
718
+ // $inline-list-display: block;
719
+
720
+ // We use this to control any elements within list items
721
+ // $inline-list-children-display: block;
722
+
723
+ // 14. Joyride
724
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
725
+
726
+ // $include-html-joyride-classes: $include-html-classes;
727
+
728
+ // Controlling default Joyride styles
729
+ // $joyride-tip-bg: $oil;
730
+ // $joyride-tip-default-width: 300px;
731
+ // $joyride-tip-padding: rem-calc(18 20 24);
732
+ // $joyride-tip-border: solid 1px $charcoal;
733
+ // $joyride-tip-radius: 4px;
734
+ // $joyride-tip-position-offset: 22px;
735
+
736
+ // Here, we're setting the tip font styles
737
+ // $joyride-tip-font-color: $white;
738
+ // $joyride-tip-font-size: rem-calc(14);
739
+ // $joyride-tip-header-weight: $font-weight-bold;
740
+
741
+ // This changes the nub size
742
+ // $joyride-tip-nub-size: 10px;
743
+
744
+ // This adjusts the styles for the timer when its enabled
745
+ // $joyride-tip-timer-width: 50px;
746
+ // $joyride-tip-timer-height: 3px;
747
+ // $joyride-tip-timer-color: $steel;
748
+
749
+ // This changes up the styles for the close button
750
+ // $joyride-tip-close-color: $monsoon;
751
+ // $joyride-tip-close-size: 24px;
752
+ // $joyride-tip-close-weight: $font-weight-normal;
753
+
754
+ // When Joyride is filling the screen, we use this style for the bg
755
+ // $joyride-screenfill: rgba(0,0,0,0.5);
756
+
757
+ // 15. Keystrokes
758
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
759
+
760
+ // $include-html-keystroke-classes: $include-html-classes;
761
+
762
+ // We use these to control text styles.
763
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
764
+ // $keystroke-font-size: inherit;
765
+ // $keystroke-font-color: $jet;
766
+ // $keystroke-font-color-alt: $white;
767
+ // $keystroke-function-factor: -7%;
768
+
769
+ // We use this to control keystroke padding.
770
+ // $keystroke-padding: rem-calc(2 4 0);
771
+
772
+ // We use these to control background and border styles.
773
+ // $keystroke-bg: scale-color($white, $lightness: $keystroke-function-factor);
774
+ // $keystroke-border-style: solid;
775
+ // $keystroke-border-width: 1px;
776
+ // $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
777
+ // $keystroke-radius: $global-radius;
778
+
779
+ // 16. Labels
780
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
781
+
782
+ // $include-html-label-classes: $include-html-classes;
783
+
784
+ // We use these to style the labels
785
+ // $label-padding: rem-calc(4 8 4);
786
+ // $label-radius: $global-radius;
787
+
788
+ // We use these to style the label text
789
+ // $label-font-sizing: rem-calc(11);
790
+ // $label-font-weight: $font-weight-normal;
791
+ // $label-font-color: $oil;
792
+ // $label-font-color-alt: $white;
793
+ // $label-font-family: $body-font-family;
794
+
795
+ // 17. Magellan
796
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
797
+
798
+ // $include-html-magellan-classes: $include-html-classes;
799
+
800
+ // $magellan-bg: $white;
801
+ // $magellan-padding: 0 !important;
802
+
803
+ // 18. Off-canvas
804
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
805
+
806
+ // $include-html-off-canvas-classes: $include-html-classes;
807
+
808
+ // $tabbar-bg: $oil;
809
+ // $tabbar-height: rem-calc(45);
810
+ // $tabbar-icon-width: $tabbar-height;
811
+ // $tabbar-line-height: $tabbar-height;
812
+ // $tabbar-color: $white;
813
+ // $tabbar-middle-padding: 0 rem-calc(10);
814
+
815
+ // Off Canvas Divider Styles
816
+ // $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
817
+ // $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
818
+
819
+ // Off Canvas Tab Bar Headers
820
+ // $tabbar-header-color: $white;
821
+ // $tabbar-header-weight: $font-weight-bold;
822
+ // $tabbar-header-line-height: $tabbar-height;
823
+ // $tabbar-header-margin: 0;
824
+
825
+ // Off Canvas Menu Variables
826
+ // $off-canvas-width: rem-calc(250);
827
+ // $off-canvas-bg: $oil;
828
+ // $off-canvas-bg-hover: scale-color($tabbar-bg, $lightness: -30%);
829
+
830
+ // Off Canvas Menu List Variables
831
+ // $off-canvas-label-padding: 0.3rem rem-calc(15);
832
+ // $off-canvas-label-color: $aluminum;
833
+ // $off-canvas-label-text-transform: uppercase;
834
+ // $off-canvas-label-font-size: rem-calc(12);
835
+ // $off-canvas-label-font-weight: $font-weight-bold;
836
+ // $off-canvas-label-bg: $tuatara;
837
+ // $off-canvas-label-border-top: 1px solid scale-color($tuatara, $lightness: 14%);
838
+ // $off-canvas-label-border-bottom: none;
839
+ // $off-canvas-label-margin:0;
840
+ // $off-canvas-link-padding: rem-calc(10, 15);
841
+ // $off-canvas-link-color: rgba($white, 0.7);
842
+ // $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
843
+ // $off-canvas-back-bg: $tuatara;
844
+ // $off-canvas-back-border-top: $off-canvas-label-border-top;
845
+ // $off-canvas-back-border-bottom: $off-canvas-label-border-bottom;
846
+ // $off-canvas-back-hover-bg: scale-color($off-canvas-back-bg, $lightness: -30%);
847
+ // $off-canvas-back-hover-border-top: 1px solid scale-color($off-canvas-label-bg, $lightness: 14%);
848
+ // $off-canvas-back-hover-border-bottom: none;
849
+
850
+ // Off Canvas Menu Icon Variables
851
+ // $tabbar-menu-icon-color: $white;
852
+ // $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
853
+
854
+ // $tabbar-menu-icon-text-indent: rem-calc(35);
855
+ // $tabbar-menu-icon-width: $tabbar-height;
856
+ // $tabbar-menu-icon-height: $tabbar-height;
857
+ // $tabbar-menu-icon-padding: 0;
858
+
859
+ // $tabbar-hamburger-icon-width: rem-calc(16);
860
+ // $tabbar-hamburger-icon-left: false;
861
+ // $tabbar-hamburger-icon-top: false;
862
+ // $tabbar-hamburger-icon-thickness: 1px;
863
+ // $tabbar-hamburger-icon-gap: 6px;
864
+
865
+ // Off Canvas Back-Link Overlay
866
+ // $off-canvas-overlay-transition: background 300ms ease;
867
+ // $off-canvas-overlay-cursor: pointer;
868
+ // $off-canvas-overlay-box-shadow: -4px 0 4px rgba($black, 0.5), 4px 0 4px rgba($black, 0.5);
869
+ // $off-canvas-overlay-background: rgba($white, 0.2);
870
+ // $off-canvas-overlay-background-hover: rgba($white, 0.05);
871
+
872
+ // Transition Variables
873
+ // $menu-slide: "transform 500ms ease";
874
+
875
+ // 19. Orbit
876
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
877
+
878
+ // $include-html-orbit-classes: $include-html-classes;
879
+
880
+ // We use these to control the caption styles
881
+ // $orbit-container-bg: none;
882
+ // $orbit-caption-bg: rgba(51,51,51, 0.8);
883
+ // $orbit-caption-font-color: $white;
884
+ // $orbit-caption-font-size: rem-calc(14);
885
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
886
+ // $orbit-caption-padding: rem-calc(10 14);
887
+ // $orbit-caption-height: auto;
888
+
889
+ // We use these to control the left/right nav styles
890
+ // $orbit-nav-bg: transparent;
891
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
892
+ // $orbit-nav-arrow-color: $white;
893
+ // $orbit-nav-arrow-color-hover: $white;
894
+
895
+ // We use these to control the timer styles
896
+ // $orbit-timer-bg: rgba(255,255,255,0.3);
897
+ // $orbit-timer-show-progress-bar: true;
898
+
899
+ // We use these to control the bullet nav styles
900
+ // $orbit-bullet-nav-color: $iron;
901
+ // $orbit-bullet-nav-color-active: $aluminum;
902
+ // $orbit-bullet-radius: rem-calc(9);
903
+
904
+ // We use these to controls the style of slide numbers
905
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
906
+ // $orbit-slide-number-font-color: $white;
907
+ // $orbit-slide-number-padding: rem-calc(5);
908
+
909
+ // Hide controls on small
910
+ // $orbit-nav-hide-for-small: true;
911
+ // $orbit-bullet-hide-for-small: true;
912
+ // $orbit-timer-hide-for-small: true;
913
+
914
+ // Graceful Loading Wrapper and preloader
915
+ // $wrapper-class: "slideshow-wrapper";
916
+ // $preloader-class: "preloader";
917
+
918
+ // 20. Pagination
919
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
920
+
921
+ // $include-pagination-classes: $include-html-classes;
922
+
923
+ // We use these to control the pagination container
924
+ // $pagination-height: rem-calc(24);
925
+ // $pagination-margin: rem-calc(-5);
926
+
927
+ // We use these to set the list-item properties
928
+ // $pagination-li-float: $default-float;
929
+ // $pagination-li-height: rem-calc(24);
930
+ // $pagination-li-font-color: $jet;
931
+ // $pagination-li-font-size: rem-calc(14);
932
+ // $pagination-li-margin: rem-calc(5);
933
+
934
+ // We use these for the pagination anchor links
935
+ // $pagination-link-pad: rem-calc(1 10 1);
936
+ // $pagination-link-font-color: $aluminum;
937
+ // $pagination-link-active-bg: scale-color($white, $lightness: -10%);
938
+
939
+ // We use these for disabled anchor links
940
+ // $pagination-link-unavailable-cursor: default;
941
+ // $pagination-link-unavailable-font-color: $aluminum;
942
+ // $pagination-link-unavailable-bg-active: transparent;
943
+
944
+ // We use these for currently selected anchor links
945
+ // $pagination-link-current-background: $primary-color;
946
+ // $pagination-link-current-font-color: $white;
947
+ // $pagination-link-current-font-weight: $font-weight-bold;
948
+ // $pagination-link-current-cursor: default;
949
+ // $pagination-link-current-active-bg: $primary-color;
950
+
951
+ // 21. Panels
952
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
953
+
954
+ // $include-html-panel-classes: $include-html-classes;
955
+
956
+ // We use these to control the background and border styles
957
+ // $panel-bg: scale-color($white, $lightness: -5%);
958
+ // $panel-border-style: solid;
959
+ // $panel-border-size: 1px;
960
+
961
+ // We use this % to control how much we darken things on hover
962
+ // $panel-function-factor: -11%;
963
+ // $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
964
+
965
+ // We use these to set default inner padding and bottom margin
966
+ // $panel-margin-bottom: rem-calc(20);
967
+ // $panel-padding: rem-calc(20);
968
+
969
+ // We use these to set default font colors
970
+ // $panel-font-color: $oil;
971
+ // $panel-font-color-alt: $white;
972
+
973
+ // $panel-header-adjust: true;
974
+ // $callout-panel-link-color: $primary-color;
975
+
976
+ // 22. Pricing Tables
977
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
978
+
979
+ // $include-html-pricing-classes: $include-html-classes;
980
+
981
+ // We use this to control the border color
982
+ // $price-table-border: solid 1px $gainsboro;
983
+
984
+ // We use this to control the bottom margin of the pricing table
985
+ // $price-table-margin-bottom: rem-calc(20);
986
+
987
+ // We use these to control the title styles
988
+ // $price-title-bg: $oil;
989
+ // $price-title-padding: rem-calc(15 20);
990
+ // $price-title-align: center;
991
+ // $price-title-color: $smoke;
992
+ // $price-title-weight: $font-weight-normal;
993
+ // $price-title-size: rem-calc(16);
994
+ // $price-title-font-family: $body-font-family;
995
+
996
+ // We use these to control the price styles
997
+ // $price-money-bg: $vapor;
998
+ // $price-money-padding: rem-calc(15 20);
999
+ // $price-money-align: center;
1000
+ // $price-money-color: $oil;
1001
+ // $price-money-weight: $font-weight-normal;
1002
+ // $price-money-size: rem-calc(32);
1003
+ // $price-money-font-family: $body-font-family;
1004
+
1005
+ // We use these to control the description styles
1006
+ // $price-bg: $white;
1007
+ // $price-desc-color: $monsoon;
1008
+ // $price-desc-padding: rem-calc(15);
1009
+ // $price-desc-align: center;
1010
+ // $price-desc-font-size: rem-calc(12);
1011
+ // $price-desc-weight: $font-weight-normal;
1012
+ // $price-desc-line-height: 1.4;
1013
+ // $price-desc-bottom-border: dotted 1px $gainsboro;
1014
+
1015
+ // We use these to control the list item styles
1016
+ // $price-item-color: $oil;
1017
+ // $price-item-padding: rem-calc(15);
1018
+ // $price-item-align: center;
1019
+ // $price-item-font-size: rem-calc(14);
1020
+ // $price-item-weight: $font-weight-normal;
1021
+ // $price-item-bottom-border: dotted 1px $gainsboro;
1022
+
1023
+ // We use these to control the CTA area styles
1024
+ // $price-cta-bg: $white;
1025
+ // $price-cta-align: center;
1026
+ // $price-cta-padding: rem-calc(20 20 0);
1027
+
1028
+ // 23. Progress Bar
1029
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1030
+
1031
+ // $include-html-media-classes: $include-html-classes;
1032
+
1033
+ // We use this to set the progress bar height
1034
+ // $progress-bar-height: rem-calc(25);
1035
+ // $progress-bar-color: $vapor ;
1036
+
1037
+ // We use these to control the border styles
1038
+ // $progress-bar-border-color: scale-color($white, $lightness: 20%);
1039
+ // $progress-bar-border-size: 1px;
1040
+ // $progress-bar-border-style: solid;
1041
+ // $progress-bar-border-radius: $global-radius;
1042
+
1043
+ // We use these to control the margin & padding
1044
+ // $progress-bar-pad: rem-calc(2);
1045
+ // $progress-bar-margin-bottom: rem-calc(10);
1046
+
1047
+ // We use these to set the meter colors
1048
+ // $progress-meter-color: $primary-color;
1049
+ // $progress-meter-secondary-color: $secondary-color;
1050
+ // $progress-meter-success-color: $success-color;
1051
+ // $progress-meter-alert-color: $alert-color;
1052
+
1053
+ // 24. Range Slider
1054
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1055
+
1056
+ // $include-html-range-slider-classes: $include-html-classes;
1057
+
1058
+ // These variables define the slider bar styles
1059
+ // $range-slider-bar-width: 100%;
1060
+ // $range-slider-bar-height: rem-calc(16);
1061
+
1062
+ // $range-slider-bar-border-width: 1px;
1063
+ // $range-slider-bar-border-style: solid;
1064
+ // $range-slider-bar-border-color: $gainsboro;
1065
+ // $range-slider-radius: $global-radius;
1066
+ // $range-slider-round: $global-rounded;
1067
+ // $range-slider-bar-bg-color: $ghost;
1068
+
1069
+ // Vertical bar styles
1070
+ // $range-slider-vertical-bar-width: rem-calc(16);
1071
+ // $range-slider-vertical-bar-height: rem-calc(200);
1072
+
1073
+ // These variables define the slider handle styles
1074
+ // $range-slider-handle-width: rem-calc(32);
1075
+ // $range-slider-handle-height: rem-calc(22);
1076
+ // $range-slider-handle-position-top: rem-calc(-5);
1077
+ // $range-slider-handle-bg-color: $primary-color;
1078
+ // $range-slider-handle-border-width: 1px;
1079
+ // $range-slider-handle-border-style: solid;
1080
+ // $range-slider-handle-border-color: none;
1081
+ // $range-slider-handle-radius: $global-radius;
1082
+ // $range-slider-handle-round: $global-rounded;
1083
+ // $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
1084
+ // $range-slider-handle-cursor: pointer;
1085
+
1086
+ // 25. Reveal
1087
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1088
+
1089
+ // $include-html-reveal-classes: $include-html-classes;
1090
+
1091
+ // We use these to control the style of the reveal overlay.
1092
+ // $reveal-overlay-bg: rgba($black, .45);
1093
+ // $reveal-overlay-bg-old: $black;
1094
+
1095
+ // We use these to control the style of the modal itself.
1096
+ // $reveal-modal-bg: $white;
1097
+ // $reveal-position-top: rem-calc(100);
1098
+ // $reveal-default-width: 80%;
1099
+ // $reveal-max-width: $row-width;
1100
+ // $reveal-modal-padding: rem-calc(20);
1101
+ // $reveal-box-shadow: 0 0 10px rgba($black,.4);
1102
+
1103
+ // We use these to style the reveal close button
1104
+ // $reveal-close-font-size: rem-calc(40);
1105
+ // $reveal-close-top: rem-calc(8);
1106
+ // $reveal-close-side: rem-calc(11);
1107
+ // $reveal-close-color: $base;
1108
+ // $reveal-close-weight: $font-weight-bold;
1109
+
1110
+ // We use this to set the default radius used throughout the core.
1111
+ // $reveal-radius: $global-radius;
1112
+ // $reveal-round: $global-rounded;
1113
+
1114
+ // We use these to control the modal border
1115
+ // $reveal-border-style: solid;
1116
+ // $reveal-border-width: 1px;
1117
+ // $reveal-border-color: $steel;
1118
+
1119
+ // $reveal-modal-class: "reveal-modal";
1120
+ // $close-reveal-modal-class: "close-reveal-modal";
1121
+
1122
+ // 26. Side Nav
1123
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1124
+
1125
+ // $include-html-nav-classes: $include-html-classes;
1126
+
1127
+ // We use this to control padding.
1128
+ // $side-nav-padding: rem-calc(14 0);
1129
+
1130
+ // We use these to control list styles.
1131
+ // $side-nav-list-type: none;
1132
+ // $side-nav-list-position: inside;
1133
+ // $side-nav-list-margin: rem-calc(0 0 7 0);
1134
+
1135
+ // We use these to control link styles.
1136
+ // $side-nav-link-color: $primary-color;
1137
+ // $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
1138
+ // $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
1139
+ // $side-nav-link-bg-hover: hsla(0, 0, 0, 0.025);
1140
+ // $side-nav-link-margin: 0;
1141
+ // $side-nav-link-padding: rem-calc(7 14);
1142
+ // $side-nav-font-size: rem-calc(14);
1143
+ // $side-nav-font-weight: $font-weight-normal;
1144
+ // $side-nav-font-weight-active: $side-nav-font-weight;
1145
+ // $side-nav-font-family: $body-font-family;
1146
+ // $side-nav-font-family-active: $side-nav-font-family;
1147
+
1148
+ // We use these to control heading styles.
1149
+ // $side-nav-heading-color: $side-nav-link-color;
1150
+ // $side-nav-heading-font-size: $side-nav-font-size;
1151
+ // $side-nav-heading-font-weight: bold;
1152
+ // $side-nav-heading-text-transform: uppercase;
1153
+
1154
+ // We use these to control border styles
1155
+ // $side-nav-divider-size: 1px;
1156
+ // $side-nav-divider-style: solid;
1157
+ // $side-nav-divider-color: scale-color($white, $lightness: 10%);
1158
+
1159
+ // 27. Split Buttons
1160
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1161
+
1162
+ // $include-html-button-classes: $include-html-classes;
1163
+
1164
+ // We use these to control different shared styles for Split Buttons
1165
+ // $split-button-function-factor: 10%;
1166
+ // $split-button-pip-color: $white;
1167
+ // $split-button-pip-color-alt: $oil;
1168
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
1169
+
1170
+ // We use these to control tiny split buttons
1171
+ // $split-button-padding-tny: $button-pip-tny * 10;
1172
+ // $split-button-span-width-tny: $button-pip-tny * 6;
1173
+ // $split-button-pip-size-tny: $button-pip-tny;
1174
+ // $split-button-pip-top-tny: $button-pip-tny * 2;
1175
+ // $split-button-pip-default-float-tny: rem-calc(-6);
1176
+
1177
+ // We use these to control small split buttons
1178
+ // $split-button-padding-sml: $button-pip-sml * 10;
1179
+ // $split-button-span-width-sml: $button-pip-sml * 6;
1180
+ // $split-button-pip-size-sml: $button-pip-sml;
1181
+ // $split-button-pip-top-sml: $button-pip-sml * 1.5;
1182
+ // $split-button-pip-default-float-sml: rem-calc(-6);
1183
+
1184
+ // We use these to control medium split buttons
1185
+ // $split-button-padding-med: $button-pip-med * 9;
1186
+ // $split-button-span-width-med: $button-pip-med * 5.5;
1187
+ // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
1188
+ // $split-button-pip-top-med: $button-pip-med * 1.5;
1189
+ // $split-button-pip-default-float-med: rem-calc(-6);
1190
+
1191
+ // We use these to control large split buttons
1192
+ // $split-button-padding-lrg: $button-pip-lrg * 8;
1193
+ // $split-button-span-width-lrg: $button-pip-lrg * 5;
1194
+ // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
1195
+ // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
1196
+ // $split-button-pip-default-float-lrg: rem-calc(-6);
1197
+
1198
+ // 28. Sub Nav
1199
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1200
+
1201
+ // $include-html-nav-classes: $include-html-classes;
1202
+
1203
+ // We use these to control margin and padding
1204
+ // $sub-nav-list-margin: rem-calc(-4 0 18);
1205
+ // $sub-nav-list-padding-top: rem-calc(4);
1206
+
1207
+ // We use this to control the definition
1208
+ // $sub-nav-font-family: $body-font-family;
1209
+ // $sub-nav-font-size: rem-calc(14);
1210
+ // $sub-nav-font-color: $aluminum;
1211
+ // $sub-nav-font-weight: $font-weight-normal;
1212
+ // $sub-nav-text-decoration: none;
1213
+ // $sub-nav-padding: rem-calc(3 16);
1214
+ // $sub-nav-border-radius: 3px;
1215
+ // $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
1216
+
1217
+ // We use these to control the active item styles
1218
+ // $sub-nav-active-font-weight: $font-weight-normal;
1219
+ // $sub-nav-active-bg: $primary-color;
1220
+ // $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
1221
+ // $sub-nav-active-color: $white;
1222
+ // $sub-nav-active-padding: $sub-nav-padding;
1223
+ // $sub-nav-active-cursor: default;
1224
+
1225
+ // $sub-nav-item-divider: "";
1226
+ // $sub-nav-item-divider-margin: rem-calc(12);
1227
+
1228
+ // 29. Switch
1229
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1230
+
1231
+ // $include-html-form-classes: $include-html-classes;
1232
+
1233
+ // Controlling border styles and background colors for the switch container
1234
+ // $switch-border-color: scale-color($white, $lightness: -20%);
1235
+ // $switch-border-style: solid;
1236
+ // $switch-border-width: 1px;
1237
+ // $switch-bg: $white;
1238
+
1239
+ // We use these to control the switch heights for our default classes
1240
+ // $switch-height-tny: rem-calc(22);
1241
+ // $switch-height-sml: rem-calc(28);
1242
+ // $switch-height-med: rem-calc(36);
1243
+ // $switch-height-lrg: rem-calc(44);
1244
+ // $switch-bottom-margin: rem-calc(20);
1245
+
1246
+ // We use these to control default font sizes for our classes.
1247
+ // $switch-font-size-tny: 11px;
1248
+ // $switch-font-size-sml: 12px;
1249
+ // $switch-font-size-med: 14px;
1250
+ // $switch-font-size-lrg: 17px;
1251
+ // $switch-label-side-padding: 6px;
1252
+
1253
+ // We use these to style the switch-paddle
1254
+ // $switch-paddle-bg: $white;
1255
+ // $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
1256
+ // $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
1257
+ // $switch-paddle-border-width: 1px;
1258
+ // $switch-paddle-border-style: solid;
1259
+ // $switch-paddle-transition-speed: .1s;
1260
+ // $switch-paddle-transition-ease: ease-out;
1261
+ // $switch-positive-color: scale-color($success-color, $lightness: 94%);
1262
+ // $switch-negative-color: $white-smoke;
1263
+
1264
+ // Outline Style for tabbing through switches
1265
+ // $switch-label-outline: 1px dotted $jumbo;
1266
+
1267
+ // 30. Tables
1268
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1269
+
1270
+ // $include-html-table-classes: $include-html-classes;
1271
+
1272
+ // These control the background color for the table and even rows
1273
+ // $table-bg: $white;
1274
+ // $table-even-row-bg: $snow;
1275
+
1276
+ // These control the table cell border style
1277
+ // $table-border-style: solid;
1278
+ // $table-border-size: 1px;
1279
+ // $table-border-color: $gainsboro;
1280
+
1281
+ // These control the table head styles
1282
+ // $table-head-bg: $white-smoke ;
1283
+ // $table-head-font-size: rem-calc(14);
1284
+ // $table-head-font-color: $jet;
1285
+ // $table-head-font-weight: $font-weight-bold;
1286
+ // $table-head-padding: rem-calc(8 10 10);
1287
+
1288
+ // These control the row padding and font styles
1289
+ // $table-row-padding: rem-calc(9 10);
1290
+ // $table-row-font-size: rem-calc(14);
1291
+ // $table-row-font-color: $jet;
1292
+ // $table-line-height: rem-calc(18);
1293
+
1294
+ // These are for controlling the layout, display and margin of tables
1295
+ // $table-layout: auto;
1296
+ // $table-display: table-cell;
1297
+ // $table-margin-bottom: rem-calc(20);
1298
+
1299
+ // 31. Tabs
1300
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1301
+
1302
+ // $include-html-tabs-classes: $include-html-classes;
1303
+
1304
+ // $tabs-navigation-padding: rem-calc(16);
1305
+ // $tabs-navigation-bg-color: $silver ;
1306
+ // $tabs-navigation-active-bg-color: $white;
1307
+ // $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
1308
+ // $tabs-navigation-font-color: $jet;
1309
+ // $tabs-navigation-active-font-color: $tabs-navigation-font-color;
1310
+ // $tabs-navigation-font-size: rem-calc(16);
1311
+ // $tabs-navigation-font-family: $body-font-family;
1312
+
1313
+ // $tabs-content-margin-bottom: rem-calc(24);
1314
+ // $tabs-content-padding: ($column-gutter/2);
1315
+
1316
+ // $tabs-vertical-navigation-margin-bottom: 1.25rem;
1317
+
1318
+ // 32. Thumbnails
1319
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1320
+
1321
+ // $include-html-media-classes: $include-html-classes;
1322
+
1323
+ // We use these to control border styles
1324
+ // $thumb-border-style: solid;
1325
+ // $thumb-border-width: 4px;
1326
+ // $thumb-border-color: $white;
1327
+ // $thumb-box-shadow: 0 0 0 1px rgba($black,.2);
1328
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1329
+
1330
+ // Radius and transition speed for thumbs
1331
+ // $thumb-radius: $global-radius;
1332
+ // $thumb-transition-speed: 200ms;
1333
+
1334
+ // 33. Tooltips
1335
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1336
+
1337
+ // $include-html-tooltip-classes: $include-html-classes;
1338
+
1339
+ // $has-tip-border-bottom: dotted 1px $iron;
1340
+ // $has-tip-font-weight: $font-weight-bold;
1341
+ // $has-tip-font-color: $oil;
1342
+ // $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
1343
+ // $has-tip-font-color-hover: $primary-color;
1344
+ // $has-tip-cursor-type: help;
1345
+
1346
+ // $tooltip-padding: rem-calc(12);
1347
+ // $tooltip-bg: $oil;
1348
+ // $tooltip-font-size: rem-calc(14);
1349
+ // $tooltip-font-weight: $font-weight-normal;
1350
+ // $tooltip-font-color: $white;
1351
+ // $tooltip-line-height: 1.3;
1352
+ // $tooltip-close-font-size: rem-calc(10);
1353
+ // $tooltip-close-font-weight: $font-weight-normal;
1354
+ // $tooltip-close-font-color: $monsoon;
1355
+ // $tooltip-font-size-sml: rem-calc(14);
1356
+ // $tooltip-radius: $global-radius;
1357
+ // $tooltip-rounded: $global-rounded;
1358
+ // $tooltip-pip-size: 5px;
1359
+ // $tooltip-max-width: 300px;
1360
+
1361
+ // 34. Top Bar
1362
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1363
+
1364
+ // $include-html-top-bar-classes: $include-html-classes;
1365
+
1366
+ // Background color for the top bar
1367
+ // $topbar-bg-color: $oil;
1368
+ // $topbar-bg: $topbar-bg-color;
1369
+
1370
+ // Height and margin
1371
+ // $topbar-height: rem-calc(45);
1372
+ // $topbar-margin-bottom: 0;
1373
+
1374
+ // Controlling the styles for the title in the top bar
1375
+ // $topbar-title-weight: $font-weight-normal;
1376
+ // $topbar-title-font-size: rem-calc(17);
1377
+
1378
+ // Style the top bar dropdown elements
1379
+ // $topbar-dropdown-bg: $oil;
1380
+ // $topbar-dropdown-link-color: $white;
1381
+ // $topbar-dropdown-link-bg: $oil;
1382
+ // $topbar-dropdown-link-bg-hover: $oil;
1383
+ // $topbar-dropdown-link-weight: $font-weight-normal;
1384
+ // $topbar-dropdown-toggle-size: 5px;
1385
+ // $topbar-dropdown-toggle-color: $white;
1386
+ // $topbar-dropdown-toggle-alpha: 0.4;
1387
+
1388
+ // Set the link colors and styles for top-level nav
1389
+ // $topbar-link-color: $white;
1390
+ // $topbar-link-color-hover: $white;
1391
+ // $topbar-link-color-active: $white;
1392
+ // $topbar-link-color-active-hover: $white;
1393
+ // $topbar-link-weight: $font-weight-normal;
1394
+ // $topbar-link-font-size: rem-calc(13);
1395
+ // $topbar-link-hover-lightness: -10%; // Darken by 10%
1396
+ // $topbar-link-bg: $topbar-bg;
1397
+ // $topbar-link-bg-color-hover: $charcoal;
1398
+ // $topbar-link-bg-hover: $oil;
1399
+ // $topbar-link-bg-active: $primary-color;
1400
+ // $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
1401
+ // $topbar-link-font-family: $body-font-family;
1402
+ // $topbar-link-text-transform: none;
1403
+ // $topbar-link-padding: ($topbar-height / 3);
1404
+ // $topbar-back-link-size: $h5-font-size;
1405
+ // $topbar-link-dropdown-padding: 20px;
1406
+
1407
+ // $topbar-button-font-size: 0.75rem;
1408
+ // $topbar-button-top: 7px;
1409
+
1410
+ // $topbar-dropdown-label-color: $monsoon;
1411
+ // $topbar-dropdown-label-text-transform: uppercase;
1412
+ // $topbar-dropdown-label-font-weight: $font-weight-bold;
1413
+ // $topbar-dropdown-label-font-size: rem-calc(10);
1414
+ // $topbar-dropdown-label-bg: $oil;
1415
+
1416
+ // Top menu icon styles
1417
+ // $topbar-menu-link-transform: uppercase;
1418
+ // $topbar-menu-link-font-size: rem-calc(13);
1419
+ // $topbar-menu-link-weight: $font-weight-bold;
1420
+ // $topbar-menu-link-color: $white;
1421
+ // $topbar-menu-icon-color: $white;
1422
+ // $topbar-menu-link-color-toggled: $jumbo;
1423
+ // $topbar-menu-icon-color-toggled: $jumbo;
1424
+
1425
+ // Transitions and breakpoint styles
1426
+ // $topbar-transition-speed: 300ms;
1427
+ // Using rem-calc for the below breakpoint causes issues with top bar
1428
+ // $topbar-breakpoint: #{lower-bound($medium-range)}; // Change to 9999px for always mobile layout
1429
+ // $topbar-media-query: $medium-up;
1430
+
1431
+ // Divider Styles
1432
+ // $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
1433
+ // $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
1434
+
1435
+ // Sticky Class
1436
+ // $topbar-sticky-class: ".sticky";
1437
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1438
+
1439
+ // 36. Visibility Classes
1440
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1441
+
1442
+ // $include-html-visibility-classes: $include-html-classes;
1443
+ // $include-table-visibility-classes: true;
1444
+ // $include-legacy-visibility-classes: true;
1445
+ // $include-accessibility-classes: true;
1446
+
1447
+ @import 'foundation';