middleman-core 3.1.0.beta.3 → 3.1.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (460) hide show
  1. checksums.yaml +4 -4
  2. data/features/asset_hash.feature +135 -0
  3. data/features/asset_host.feature +56 -0
  4. data/features/automatic_image_sizes.feature +16 -0
  5. data/features/cache_buster.feature +42 -0
  6. data/features/coffee-script.feature +22 -0
  7. data/features/compass-sprites.feature +6 -0
  8. data/features/content_for.feature +16 -0
  9. data/features/directory_index.feature +67 -0
  10. data/features/fonts.feature +15 -0
  11. data/features/former_padrino_helpers.feature +27 -0
  12. data/features/gzip.feature +21 -0
  13. data/features/helpers_auto_javascript_include_tag.feature +27 -0
  14. data/features/helpers_auto_stylesheet_link_tag.feature +27 -0
  15. data/features/helpers_form_tag.feature +26 -0
  16. data/features/helpers_link_to.feature +152 -0
  17. data/features/helpers_lorem.feature +6 -0
  18. data/features/helpers_page_classes.feature +17 -0
  19. data/features/helpers_url_for.feature +152 -0
  20. data/features/i18n_builder.feature +148 -0
  21. data/features/i18n_force_locale.feature +13 -0
  22. data/features/i18n_preview.feature +230 -0
  23. data/features/ignore_already_minified.feature +47 -0
  24. data/features/liquid.feature +11 -0
  25. data/features/markdown.feature +13 -0
  26. data/features/markdown_redcarpet.feature +86 -0
  27. data/features/markdown_redcarpet_in_haml.feature +42 -0
  28. data/features/minify_css.feature +127 -0
  29. data/features/minify_javascript.feature +225 -0
  30. data/features/more-clean_build.feature +14 -0
  31. data/features/more-extensionless_text_files.feature +28 -0
  32. data/features/more-frontmatter_page_settings.feature +42 -0
  33. data/features/more-ignore.feature +62 -0
  34. data/features/more-implied_extensions.feature +42 -0
  35. data/features/more-instance_vars.feature +18 -0
  36. data/features/more-sitemap_traversal.feature +73 -0
  37. data/features/more-wildcard_page_helper.feature +10 -0
  38. data/features/nested_layouts.feature +55 -0
  39. data/features/partials.feature +46 -0
  40. data/features/partials_dir.feature +30 -0
  41. data/features/relative_assets.feature +136 -0
  42. data/features/sass-assets-paths.feature +11 -0
  43. data/features/sass_cache_path.feature +22 -0
  44. data/features/sass_partials.feature +54 -0
  45. data/features/scss-support.feature +12 -0
  46. data/features/slim.feature +69 -0
  47. data/features/stylus.feature +55 -0
  48. data/features/twitter-bootstrap-compile.feature +6 -0
  49. data/fixtures/asset-hash-app/config.rb +8 -0
  50. data/fixtures/asset-hash-app/lib/middleware.rb +16 -0
  51. data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
  52. data/fixtures/asset-hash-app/source/favicon.ico +0 -0
  53. data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
  54. data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
  55. data/fixtures/asset-hash-app/source/images/100px.png +0 -0
  56. data/fixtures/asset-hash-app/source/index.html.erb +311 -0
  57. data/fixtures/asset-hash-app/source/javascripts/application.js +8 -0
  58. data/fixtures/asset-hash-app/source/layout.erb +18 -0
  59. data/fixtures/asset-hash-app/source/other.html.erb +2 -0
  60. data/fixtures/asset-hash-app/source/partials.html.erb +1 -0
  61. data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +2 -0
  62. data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +4 -0
  63. data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +4 -0
  64. data/fixtures/asset-hash-app/source/subdir/index.html.erb +308 -0
  65. data/fixtures/asset-hash-host-app/config.rb +6 -0
  66. data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
  67. data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
  68. data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
  69. data/fixtures/asset-hash-host-app/source/index.html.erb +6 -0
  70. data/fixtures/asset-hash-host-app/source/layout.erb +17 -0
  71. data/fixtures/asset-hash-host-app/source/other.html.erb +2 -0
  72. data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +4 -0
  73. data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +6 -0
  74. data/fixtures/asset-host-app/config.rb +0 -0
  75. data/fixtures/asset-host-app/source/.htaccess +1 -0
  76. data/fixtures/asset-host-app/source/asset_host.html.erb +1 -0
  77. data/fixtures/asset-host-app/source/images/blank.gif +0 -0
  78. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +3 -0
  79. data/fixtures/auto-css-app/config.rb +11 -0
  80. data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +1 -0
  81. data/fixtures/auto-css-app/source/auto-css/index.html.erb +1 -0
  82. data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +1 -0
  83. data/fixtures/auto-css-app/source/auto-css.html.erb +1 -0
  84. data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +3 -0
  85. data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
  86. data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  87. data/fixtures/auto-css-app/source/stylesheets/auto-css.css +3 -0
  88. data/fixtures/auto-js-app/config.rb +11 -0
  89. data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +1 -0
  90. data/fixtures/auto-js-app/source/auto-js/index.html.erb +1 -0
  91. data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +1 -0
  92. data/fixtures/auto-js-app/source/auto-js.html.erb +1 -0
  93. data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +1 -0
  94. data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +1 -0
  95. data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  96. data/fixtures/auto-js-app/source/javascripts/auto-js.js +1 -0
  97. data/fixtures/automatic-image-size-app/config.rb +0 -0
  98. data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +1 -0
  99. data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
  100. data/fixtures/cache-buster-app/config.rb +0 -0
  101. data/fixtures/cache-buster-app/source/cache-buster.html.erb +3 -0
  102. data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
  103. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +3 -0
  104. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +1 -0
  105. data/fixtures/clean-dir-app/config.rb +2 -0
  106. data/fixtures/clean-dir-app/source/about.html +1 -0
  107. data/fixtures/coffeescript-app/config.rb +0 -0
  108. data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +3 -0
  109. data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +3 -0
  110. data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +3 -0
  111. data/fixtures/compass-sprites-app/config.rb +0 -0
  112. data/fixtures/compass-sprites-app/source/images/icon/arrow_down.png +0 -0
  113. data/fixtures/compass-sprites-app/source/images/icon/arrow_left.png +0 -0
  114. data/fixtures/compass-sprites-app/source/images/icon/arrow_right.png +0 -0
  115. data/fixtures/compass-sprites-app/source/images/icon/arrow_up.png +0 -0
  116. data/fixtures/compass-sprites-app/source/stylesheets/site.css.scss +3 -0
  117. data/fixtures/content-for-app/config.rb +7 -0
  118. data/fixtures/content-for-app/source/content_for_erb.html.erb +5 -0
  119. data/fixtures/content-for-app/source/content_for_haml.html.haml +4 -0
  120. data/fixtures/content-for-app/source/content_for_slim.html.slim +4 -0
  121. data/fixtures/content-for-app/source/layouts/content_for.erb +4 -0
  122. data/fixtures/default-partials-dir-app/source/_partial.html.erb +1 -0
  123. data/fixtures/default-partials-dir-app/source/index.html.erb +2 -0
  124. data/fixtures/different-engine-layout/source/index.html.str +1 -0
  125. data/fixtures/different-engine-partial/config.rb +0 -0
  126. data/fixtures/different-engine-partial/source/index.html.erb +1 -0
  127. data/fixtures/different-engine-partial/source/layouts/layout.erb +7 -0
  128. data/fixtures/different-engine-partial/source/shared/_footer.str +1 -0
  129. data/fixtures/different-engine-partial/source/shared/_header.erb +1 -0
  130. data/fixtures/fonts-app/config.rb +0 -0
  131. data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
  132. data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
  133. data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +5 -0
  134. data/fixtures/gzip-app/config.rb +1 -0
  135. data/fixtures/gzip-app/source/index.html +0 -0
  136. data/fixtures/gzip-app/source/javascripts/test.js +1 -0
  137. data/fixtures/gzip-app/source/stylesheets/test.css +1 -0
  138. data/fixtures/i18n-alt-root-app/locales/en.yml +4 -0
  139. data/fixtures/i18n-alt-root-app/locales/es.yml +7 -0
  140. data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +1 -0
  141. data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +1 -0
  142. data/fixtures/i18n-alt-root-app/source/layout.erb +1 -0
  143. data/fixtures/i18n-default-app/locales/en.yml +4 -0
  144. data/fixtures/i18n-default-app/locales/es.yml +8 -0
  145. data/fixtures/i18n-default-app/source/localizable/index.html.erb +5 -0
  146. data/fixtures/i18n-force-locale/config.rb +13 -0
  147. data/fixtures/i18n-force-locale/locales/en.yml +3 -0
  148. data/fixtures/i18n-force-locale/locales/es.yml +3 -0
  149. data/fixtures/i18n-force-locale/locales/fr.yml +3 -0
  150. data/fixtures/i18n-force-locale/source/index.haml +2 -0
  151. data/fixtures/i18n-test-app/locales/en.yml +4 -0
  152. data/fixtures/i18n-test-app/locales/es.yml +8 -0
  153. data/fixtures/i18n-test-app/source/CNAME +1 -0
  154. data/fixtures/i18n-test-app/source/layout.erb +8 -0
  155. data/fixtures/i18n-test-app/source/localizable/hello.html.erb +1 -0
  156. data/fixtures/i18n-test-app/source/localizable/index.html.erb +1 -0
  157. data/fixtures/i18n-test-app/source/morning.en.html.erb +1 -0
  158. data/fixtures/i18n-test-app/source/morning.es.html.erb +1 -0
  159. data/fixtures/i18n-test-app/source/password.txt +1 -0
  160. data/fixtures/i18n-test-app/source/stylesheets/site.css +3 -0
  161. data/fixtures/indexable-app/config.rb +4 -0
  162. data/fixtures/indexable-app/source/.htpasswd +1 -0
  163. data/fixtures/liquid-app/config.rb +0 -0
  164. data/fixtures/liquid-app/data/test.yml +4 -0
  165. data/fixtures/liquid-app/data/test2.json +4 -0
  166. data/fixtures/liquid-app/source/_liquid_partial.liquid +1 -0
  167. data/fixtures/liquid-app/source/data2.html.liquid +2 -0
  168. data/fixtures/liquid-app/source/liquid_master.html.liquid +1 -0
  169. data/fixtures/lorem-app/config.rb +1 -0
  170. data/fixtures/lorem-app/source/lorem.html.erb +13 -0
  171. data/fixtures/markdown-app/config.rb +1 -0
  172. data/fixtures/markdown-app/source/autolink.html.markdown +5 -0
  173. data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +7 -0
  174. data/fixtures/markdown-app/source/hard_wrap.html.markdown +2 -0
  175. data/fixtures/markdown-app/source/images/blank.gif +0 -0
  176. data/fixtures/markdown-app/source/index.html.markdown +4 -0
  177. data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +5 -0
  178. data/fixtures/markdown-app/source/smarty_pants.html.markdown +5 -0
  179. data/fixtures/markdown-app/source/space_after_headers.html.markdown +5 -0
  180. data/fixtures/markdown-app/source/strikethrough.html.markdown +5 -0
  181. data/fixtures/markdown-app/source/superscript.html.markdown +5 -0
  182. data/fixtures/markdown-app/source/tables.html.markdown +8 -0
  183. data/fixtures/markdown-app/source/with_toc_data.html.markdown +3 -0
  184. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -0
  185. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +5 -0
  186. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +7 -0
  187. data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +7 -0
  188. data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +8 -0
  189. data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +10 -0
  190. data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +10 -0
  191. data/fixtures/markdown-in-haml-app/config.rb +0 -0
  192. data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
  193. data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +4 -0
  194. data/fixtures/minify-css-app/source/inline-css.html.haml +5 -0
  195. data/fixtures/minify-css-app/source/more-css/site.css +3 -0
  196. data/fixtures/minify-css-app/source/stylesheets/report.css +1 -0
  197. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +5 -0
  198. data/fixtures/minify-js-app/config.rb +0 -0
  199. data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +3 -0
  200. data/fixtures/minify-js-app/source/inline-js.html.haml +28 -0
  201. data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +3 -0
  202. data/fixtures/minify-js-app/source/javascripts/js_test.js +8 -0
  203. data/fixtures/minify-js-app/source/more-js/other.js +8 -0
  204. data/fixtures/more-extensionless-text-files-app/config.rb +1 -0
  205. data/fixtures/more-extensionless-text-files-app/source/CNAME +1 -0
  206. data/fixtures/more-extensionless-text-files-app/source/LICENSE +1 -0
  207. data/fixtures/more-extensionless-text-files-app/source/README +1 -0
  208. data/fixtures/more-extensionless-text-files-app/source/index.html +1 -0
  209. data/fixtures/more-frontmatter-settings-app/config.rb +4 -0
  210. data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +5 -0
  211. data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +5 -0
  212. data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +3 -0
  213. data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +5 -0
  214. data/fixtures/more-ignore-app/source/about.html.erb +1 -0
  215. data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
  216. data/fixtures/more-ignore-app/source/images/pic.png +0 -0
  217. data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
  218. data/fixtures/more-ignore-app/source/index.html.erb +0 -0
  219. data/fixtures/more-ignore-app/source/plain.html +1 -0
  220. data/fixtures/more-ignore-app/source/reports/another.html +0 -0
  221. data/fixtures/more-ignore-app/source/reports/index.html +0 -0
  222. data/fixtures/more-implied-extensions-app/config.rb +0 -0
  223. data/fixtures/more-implied-extensions-app/source/javascripts/app.coffee +1 -0
  224. data/fixtures/more-implied-extensions-app/source/stylesheets/style.scss +3 -0
  225. data/fixtures/more-implied-extensions-app/source/stylesheets/style2.sass +3 -0
  226. data/fixtures/more-implied-extensions-app/source/stylesheets/style3.less +4 -0
  227. data/fixtures/more-implied-extensions-app/source/test.haml +4 -0
  228. data/fixtures/more-implied-extensions-app/source/test2.markdown +3 -0
  229. data/fixtures/more-implied-extensions-app/source/test3.slim +3 -0
  230. data/fixtures/more-implied-extensions-app/source/test4.liquid +1 -0
  231. data/fixtures/more-instance-vars-app/config.rb +0 -0
  232. data/fixtures/more-instance-vars-app/source/_vartial.erb +5 -0
  233. data/fixtures/more-instance-vars-app/source/instance-var-set.html.erb +2 -0
  234. data/fixtures/more-instance-vars-app/source/layout.erb +3 -0
  235. data/fixtures/more-instance-vars-app/source/no-instance-var.html.erb +1 -0
  236. data/fixtures/more-preview-app/config.rb +0 -0
  237. data/fixtures/more-preview-app/source/content.html.erb +1 -0
  238. data/fixtures/more-preview-app/source/layout.erb +1 -0
  239. data/fixtures/more-preview-app/source/stylesheets/_partial.sass +2 -0
  240. data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +2 -0
  241. data/fixtures/more-preview-app/source/stylesheets/main.css.sass +4 -0
  242. data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +4 -0
  243. data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +2 -0
  244. data/fixtures/more-traversal-app/config.rb +7 -0
  245. data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +3 -0
  246. data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +3 -0
  247. data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
  248. data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
  249. data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
  250. data/fixtures/more-traversal-app/source/index.html.erb +0 -0
  251. data/fixtures/more-traversal-app/source/layout.erb +21 -0
  252. data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
  253. data/fixtures/more-traversal-app/source/root.html.erb +0 -0
  254. data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
  255. data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
  256. data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
  257. data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
  258. data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
  259. data/fixtures/nested-layout-app/config.rb +1 -0
  260. data/fixtures/nested-layout-app/source/another.html.markdown +7 -0
  261. data/fixtures/nested-layout-app/source/data-one.html.erb +5 -0
  262. data/fixtures/nested-layout-app/source/data-two.html.erb +5 -0
  263. data/fixtures/nested-layout-app/source/haml-test.html.markdown +7 -0
  264. data/fixtures/nested-layout-app/source/index.html.erb +6 -0
  265. data/fixtures/nested-layout-app/source/layouts/inner.erb +4 -0
  266. data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +3 -0
  267. data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +3 -0
  268. data/fixtures/nested-layout-app/source/layouts/master.erb +3 -0
  269. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +3 -0
  270. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +3 -0
  271. data/fixtures/nested-layout-app/source/layouts/outer.erb +4 -0
  272. data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +3 -0
  273. data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +3 -0
  274. data/fixtures/nested-layout-app/source/slim-test.html.markdown +7 -0
  275. data/fixtures/padrino-helpers-app/config.rb +0 -0
  276. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +6 -0
  277. data/fixtures/page-classes-app/config.rb +4 -0
  278. data/fixtures/page-classes-app/source/page-classes.html.erb +1 -0
  279. data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +1 -0
  280. data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +1 -0
  281. data/fixtures/partials-app/config.rb +0 -0
  282. data/fixtures/partials-app/source/_locals.erb +1 -0
  283. data/fixtures/partials-app/source/_main.erb +1 -0
  284. data/fixtures/partials-app/source/_main.str +1 -0
  285. data/fixtures/partials-app/source/index.html.erb +3 -0
  286. data/fixtures/partials-app/source/locals.html.erb +1 -0
  287. data/fixtures/partials-app/source/second.html.str +3 -0
  288. data/fixtures/partials-app/source/shared/_footer.erb +1 -0
  289. data/fixtures/partials-app/source/shared/_header.erb +1 -0
  290. data/fixtures/partials-app/source/shared/snippet.erb +1 -0
  291. data/fixtures/partials-app/source/sub/_local.erb +1 -0
  292. data/fixtures/partials-app/source/sub/index.html.erb +3 -0
  293. data/fixtures/partials-app/source/using_snippet.html.erb +1 -0
  294. data/fixtures/partials-dir-app/source/index.html.erb +2 -0
  295. data/fixtures/partials-dir-app/source/nested/partials/_partial.html.erb +1 -0
  296. data/fixtures/partials-dir-app/source/partials/_partial.html.erb +1 -0
  297. data/fixtures/passthrough-app/source/.htaccess +1 -0
  298. data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +3 -0
  299. data/fixtures/passthrough-app/source/inline-css.html.haml +4 -0
  300. data/fixtures/passthrough-app/source/inline-js.html.haml +28 -0
  301. data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +3 -0
  302. data/fixtures/passthrough-app/source/javascripts/js_test.js +8 -0
  303. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +1 -0
  304. data/fixtures/relative-app/config.rb +0 -0
  305. data/fixtures/relative-app/source/images/blank.gif +0 -0
  306. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +3 -0
  307. data/fixtures/relative-assets-app/config.rb +1 -0
  308. data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
  309. data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
  310. data/fixtures/relative-assets-app/source/relative_image.html.erb +8 -0
  311. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +3 -0
  312. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +1 -0
  313. data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +1 -0
  314. data/fixtures/sass-assets-path-app/config.rb +4 -0
  315. data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +2 -0
  316. data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +16 -0
  317. data/fixtures/sass-cache-path-custom-app/config.rb +3 -0
  318. data/fixtures/sass-cache-path-custom-app/source/stylesheets/plain.css.sass +4 -0
  319. data/fixtures/sass-cache-path-default-app/config.rb +3 -0
  320. data/fixtures/sass-cache-path-default-app/source/stylesheets/plain.css.sass +4 -0
  321. data/fixtures/scss-app/config.rb +0 -0
  322. data/fixtures/scss-app/source/stylesheets/layout.css.sass +2 -0
  323. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +1 -0
  324. data/fixtures/stylus-preview-app/config.rb +0 -0
  325. data/fixtures/stylus-preview-app/source/content.html.erb +1 -0
  326. data/fixtures/stylus-preview-app/source/layout.erb +1 -0
  327. data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +2 -0
  328. data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +2 -0
  329. data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +4 -0
  330. data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +4 -0
  331. data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +2 -0
  332. data/fixtures/twitter-bootstrap-app/config.rb +0 -0
  333. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.gitignore +36 -0
  334. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/.travis.yml +3 -0
  335. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/LICENSE +176 -0
  336. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/README.md +137 -0
  337. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings-white.png +0 -0
  338. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/img/glyphicons-halflings.png +0 -0
  339. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/.jshintrc +10 -0
  340. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/README.md +112 -0
  341. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-alert.js +90 -0
  342. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-button.js +96 -0
  343. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-carousel.js +169 -0
  344. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-collapse.js +157 -0
  345. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-dropdown.js +100 -0
  346. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-modal.js +218 -0
  347. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-popover.js +98 -0
  348. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-scrollspy.js +151 -0
  349. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tab.js +135 -0
  350. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-tooltip.js +275 -0
  351. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-transition.js +61 -0
  352. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/bootstrap-typeahead.js +285 -0
  353. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/index.html +54 -0
  354. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/phantom.js +63 -0
  355. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/server.js +14 -0
  356. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-alert.js +56 -0
  357. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-button.js +77 -0
  358. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-carousel.js +28 -0
  359. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-collapse.js +54 -0
  360. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-dropdown.js +87 -0
  361. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-modal.js +114 -0
  362. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-phantom.js +21 -0
  363. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-popover.js +93 -0
  364. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-scrollspy.js +31 -0
  365. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tab.js +61 -0
  366. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-tooltip.js +155 -0
  367. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-transition.js +13 -0
  368. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/unit/bootstrap-typeahead.js +148 -0
  369. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/jquery.js +9252 -0
  370. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.css +232 -0
  371. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/js/tests/vendor/qunit.js +1510 -0
  372. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_accordion.less +33 -0
  373. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_alerts.less +58 -0
  374. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_breadcrumbs.less +24 -0
  375. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_button-groups.less +191 -0
  376. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_buttons.less +191 -0
  377. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_carousel.less +121 -0
  378. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_close.less +29 -0
  379. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_code.less +57 -0
  380. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_component-animations.less +20 -0
  381. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_dropdowns.less +143 -0
  382. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_forms.less +583 -0
  383. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_grid.less +5 -0
  384. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_hero-unit.less +22 -0
  385. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_labels-badges.less +55 -0
  386. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_layouts.less +17 -0
  387. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_mixins.less +646 -0
  388. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_modals.less +90 -0
  389. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navbar.less +358 -0
  390. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_navs.less +363 -0
  391. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pager.less +36 -0
  392. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_pagination.less +56 -0
  393. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_popovers.less +49 -0
  394. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_progress-bars.less +117 -0
  395. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_reset.less +131 -0
  396. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-1200px-min.less +26 -0
  397. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-767px-max.less +149 -0
  398. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-768px-979px.less +17 -0
  399. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-navbar.less +153 -0
  400. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_responsive-utilities.less +41 -0
  401. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_scaffolding.less +29 -0
  402. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_sprites.less +191 -0
  403. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tables.less +176 -0
  404. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_thumbnails.less +47 -0
  405. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_tooltip.less +35 -0
  406. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_type.less +232 -0
  407. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less +23 -0
  408. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_variables.less +206 -0
  409. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_wells.less +27 -0
  410. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/bootstrap.less +62 -0
  411. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/responsive.less +48 -0
  412. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.css +52 -0
  413. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/css-tests.html +917 -0
  414. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/forms.html +179 -0
  415. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/tests/navbar.html +108 -0
  416. data/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/package.json +25 -0
  417. data/fixtures/wildcard-directory-index-app/config.rb +2 -0
  418. data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +1 -0
  419. data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +1 -0
  420. data/fixtures/wildcard-directory-index-app/source/index.html.erb +1 -0
  421. data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +2 -0
  422. data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +2 -0
  423. data/lib/middleman-core/cli/build.rb +8 -5
  424. data/lib/middleman-core/extensions.rb +0 -5
  425. data/lib/middleman-core/meta_pages/sitemap_resource.rb +2 -0
  426. data/lib/middleman-core/preview_server.rb +1 -1
  427. data/lib/middleman-core/templates/shared/Gemfile.tt +1 -1
  428. data/lib/middleman-core/util.rb +9 -7
  429. data/lib/middleman-core/version.rb +1 -1
  430. data/lib/middleman-core.rb +1 -0
  431. data/lib/middleman-more/core_extensions/compass.rb +75 -0
  432. data/lib/middleman-more/core_extensions/default_helpers.rb +235 -0
  433. data/lib/middleman-more/core_extensions/i18n.rb +182 -0
  434. data/lib/middleman-more/extensions/asset_hash.rb +114 -0
  435. data/lib/middleman-more/extensions/asset_host.rb +50 -0
  436. data/lib/middleman-more/extensions/automatic_image_sizes/fastimage.rb +287 -0
  437. data/lib/middleman-more/extensions/automatic_image_sizes.rb +42 -0
  438. data/lib/middleman-more/extensions/cache_buster.rb +56 -0
  439. data/lib/middleman-more/extensions/directory_indexes.rb +24 -0
  440. data/lib/middleman-more/extensions/gzip.rb +75 -0
  441. data/lib/middleman-more/extensions/lorem.rb +176 -0
  442. data/lib/middleman-more/extensions/minify_css.rb +77 -0
  443. data/lib/middleman-more/extensions/minify_javascript.rb +83 -0
  444. data/lib/middleman-more/extensions/relative_assets.rb +29 -0
  445. data/lib/middleman-more/templates/smacss/source/_footer.haml +1 -0
  446. data/lib/middleman-more/templates/smacss/source/index.html.haml +1 -0
  447. data/lib/middleman-more/templates/smacss/source/layouts/layout.haml +13 -0
  448. data/lib/middleman-more/templates/smacss/source/stylesheets/base/README.markdown +11 -0
  449. data/lib/middleman-more/templates/smacss/source/stylesheets/base/base.scss +1 -0
  450. data/lib/middleman-more/templates/smacss/source/stylesheets/base/normalize.scss +375 -0
  451. data/lib/middleman-more/templates/smacss/source/stylesheets/layout/README.markdown +9 -0
  452. data/lib/middleman-more/templates/smacss/source/stylesheets/modules/README.markdown +9 -0
  453. data/lib/middleman-more/templates/smacss/source/stylesheets/states/README.markdown +12 -0
  454. data/lib/middleman-more/templates/smacss/source/stylesheets/style.css.scss +12 -0
  455. data/lib/middleman-more/templates/smacss.rb +30 -0
  456. data/lib/middleman-more.rb +102 -0
  457. data/middleman-core.gemspec +4 -1
  458. metadata +885 -7
  459. data/.cane +0 -2
  460. data/.cane-exclusions.yml +0 -5
@@ -0,0 +1,191 @@
1
+ // SPRITES
2
+ // Glyphs and icons for buttons, nav, and more
3
+ // -------------------------------------------
4
+
5
+
6
+ // ICONS
7
+ // -----
8
+
9
+ // All icons receive the styles of the <i> tag with a base class
10
+ // of .i and are then given a unique class to add width, height,
11
+ // and background-position. Your resulting HTML will look like
12
+ // <i class="icon-inbox"></i>.
13
+
14
+ // For the white version of the icons, just add the .icon-white class:
15
+ // <i class="icon-inbox icon-white"></i>
16
+
17
+ [class^="icon-"],
18
+ [class*=" icon-"] {
19
+ display: inline-block;
20
+ width: 14px;
21
+ height: 14px;
22
+ .ie7-restore-right-whitespace();
23
+ line-height: 14px;
24
+ vertical-align: text-top;
25
+ background-image: url("@{iconSpritePath}");
26
+ background-position: 14px 14px;
27
+ background-repeat: no-repeat;
28
+
29
+ }
30
+ .icon-white {
31
+ background-image: url("@{iconWhiteSpritePath}");
32
+ }
33
+
34
+ .icon-glass { background-position: 0 0; }
35
+ .icon-music { background-position: -24px 0; }
36
+ .icon-search { background-position: -48px 0; }
37
+ .icon-envelope { background-position: -72px 0; }
38
+ .icon-heart { background-position: -96px 0; }
39
+ .icon-star { background-position: -120px 0; }
40
+ .icon-star-empty { background-position: -144px 0; }
41
+ .icon-user { background-position: -168px 0; }
42
+ .icon-film { background-position: -192px 0; }
43
+ .icon-th-large { background-position: -216px 0; }
44
+ .icon-th { background-position: -240px 0; }
45
+ .icon-th-list { background-position: -264px 0; }
46
+ .icon-ok { background-position: -288px 0; }
47
+ .icon-remove { background-position: -312px 0; }
48
+ .icon-zoom-in { background-position: -336px 0; }
49
+ .icon-zoom-out { background-position: -360px 0; }
50
+ .icon-off { background-position: -384px 0; }
51
+ .icon-signal { background-position: -408px 0; }
52
+ .icon-cog { background-position: -432px 0; }
53
+ .icon-trash { background-position: -456px 0; }
54
+
55
+ .icon-home { background-position: 0 -24px; }
56
+ .icon-file { background-position: -24px -24px; }
57
+ .icon-time { background-position: -48px -24px; }
58
+ .icon-road { background-position: -72px -24px; }
59
+ .icon-download-alt { background-position: -96px -24px; }
60
+ .icon-download { background-position: -120px -24px; }
61
+ .icon-upload { background-position: -144px -24px; }
62
+ .icon-inbox { background-position: -168px -24px; }
63
+ .icon-play-circle { background-position: -192px -24px; }
64
+ .icon-repeat { background-position: -216px -24px; }
65
+ .icon-refresh { background-position: -240px -24px; }
66
+ .icon-list-alt { background-position: -264px -24px; }
67
+ .icon-lock { background-position: -287px -24px; } // 1px off
68
+ .icon-flag { background-position: -312px -24px; }
69
+ .icon-headphones { background-position: -336px -24px; }
70
+ .icon-volume-off { background-position: -360px -24px; }
71
+ .icon-volume-down { background-position: -384px -24px; }
72
+ .icon-volume-up { background-position: -408px -24px; }
73
+ .icon-qrcode { background-position: -432px -24px; }
74
+ .icon-barcode { background-position: -456px -24px; }
75
+
76
+ .icon-tag { background-position: 0 -48px; }
77
+ .icon-tags { background-position: -25px -48px; } // 1px off
78
+ .icon-book { background-position: -48px -48px; }
79
+ .icon-bookmark { background-position: -72px -48px; }
80
+ .icon-print { background-position: -96px -48px; }
81
+ .icon-camera { background-position: -120px -48px; }
82
+ .icon-font { background-position: -144px -48px; }
83
+ .icon-bold { background-position: -167px -48px; } // 1px off
84
+ .icon-italic { background-position: -192px -48px; }
85
+ .icon-text-height { background-position: -216px -48px; }
86
+ .icon-text-width { background-position: -240px -48px; }
87
+ .icon-align-left { background-position: -264px -48px; }
88
+ .icon-align-center { background-position: -288px -48px; }
89
+ .icon-align-right { background-position: -312px -48px; }
90
+ .icon-align-justify { background-position: -336px -48px; }
91
+ .icon-list { background-position: -360px -48px; }
92
+ .icon-indent-left { background-position: -384px -48px; }
93
+ .icon-indent-right { background-position: -408px -48px; }
94
+ .icon-facetime-video { background-position: -432px -48px; }
95
+ .icon-picture { background-position: -456px -48px; }
96
+
97
+ .icon-pencil { background-position: 0 -72px; }
98
+ .icon-map-marker { background-position: -24px -72px; }
99
+ .icon-adjust { background-position: -48px -72px; }
100
+ .icon-tint { background-position: -72px -72px; }
101
+ .icon-edit { background-position: -96px -72px; }
102
+ .icon-share { background-position: -120px -72px; }
103
+ .icon-check { background-position: -144px -72px; }
104
+ .icon-move { background-position: -168px -72px; }
105
+ .icon-step-backward { background-position: -192px -72px; }
106
+ .icon-fast-backward { background-position: -216px -72px; }
107
+ .icon-backward { background-position: -240px -72px; }
108
+ .icon-play { background-position: -264px -72px; }
109
+ .icon-pause { background-position: -288px -72px; }
110
+ .icon-stop { background-position: -312px -72px; }
111
+ .icon-forward { background-position: -336px -72px; }
112
+ .icon-fast-forward { background-position: -360px -72px; }
113
+ .icon-step-forward { background-position: -384px -72px; }
114
+ .icon-eject { background-position: -408px -72px; }
115
+ .icon-chevron-left { background-position: -432px -72px; }
116
+ .icon-chevron-right { background-position: -456px -72px; }
117
+
118
+ .icon-plus-sign { background-position: 0 -96px; }
119
+ .icon-minus-sign { background-position: -24px -96px; }
120
+ .icon-remove-sign { background-position: -48px -96px; }
121
+ .icon-ok-sign { background-position: -72px -96px; }
122
+ .icon-question-sign { background-position: -96px -96px; }
123
+ .icon-info-sign { background-position: -120px -96px; }
124
+ .icon-screenshot { background-position: -144px -96px; }
125
+ .icon-remove-circle { background-position: -168px -96px; }
126
+ .icon-ok-circle { background-position: -192px -96px; }
127
+ .icon-ban-circle { background-position: -216px -96px; }
128
+ .icon-arrow-left { background-position: -240px -96px; }
129
+ .icon-arrow-right { background-position: -264px -96px; }
130
+ .icon-arrow-up { background-position: -289px -96px; } // 1px off
131
+ .icon-arrow-down { background-position: -312px -96px; }
132
+ .icon-share-alt { background-position: -336px -96px; }
133
+ .icon-resize-full { background-position: -360px -96px; }
134
+ .icon-resize-small { background-position: -384px -96px; }
135
+ .icon-plus { background-position: -408px -96px; }
136
+ .icon-minus { background-position: -433px -96px; }
137
+ .icon-asterisk { background-position: -456px -96px; }
138
+
139
+ .icon-exclamation-sign { background-position: 0 -120px; }
140
+ .icon-gift { background-position: -24px -120px; }
141
+ .icon-leaf { background-position: -48px -120px; }
142
+ .icon-fire { background-position: -72px -120px; }
143
+ .icon-eye-open { background-position: -96px -120px; }
144
+ .icon-eye-close { background-position: -120px -120px; }
145
+ .icon-warning-sign { background-position: -144px -120px; }
146
+ .icon-plane { background-position: -168px -120px; }
147
+ .icon-calendar { background-position: -192px -120px; }
148
+ .icon-random { background-position: -216px -120px; }
149
+ .icon-comment { background-position: -240px -120px; }
150
+ .icon-magnet { background-position: -264px -120px; }
151
+ .icon-chevron-up { background-position: -288px -120px; }
152
+ .icon-chevron-down { background-position: -313px -119px; } // 1px, 1px off
153
+ .icon-retweet { background-position: -336px -120px; }
154
+ .icon-shopping-cart { background-position: -360px -120px; }
155
+ .icon-folder-close { background-position: -384px -120px; }
156
+ .icon-folder-open { background-position: -408px -120px; }
157
+ .icon-resize-vertical { background-position: -432px -119px; } // 1px, 1px off
158
+ .icon-resize-horizontal { background-position: -456px -118px; } // 1px, 2px off
159
+
160
+ .icon-hdd { background-position: 0 -144px; }
161
+ .icon-bullhorn { background-position: -24px -144px; }
162
+ .icon-bell { background-position: -48px -144px; }
163
+ .icon-certificate { background-position: -72px -144px; }
164
+ .icon-thumbs-up { background-position: -96px -144px; }
165
+ .icon-thumbs-down { background-position: -120px -144px; }
166
+ .icon-hand-right { background-position: -144px -144px; }
167
+ .icon-hand-left { background-position: -168px -144px; }
168
+ .icon-hand-up { background-position: -192px -144px; }
169
+ .icon-hand-down { background-position: -216px -144px; }
170
+ .icon-circle-arrow-right { background-position: -240px -144px; }
171
+ .icon-circle-arrow-left { background-position: -264px -144px; }
172
+ .icon-circle-arrow-up { background-position: -288px -144px; }
173
+ .icon-circle-arrow-down { background-position: -312px -144px; }
174
+ .icon-globe { background-position: -336px -144px; }
175
+ .icon-wrench { background-position: -360px -144px; }
176
+ .icon-tasks { background-position: -384px -144px; }
177
+ .icon-filter { background-position: -408px -144px; }
178
+ .icon-briefcase { background-position: -432px -144px; }
179
+ .icon-fullscreen { background-position: -456px -144px; }
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
@@ -0,0 +1,176 @@
1
+ //
2
+ // Tables.less
3
+ // Tables for, you guessed it, tabular data
4
+ // ----------------------------------------
5
+
6
+
7
+ // BASE TABLES
8
+ // -----------------
9
+
10
+ table {
11
+ max-width: 100%;
12
+ background-color: @tableBackground;
13
+ border-collapse: collapse;
14
+ border-spacing: 0;
15
+ }
16
+
17
+ // BASELINE STYLES
18
+ // ---------------
19
+
20
+ .table {
21
+ width: 100%;
22
+ margin-bottom: @baseLineHeight;
23
+ // Cells
24
+ th,
25
+ td {
26
+ padding: 8px;
27
+ line-height: @baseLineHeight;
28
+ text-align: left;
29
+ vertical-align: top;
30
+ border-top: 1px solid @tableBorder;
31
+ }
32
+ th {
33
+ font-weight: bold;
34
+ }
35
+ // Bottom align for column headings
36
+ thead th {
37
+ vertical-align: bottom;
38
+ }
39
+ // Remove top border from thead by default
40
+ caption + thead tr:first-child th,
41
+ caption + thead tr:first-child td,
42
+ colgroup + thead tr:first-child th,
43
+ colgroup + thead tr:first-child td,
44
+ thead:first-child tr:first-child th,
45
+ thead:first-child tr:first-child td {
46
+ border-top: 0;
47
+ }
48
+ // Account for multiple tbody instances
49
+ tbody + tbody {
50
+ border-top: 2px solid @tableBorder;
51
+ }
52
+ }
53
+
54
+
55
+
56
+ // CONDENSED TABLE W/ HALF PADDING
57
+ // -------------------------------
58
+
59
+ .table-condensed {
60
+ th,
61
+ td {
62
+ padding: 4px 5px;
63
+ }
64
+ }
65
+
66
+
67
+ // BORDERED VERSION
68
+ // ----------------
69
+
70
+ .table-bordered {
71
+ border: 1px solid @tableBorder;
72
+ border-collapse: separate; // Done so we can round those corners!
73
+ *border-collapse: collapsed; // IE7 can't round corners anyway
74
+ border-left: 0;
75
+ .border-radius(4px);
76
+ th,
77
+ td {
78
+ border-left: 1px solid @tableBorder;
79
+ }
80
+ // Prevent a double border
81
+ caption + thead tr:first-child th,
82
+ caption + tbody tr:first-child th,
83
+ caption + tbody tr:first-child td,
84
+ colgroup + thead tr:first-child th,
85
+ colgroup + tbody tr:first-child th,
86
+ colgroup + tbody tr:first-child td,
87
+ thead:first-child tr:first-child th,
88
+ tbody:first-child tr:first-child th,
89
+ tbody:first-child tr:first-child td {
90
+ border-top: 0;
91
+ }
92
+ // For first th or td in the first row in the first thead or tbody
93
+ thead:first-child tr:first-child th:first-child,
94
+ tbody:first-child tr:first-child td:first-child {
95
+ -webkit-border-top-left-radius: 4px;
96
+ border-top-left-radius: 4px;
97
+ -moz-border-radius-topleft: 4px;
98
+ }
99
+ thead:first-child tr:first-child th:last-child,
100
+ tbody:first-child tr:first-child td:last-child {
101
+ -webkit-border-top-right-radius: 4px;
102
+ border-top-right-radius: 4px;
103
+ -moz-border-radius-topright: 4px;
104
+ }
105
+ // For first th or td in the first row in the first thead or tbody
106
+ thead:last-child tr:last-child th:first-child,
107
+ tbody:last-child tr:last-child td:first-child {
108
+ .border-radius(0 0 0 4px);
109
+ -webkit-border-bottom-left-radius: 4px;
110
+ border-bottom-left-radius: 4px;
111
+ -moz-border-radius-bottomleft: 4px;
112
+ }
113
+ thead:last-child tr:last-child th:last-child,
114
+ tbody:last-child tr:last-child td:last-child {
115
+ -webkit-border-bottom-right-radius: 4px;
116
+ border-bottom-right-radius: 4px;
117
+ -moz-border-radius-bottomright: 4px;
118
+ }
119
+ }
120
+
121
+
122
+ // ZEBRA-STRIPING
123
+ // --------------
124
+
125
+ // Default zebra-stripe styles (alternating gray and transparent backgrounds)
126
+ .table-striped {
127
+ tbody {
128
+ tr:nth-child(odd) td,
129
+ tr:nth-child(odd) th {
130
+ background-color: @tableBackgroundAccent;
131
+ }
132
+ }
133
+ }
134
+
135
+
136
+ // HOVER EFFECT
137
+ // ------------
138
+ // Placed here since it has to come after the potential zebra striping
139
+ .table {
140
+ tbody tr:hover td,
141
+ tbody tr:hover th {
142
+ background-color: @tableBackgroundHover;
143
+ }
144
+ }
145
+
146
+
147
+ // TABLE CELL SIZING
148
+ // -----------------
149
+
150
+ // Change the columns
151
+ table {
152
+ .span1 { .tableColumns(1); }
153
+ .span2 { .tableColumns(2); }
154
+ .span3 { .tableColumns(3); }
155
+ .span4 { .tableColumns(4); }
156
+ .span5 { .tableColumns(5); }
157
+ .span6 { .tableColumns(6); }
158
+ .span7 { .tableColumns(7); }
159
+ .span8 { .tableColumns(8); }
160
+ .span9 { .tableColumns(9); }
161
+ .span10 { .tableColumns(10); }
162
+ .span11 { .tableColumns(11); }
163
+ .span12 { .tableColumns(12); }
164
+ .span13 { .tableColumns(13); }
165
+ .span14 { .tableColumns(14); }
166
+ .span15 { .tableColumns(15); }
167
+ .span16 { .tableColumns(16); }
168
+ .span17 { .tableColumns(17); }
169
+ .span18 { .tableColumns(18); }
170
+ .span19 { .tableColumns(19); }
171
+ .span20 { .tableColumns(20); }
172
+ .span21 { .tableColumns(21); }
173
+ .span22 { .tableColumns(22); }
174
+ .span23 { .tableColumns(23); }
175
+ .span24 { .tableColumns(24); }
176
+ }
@@ -0,0 +1,47 @@
1
+ // THUMBNAILS
2
+ // ----------
3
+ // Note: `.thumbnails` and `.thumbnails > li` are overriden in responsive files
4
+
5
+ // Make wrapper ul behave like the grid
6
+ .thumbnails {
7
+ margin-left: -@gridGutterWidth;
8
+ list-style: none;
9
+ .clearfix();
10
+ }
11
+ // Fluid rows have no left margin
12
+ .row-fluid .thumbnails {
13
+ margin-left: 0;
14
+ }
15
+
16
+ // Float li to make thumbnails appear in a row
17
+ .thumbnails > li {
18
+ float: left; // Explicity set the float since we don't require .span* classes
19
+ margin-bottom: @baseLineHeight;
20
+ margin-left: @gridGutterWidth;
21
+ }
22
+
23
+ // The actual thumbnail (can be `a` or `div`)
24
+ .thumbnail {
25
+ display: block;
26
+ padding: 4px;
27
+ line-height: 1;
28
+ border: 1px solid #ddd;
29
+ .border-radius(4px);
30
+ .box-shadow(0 1px 1px rgba(0,0,0,.075));
31
+ }
32
+ // Add a hover state for linked versions only
33
+ a.thumbnail:hover {
34
+ border-color: @linkColor;
35
+ .box-shadow(0 1px 4px rgba(0,105,214,.25));
36
+ }
37
+
38
+ // Images and captions
39
+ .thumbnail > img {
40
+ display: block;
41
+ max-width: 100%;
42
+ margin-left: auto;
43
+ margin-right: auto;
44
+ }
45
+ .thumbnail .caption {
46
+ padding: 9px;
47
+ }
@@ -0,0 +1,35 @@
1
+ // TOOLTIP
2
+ // ------=
3
+
4
+ .tooltip {
5
+ position: absolute;
6
+ z-index: @zindexTooltip;
7
+ display: block;
8
+ visibility: visible;
9
+ padding: 5px;
10
+ font-size: 11px;
11
+ .opacity(0);
12
+ &.in { .opacity(80); }
13
+ &.top { margin-top: -2px; }
14
+ &.right { margin-left: 2px; }
15
+ &.bottom { margin-top: 2px; }
16
+ &.left { margin-left: -2px; }
17
+ &.top .tooltip-arrow { #popoverArrow > .top(); }
18
+ &.left .tooltip-arrow { #popoverArrow > .left(); }
19
+ &.bottom .tooltip-arrow { #popoverArrow > .bottom(); }
20
+ &.right .tooltip-arrow { #popoverArrow > .right(); }
21
+ }
22
+ .tooltip-inner {
23
+ max-width: 200px;
24
+ padding: 3px 8px;
25
+ color: @white;
26
+ text-align: center;
27
+ text-decoration: none;
28
+ background-color: @black;
29
+ .border-radius(4px);
30
+ }
31
+ .tooltip-arrow {
32
+ position: absolute;
33
+ width: 0;
34
+ height: 0;
35
+ }
@@ -0,0 +1,232 @@
1
+ // Typography.less
2
+ // Headings, body text, lists, code, and more for a versatile and durable typography system
3
+ // ----------------------------------------------------------------------------------------
4
+
5
+
6
+ // BODY TEXT
7
+ // ---------
8
+
9
+ p {
10
+ margin: 0 0 @baseLineHeight / 2;
11
+ small {
12
+ font-size: @baseFontSize - 2;
13
+ color: @grayLight;
14
+ }
15
+ }
16
+ .lead {
17
+ margin-bottom: @baseLineHeight;
18
+ font-size: 20px;
19
+ font-weight: 200;
20
+ line-height: @baseLineHeight * 1.5;
21
+ }
22
+
23
+ // HEADINGS
24
+ // --------
25
+
26
+ h1, h2, h3, h4, h5, h6 {
27
+ margin: 0;
28
+ font-family: @headingsFontFamily;
29
+ font-weight: @headingsFontWeight;
30
+ color: @headingsColor;
31
+ text-rendering: optimizelegibility; // Fix the character spacing for headings
32
+ small {
33
+ font-weight: normal;
34
+ color: @grayLight;
35
+ }
36
+ }
37
+ h1 {
38
+ font-size: 30px;
39
+ line-height: @baseLineHeight * 2;
40
+ small {
41
+ font-size: 18px;
42
+ }
43
+ }
44
+ h2 {
45
+ font-size: 24px;
46
+ line-height: @baseLineHeight * 2;
47
+ small {
48
+ font-size: 18px;
49
+ }
50
+ }
51
+ h3 {
52
+ font-size: 18px;
53
+ line-height: @baseLineHeight * 1.5;
54
+ small {
55
+ font-size: 14px;
56
+ }
57
+ }
58
+ h4, h5, h6 {
59
+ line-height: @baseLineHeight;
60
+ }
61
+ h4 {
62
+ font-size: 14px;
63
+ small {
64
+ font-size: 12px;
65
+ }
66
+ }
67
+ h5 {
68
+ font-size: 12px;
69
+ }
70
+ h6 {
71
+ font-size: 11px;
72
+ color: @grayLight;
73
+ text-transform: uppercase;
74
+ }
75
+
76
+ // Page header
77
+ .page-header {
78
+ padding-bottom: @baseLineHeight - 1;
79
+ margin: @baseLineHeight 0;
80
+ border-bottom: 1px solid @grayLighter;
81
+ }
82
+ .page-header h1 {
83
+ line-height: 1;
84
+ }
85
+
86
+
87
+
88
+ // LISTS
89
+ // -----
90
+
91
+ // Unordered and Ordered lists
92
+ ul, ol {
93
+ padding: 0;
94
+ margin: 0 0 @baseLineHeight / 2 25px;
95
+ }
96
+ ul ul,
97
+ ul ol,
98
+ ol ol,
99
+ ol ul {
100
+ margin-bottom: 0;
101
+ }
102
+ ul {
103
+ list-style: disc;
104
+ }
105
+ ol {
106
+ list-style: decimal;
107
+ }
108
+ li {
109
+ line-height: @baseLineHeight;
110
+ }
111
+ ul.unstyled,
112
+ ol.unstyled {
113
+ margin-left: 0;
114
+ list-style: none;
115
+ }
116
+
117
+ // Description Lists
118
+ dl {
119
+ margin-bottom: @baseLineHeight;
120
+ }
121
+ dt,
122
+ dd {
123
+ line-height: @baseLineHeight;
124
+ }
125
+ dt {
126
+ font-weight: bold;
127
+ line-height: @baseLineHeight - 1; // fix jank Helvetica Neue font bug
128
+ }
129
+ dd {
130
+ margin-left: @baseLineHeight / 2;
131
+ }
132
+ // Horizontal layout (like forms)
133
+ .dl-horizontal {
134
+ dt {
135
+ float: left;
136
+ width: 120px;
137
+ clear: left;
138
+ text-align: right;
139
+ .text-overflow();
140
+ }
141
+ dd {
142
+ margin-left: 130px;
143
+ }
144
+ }
145
+
146
+ // MISC
147
+ // ----
148
+
149
+ // Horizontal rules
150
+ hr {
151
+ margin: @baseLineHeight 0;
152
+ border: 0;
153
+ border-top: 1px solid @hrBorder;
154
+ border-bottom: 1px solid @white;
155
+ }
156
+
157
+ // Emphasis
158
+ strong {
159
+ font-weight: bold;
160
+ }
161
+ em {
162
+ font-style: italic;
163
+ }
164
+ .muted {
165
+ color: @grayLight;
166
+ }
167
+
168
+ // Abbreviations and acronyms
169
+ abbr[title] {
170
+ cursor: help;
171
+ border-bottom: 1px dotted @grayLight;
172
+ }
173
+ abbr.initialism {
174
+ font-size: 90%;
175
+ text-transform: uppercase;
176
+ }
177
+
178
+ // Blockquotes
179
+ blockquote {
180
+ padding: 0 0 0 15px;
181
+ margin: 0 0 @baseLineHeight;
182
+ border-left: 5px solid @grayLighter;
183
+ p {
184
+ margin-bottom: 0;
185
+ #font > .shorthand(16px,300,@baseLineHeight * 1.25);
186
+ }
187
+ small {
188
+ display: block;
189
+ line-height: @baseLineHeight;
190
+ color: @grayLight;
191
+ &:before {
192
+ content: '\2014 \00A0';
193
+ }
194
+ }
195
+
196
+ // Float right with text-align: right
197
+ &.pull-right {
198
+ float: right;
199
+ padding-right: 15px;
200
+ padding-left: 0;
201
+ border-right: 5px solid @grayLighter;
202
+ border-left: 0;
203
+ p,
204
+ small {
205
+ text-align: right;
206
+ }
207
+ }
208
+ }
209
+
210
+ // Quotes
211
+ q:before,
212
+ q:after,
213
+ blockquote:before,
214
+ blockquote:after {
215
+ content: "";
216
+ }
217
+
218
+ // Addresses
219
+ address {
220
+ display: block;
221
+ margin-bottom: @baseLineHeight;
222
+ font-style: normal;
223
+ line-height: @baseLineHeight;
224
+ }
225
+
226
+ // Misc
227
+ small {
228
+ font-size: 100%;
229
+ }
230
+ cite {
231
+ font-style: normal;
232
+ }
@@ -0,0 +1,23 @@
1
+ // UTILITY CLASSES
2
+ // ---------------
3
+
4
+ // Quick floats
5
+ .pull-right {
6
+ float: right;
7
+ }
8
+ .pull-left {
9
+ float: left;
10
+ }
11
+
12
+ // Toggling content
13
+ .hide {
14
+ display: none;
15
+ }
16
+ .show {
17
+ display: block;
18
+ }
19
+
20
+ // Visibility
21
+ .invisible {
22
+ visibility: hidden;
23
+ }