compass 0.12.2 → 0.13.alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (257) hide show
  1. data/README.markdown +5 -5
  2. data/Rakefile +14 -9
  3. data/VERSION.yml +5 -4
  4. data/features/command_line.feature +8 -50
  5. data/features/step_definitions/command_line_steps.rb +3 -2
  6. data/frameworks/compass/stylesheets/compass/_css3.scss +3 -0
  7. data/frameworks/compass/stylesheets/compass/_support.scss +4 -4
  8. data/frameworks/compass/stylesheets/compass/css3/_animation.scss +121 -0
  9. data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +14 -9
  10. data/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +32 -36
  11. data/frameworks/compass/stylesheets/compass/css3/_background-origin.scss +32 -35
  12. data/frameworks/compass/stylesheets/compass/css3/_background-size.scss +12 -15
  13. data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +27 -48
  14. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +22 -35
  15. data/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss +12 -8
  16. data/frameworks/compass/stylesheets/compass/css3/_box.scss +58 -83
  17. data/frameworks/compass/stylesheets/compass/css3/_columns.scss +113 -71
  18. data/frameworks/compass/stylesheets/compass/css3/_filter.scss +38 -18
  19. data/frameworks/compass/stylesheets/compass/css3/_flexbox.scss +294 -0
  20. data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +13 -22
  21. data/frameworks/compass/stylesheets/compass/css3/_images.scss +45 -48
  22. data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +1 -1
  23. data/frameworks/compass/stylesheets/compass/css3/_regions.scss +12 -8
  24. data/frameworks/compass/stylesheets/compass/css3/_selection.scss +31 -0
  25. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +226 -2
  26. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +21 -26
  27. data/frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss +3 -3
  28. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +8 -8
  29. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +3 -3
  30. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +43 -4
  31. data/frameworks/compass/stylesheets/compass/typography/_units.scss +152 -0
  32. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +180 -102
  33. data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +5 -3
  34. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +6 -3
  35. data/frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss +1 -1
  36. data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +7 -3
  37. data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +2 -2
  38. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +32 -13
  39. data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss +14 -9
  40. data/lib/compass/actions.rb +5 -1
  41. data/lib/compass/commands/project_base.rb +7 -1
  42. data/lib/compass/commands/update_project.rb +2 -3
  43. data/lib/compass/commands/watch_project.rb +11 -113
  44. data/lib/compass/commands.rb +1 -1
  45. data/lib/compass/compiler.rb +6 -0
  46. data/lib/compass/configuration/data.rb +1 -1
  47. data/lib/compass/configuration/helpers.rb +2 -0
  48. data/lib/compass/exec/global_options_parser.rb +1 -1
  49. data/lib/compass/exec/project_options_parser.rb +13 -1
  50. data/lib/compass/logger.rb +2 -0
  51. data/lib/compass/sass_extensions/functions/cross_browser_support.rb +1 -1
  52. data/lib/compass/sass_extensions/functions/env.rb +18 -0
  53. data/lib/compass/sass_extensions/functions/gradient_support.rb +101 -29
  54. data/lib/compass/sass_extensions/functions/image_size.rb +2 -1
  55. data/lib/compass/sass_extensions/functions/math.rb +14 -2
  56. data/lib/compass/sass_extensions/functions/sprites.rb +82 -22
  57. data/lib/compass/sass_extensions/functions/urls.rb +37 -6
  58. data/lib/compass/sass_extensions/functions/utility.rb +10 -0
  59. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +5 -1
  60. data/lib/compass/sass_extensions/sprites/engines.rb +3 -3
  61. data/lib/compass/sass_extensions/sprites/image.rb +7 -2
  62. data/lib/compass/sass_extensions/sprites/image_methods.rb +5 -1
  63. data/lib/compass/sass_extensions/sprites/images.rb +29 -0
  64. data/lib/compass/sass_extensions/sprites/layout/diagonal.rb +42 -0
  65. data/lib/compass/sass_extensions/sprites/layout/horizontal.rb +66 -0
  66. data/lib/compass/sass_extensions/sprites/layout/smart.rb +33 -0
  67. data/lib/compass/sass_extensions/sprites/layout/vertical.rb +68 -0
  68. data/lib/compass/sass_extensions/sprites/layout.rb +39 -0
  69. data/lib/compass/sass_extensions/sprites/layout_methods.rb +9 -115
  70. data/lib/compass/sass_extensions/sprites/sprite_map.rb +5 -1
  71. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +9 -14
  72. data/lib/compass/sass_extensions/sprites.rb +2 -0
  73. data/lib/compass/sprite_importer/content.erb +29 -24
  74. data/lib/compass/sprite_importer.rb +7 -11
  75. data/lib/compass/watcher/compiler.rb +59 -0
  76. data/lib/compass/watcher/project_watcher.rb +111 -0
  77. data/lib/compass/watcher/watch.rb +33 -0
  78. data/lib/compass/watcher.rb +11 -0
  79. data/lib/compass.rb +2 -2
  80. data/test/fixtures/sprites/public/images/numeric/200.png +0 -0
  81. data/test/fixtures/stylesheets/busted_font_urls/config.rb +32 -0
  82. data/test/fixtures/stylesheets/busted_font_urls/css/screen.css +7 -0
  83. data/test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf +0 -0
  84. data/test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf +0 -0
  85. data/test/fixtures/stylesheets/busted_font_urls/sass/screen.sass +11 -0
  86. data/test/fixtures/stylesheets/busted_font_urls/tmp/screen.css +7 -0
  87. data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +33 -0
  88. data/test/fixtures/stylesheets/compass/css/animation.css +33 -0
  89. data/test/fixtures/stylesheets/compass/css/background-clip.css +5 -0
  90. data/test/fixtures/stylesheets/compass/css/background-origin.css +15 -0
  91. data/test/fixtures/stylesheets/compass/css/background-size.css +24 -0
  92. data/test/fixtures/stylesheets/compass/css/columns.css +32 -61
  93. data/test/fixtures/stylesheets/compass/css/flexbox.css +121 -0
  94. data/test/fixtures/stylesheets/compass/css/gradients.css +65 -37
  95. data/test/fixtures/stylesheets/compass/css/grid_background.css +10 -17
  96. data/test/fixtures/stylesheets/compass/css/hyphenation.css +4 -2
  97. data/test/fixtures/stylesheets/compass/css/lists.css +5 -5
  98. data/test/fixtures/stylesheets/compass/css/pie.css +0 -3
  99. data/test/fixtures/stylesheets/compass/css/regions.css +4 -2
  100. data/test/fixtures/stylesheets/compass/css/selection.css +13 -0
  101. data/test/fixtures/stylesheets/compass/css/sprites.css +251 -250
  102. data/test/fixtures/stylesheets/compass/css/text_shadow.css +6 -6
  103. data/test/fixtures/stylesheets/compass/css/transition.css +6 -0
  104. data/test/fixtures/stylesheets/compass/css/units.css +30 -0
  105. data/test/fixtures/stylesheets/compass/css/user-interface.css +22 -1
  106. data/test/fixtures/stylesheets/compass/css/utilities.css +15 -0
  107. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +196 -27
  108. data/test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png +0 -0
  109. data/test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss +19 -0
  110. data/test/fixtures/stylesheets/compass/sass/animation.scss +13 -0
  111. data/test/fixtures/stylesheets/compass/sass/background-clip.scss +4 -2
  112. data/test/fixtures/stylesheets/compass/sass/background-origin.scss +10 -0
  113. data/test/fixtures/stylesheets/compass/sass/background-size.scss +12 -0
  114. data/test/fixtures/stylesheets/compass/sass/columns.scss +10 -9
  115. data/test/fixtures/stylesheets/compass/sass/flexbox.scss +44 -0
  116. data/test/fixtures/stylesheets/compass/sass/gradients.sass +32 -3
  117. data/test/fixtures/stylesheets/compass/sass/selection.scss +13 -0
  118. data/test/fixtures/stylesheets/compass/sass/transition.scss +1 -1
  119. data/test/fixtures/stylesheets/compass/sass/units.scss +45 -0
  120. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +13 -1
  121. data/test/fixtures/stylesheets/compass/sass/utilities.scss +10 -0
  122. data/test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss +208 -7
  123. data/test/fixtures/stylesheets/envtest/css/env.css +8 -0
  124. data/test/fixtures/stylesheets/envtest/sass/env.scss +16 -0
  125. data/test/fixtures/stylesheets/envtest/tmp/env.css +4 -4
  126. data/test/fixtures/stylesheets/valid/css/simple.css +4 -0
  127. data/test/helpers/diff.rb +1 -1
  128. data/test/integrations/compass_test.rb +23 -14
  129. data/test/integrations/sprites_test.rb +305 -63
  130. data/test/test_helper.rb +4 -13
  131. data/test/units/command_line_test.rb +0 -2
  132. data/test/units/compass_module_test.rb +1 -1
  133. data/test/units/configuration_test.rb +12 -0
  134. data/test/units/regressions_test.rb +8 -8
  135. data/test/units/sass_extensions_test.rb +13 -11
  136. data/test/units/sass_extenstions/gradients_test.rb +33 -0
  137. data/test/units/sprites/image_test.rb +5 -0
  138. data/test/units/sprites/images_test.rb +46 -0
  139. data/test/units/sprites/layout_test.rb +29 -4
  140. data/test/units/watcher/compiler_test.rb +39 -0
  141. data/test/units/watcher/project_watcher_test.rb +73 -0
  142. data/test/units/watcher/watch_test.rb +42 -0
  143. metadata +137 -241
  144. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  145. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  146. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  147. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  148. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  149. data/frameworks/blueprint/stylesheets/_blueprint.scss +0 -37
  150. data/frameworks/blueprint/stylesheets/blueprint/_buttons.scss +0 -101
  151. data/frameworks/blueprint/stylesheets/blueprint/_colors.scss +0 -36
  152. data/frameworks/blueprint/stylesheets/blueprint/_debug.scss +0 -28
  153. data/frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss +0 -88
  154. data/frameworks/blueprint/stylesheets/blueprint/_form.scss +0 -66
  155. data/frameworks/blueprint/stylesheets/blueprint/_grid.scss +0 -258
  156. data/frameworks/blueprint/stylesheets/blueprint/_ie.scss +0 -111
  157. data/frameworks/blueprint/stylesheets/blueprint/_interaction.scss +0 -66
  158. data/frameworks/blueprint/stylesheets/blueprint/_link-icons.scss +0 -37
  159. data/frameworks/blueprint/stylesheets/blueprint/_liquid.scss +0 -152
  160. data/frameworks/blueprint/stylesheets/blueprint/_print.scss +0 -86
  161. data/frameworks/blueprint/stylesheets/blueprint/_reset.scss +0 -3
  162. data/frameworks/blueprint/stylesheets/blueprint/_rtl.scss +0 -121
  163. data/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +0 -52
  164. data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +0 -90
  165. data/frameworks/blueprint/stylesheets/blueprint/_utilities.scss +0 -37
  166. data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +0 -83
  167. data/frameworks/blueprint/templates/basic/grid.png +0 -0
  168. data/frameworks/blueprint/templates/basic/ie.sass +0 -4
  169. data/frameworks/blueprint/templates/basic/manifest.rb +0 -30
  170. data/frameworks/blueprint/templates/basic/partials/_base.sass +0 -10
  171. data/frameworks/blueprint/templates/basic/print.sass +0 -4
  172. data/frameworks/blueprint/templates/basic/screen.sass +0 -12
  173. data/frameworks/blueprint/templates/buttons/buttons/cross.png +0 -0
  174. data/frameworks/blueprint/templates/buttons/buttons/key.png +0 -0
  175. data/frameworks/blueprint/templates/buttons/buttons/tick.png +0 -0
  176. data/frameworks/blueprint/templates/buttons/buttons.sass +0 -49
  177. data/frameworks/blueprint/templates/buttons/manifest.rb +0 -17
  178. data/frameworks/blueprint/templates/link_icons/link_icons/doc.png +0 -0
  179. data/frameworks/blueprint/templates/link_icons/link_icons/email.png +0 -0
  180. data/frameworks/blueprint/templates/link_icons/link_icons/external.png +0 -0
  181. data/frameworks/blueprint/templates/link_icons/link_icons/feed.png +0 -0
  182. data/frameworks/blueprint/templates/link_icons/link_icons/im.png +0 -0
  183. data/frameworks/blueprint/templates/link_icons/link_icons/pdf.png +0 -0
  184. data/frameworks/blueprint/templates/link_icons/link_icons/visited.png +0 -0
  185. data/frameworks/blueprint/templates/link_icons/link_icons/xls.png +0 -0
  186. data/frameworks/blueprint/templates/link_icons/link_icons.sass +0 -13
  187. data/frameworks/blueprint/templates/link_icons/manifest.rb +0 -23
  188. data/frameworks/blueprint/templates/project/grid.png +0 -0
  189. data/frameworks/blueprint/templates/project/ie.sass +0 -16
  190. data/frameworks/blueprint/templates/project/manifest.rb +0 -30
  191. data/frameworks/blueprint/templates/project/partials/_base.sass +0 -11
  192. data/frameworks/blueprint/templates/project/print.sass +0 -8
  193. data/frameworks/blueprint/templates/project/screen.sass +0 -46
  194. data/frameworks/blueprint/templates/semantic/grid.png +0 -0
  195. data/frameworks/blueprint/templates/semantic/ie.sass +0 -16
  196. data/frameworks/blueprint/templates/semantic/manifest.rb +0 -33
  197. data/frameworks/blueprint/templates/semantic/partials/_base.sass +0 -10
  198. data/frameworks/blueprint/templates/semantic/partials/_form.sass +0 -6
  199. data/frameworks/blueprint/templates/semantic/partials/_page.sass +0 -17
  200. data/frameworks/blueprint/templates/semantic/partials/_two_col.sass +0 -38
  201. data/frameworks/blueprint/templates/semantic/print.sass +0 -5
  202. data/frameworks/blueprint/templates/semantic/screen.sass +0 -14
  203. data/lib/compass/commands/generate_grid_background.rb +0 -96
  204. data/lib/compass/grid_builder.rb +0 -102
  205. data/test/fixtures/stylesheets/blueprint/config.rb +0 -14
  206. data/test/fixtures/stylesheets/blueprint/css/ie.css +0 -76
  207. data/test/fixtures/stylesheets/blueprint/css/print.css +0 -56
  208. data/test/fixtures/stylesheets/blueprint/css/screen.css +0 -815
  209. data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +0 -56
  210. data/test/fixtures/stylesheets/blueprint/css/single-imports/colors.css +0 -80
  211. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +0 -11
  212. data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +0 -30
  213. data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +0 -42
  214. data/test/fixtures/stylesheets/blueprint/css/single-imports/grid.css +0 -435
  215. data/test/fixtures/stylesheets/blueprint/css/single-imports/ie.css +0 -76
  216. data/test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css +0 -46
  217. data/test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css +0 -40
  218. data/test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css +0 -651
  219. data/test/fixtures/stylesheets/blueprint/css/single-imports/print.css +0 -60
  220. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +0 -69
  221. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +0 -42
  222. data/test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css +0 -437
  223. data/test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css +0 -45
  224. data/test/fixtures/stylesheets/blueprint/css/single-imports/typography.css +0 -146
  225. data/test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css +0 -35
  226. data/test/fixtures/stylesheets/blueprint/images/grid.png +0 -0
  227. data/test/fixtures/stylesheets/blueprint/images/link_icons/doc.png +0 -0
  228. data/test/fixtures/stylesheets/blueprint/images/link_icons/email.png +0 -0
  229. data/test/fixtures/stylesheets/blueprint/images/link_icons/external.png +0 -0
  230. data/test/fixtures/stylesheets/blueprint/images/link_icons/feed.png +0 -0
  231. data/test/fixtures/stylesheets/blueprint/images/link_icons/im.png +0 -0
  232. data/test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png +0 -0
  233. data/test/fixtures/stylesheets/blueprint/images/link_icons/visited.png +0 -0
  234. data/test/fixtures/stylesheets/blueprint/images/link_icons/xls.png +0 -0
  235. data/test/fixtures/stylesheets/blueprint/sass/ie.sass +0 -3
  236. data/test/fixtures/stylesheets/blueprint/sass/print.sass +0 -3
  237. data/test/fixtures/stylesheets/blueprint/sass/screen.sass +0 -18
  238. data/test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss +0 -4
  239. data/test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss +0 -34
  240. data/test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss +0 -3
  241. data/test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss +0 -3
  242. data/test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss +0 -5
  243. data/test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss +0 -3
  244. data/test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss +0 -3
  245. data/test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss +0 -3
  246. data/test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss +0 -13
  247. data/test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss +0 -3
  248. data/test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss +0 -5
  249. data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss +0 -5
  250. data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss +0 -1
  251. data/test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss +0 -3
  252. data/test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss +0 -5
  253. data/test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss +0 -3
  254. data/test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss +0 -3
  255. data/test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png +0 -0
  256. data/test/units/compass_png_test.rb +0 -46
  257. /data/{examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf → test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf} +0 -0
@@ -0,0 +1,33 @@
1
+ @-moz-keyframes test {
2
+ 0%, 100% {
3
+ opacity: 1; }
4
+
5
+ 50% {
6
+ opacity: 0; } }
7
+
8
+ @-webkit-keyframes test {
9
+ 0%, 100% {
10
+ opacity: 1; }
11
+
12
+ 50% {
13
+ opacity: 0; } }
14
+
15
+ @-o-keyframes test {
16
+ 0%, 100% {
17
+ opacity: 1; }
18
+
19
+ 50% {
20
+ opacity: 0; } }
21
+
22
+ @keyframes test {
23
+ 0%, 100% {
24
+ opacity: 1; }
25
+
26
+ 50% {
27
+ opacity: 0; } }
28
+
29
+ .animation {
30
+ -webkit-animation: test;
31
+ -moz-animation: test;
32
+ -o-animation: test;
33
+ animation: test; }
@@ -0,0 +1,33 @@
1
+ @-moz-keyframes test {
2
+ 0%, 100% {
3
+ background-color: red; }
4
+
5
+ 50% {
6
+ background-color: blue; } }
7
+
8
+ @-webkit-keyframes test {
9
+ 0%, 100% {
10
+ background-color: red; }
11
+
12
+ 50% {
13
+ background-color: blue; } }
14
+
15
+ @-o-keyframes test {
16
+ 0%, 100% {
17
+ background-color: red; }
18
+
19
+ 50% {
20
+ background-color: blue; } }
21
+
22
+ @keyframes test {
23
+ 0%, 100% {
24
+ background-color: red; }
25
+
26
+ 50% {
27
+ background-color: blue; } }
28
+
29
+ .animation {
30
+ -webkit-animation: test;
31
+ -moz-animation: test;
32
+ -o-animation: test;
33
+ animation: test; }
@@ -3,6 +3,11 @@
3
3
  -moz-background-clip: border;
4
4
  background-clip: border-box; }
5
5
 
6
+ .background-clip-multiple {
7
+ -webkit-background-clip: border, padding, content;
8
+ -moz-background-clip: border, padding, content;
9
+ background-clip: border-box, padding-box, content-box; }
10
+
6
11
  .background-clip-khtml {
7
12
  -webkit-background-clip: border;
8
13
  -moz-background-clip: border;
@@ -0,0 +1,15 @@
1
+ .background-origin {
2
+ -webkit-background-origin: border;
3
+ -moz-background-origin: border;
4
+ background-origin: border-box; }
5
+
6
+ .background-origin-multiple {
7
+ -webkit-background-origin: border, padding, content;
8
+ -moz-background-origin: border, padding, content;
9
+ background-origin: border-box, padding-box, content-box; }
10
+
11
+ .background-origin-khtml {
12
+ -webkit-background-origin: border;
13
+ -moz-background-origin: border;
14
+ -khtml-background-origin: border-box;
15
+ background-origin: border-box; }
@@ -0,0 +1,24 @@
1
+ .background-size-default {
2
+ -webkit-background-size: 100% auto;
3
+ -moz-background-size: 100% auto;
4
+ -o-background-size: 100% auto;
5
+ background-size: 100% auto; }
6
+
7
+ .background-size-single {
8
+ -webkit-background-size: 50% 25%;
9
+ -moz-background-size: 50% 25%;
10
+ -o-background-size: 50% 25%;
11
+ background-size: 50% 25%; }
12
+
13
+ .background-size-multiple {
14
+ -webkit-background-size: 4em 3em, 100% auto, 50%;
15
+ -moz-background-size: 4em 3em, 100% auto, 50%;
16
+ -o-background-size: 4em 3em, 100% auto, 50%;
17
+ background-size: 4em 3em, 100% auto, 50%; }
18
+
19
+ .background-size-khtml {
20
+ -webkit-background-size: 100% auto;
21
+ -khtml-background-size: 100% auto;
22
+ -moz-background-size: 100% auto;
23
+ -o-background-size: 100% auto;
24
+ background-size: 100% auto; }
@@ -1,154 +1,125 @@
1
1
  .columns {
2
2
  -webkit-columns: 20em 5;
3
3
  -moz-columns: 20em 5;
4
- -ms-columns: 20em 5;
5
- -o-columns: 20em 5;
6
4
  columns: 20em 5; }
7
5
 
8
6
  .column-count {
9
7
  -webkit-column-count: 5;
10
8
  -moz-column-count: 5;
11
- -ms-column-count: 5;
12
- -o-column-count: 5;
13
9
  column-count: 5; }
14
10
 
15
11
  .column-gap {
16
12
  -webkit-column-gap: 10px;
17
13
  -moz-column-gap: 10px;
18
- -ms-column-gap: 10px;
19
- -o-column-gap: 10px;
20
14
  column-gap: 10px; }
21
15
 
22
16
  .column-width {
23
17
  -webkit-column-width: 90px;
24
18
  -moz-column-width: 90px;
25
- -ms-column-width: 90px;
26
- -o-column-width: 90px;
27
19
  column-width: 90px; }
28
20
 
21
+ .column-span {
22
+ -webkit-column-span: all;
23
+ -moz-column-span: all;
24
+ column-span: all; }
25
+
29
26
  .column-rule-width {
30
- -webkit-column-rule-width: 1px;
31
- -moz-column-rule-width: 1px;
32
- -ms-column-rule-width: 1px;
33
- -o-column-rule-width: 1px;
34
- column-rule-width: 1px; }
27
+ -webkit-rule-width: 1px;
28
+ -moz-rule-width: 1px;
29
+ rule-width: 1px; }
35
30
 
36
31
  .column-rule-style {
37
- -webkit-column-rule-style: dotted;
38
- -moz-column-rule-style: dotted;
39
- -ms-column-rule-style: dotted;
40
- -o-column-rule-style: dotted;
41
- column-rule-style: dotted; }
32
+ -webkit-rule-style: dotted;
33
+ -moz-rule-style: dotted;
34
+ rule-style: dotted; }
42
35
 
43
36
  .column-rule-color {
44
- -webkit-column-rule-color: blue;
45
- -moz-column-rule-color: blue;
46
- -ms-column-rule-color: blue;
47
- -o-column-rule-color: blue;
48
- column-rule-color: blue; }
37
+ -webkit-rule-color: blue;
38
+ -moz-rule-color: blue;
39
+ rule-color: blue; }
49
40
 
50
41
  .column-rule {
51
42
  -webkit-column-rule: 1px solid blue;
52
43
  -moz-column-rule: 1px solid blue;
53
- -ms-column-rule: 1px solid blue;
54
- -o-column-rule: 1px solid blue;
55
44
  column-rule: 1px solid blue; }
56
45
 
57
46
  .column-rule-spaced {
58
47
  -webkit-column-rule: 1px solid blue;
59
48
  -moz-column-rule: 1px solid blue;
60
- -ms-column-rule: 1px solid blue;
61
- -o-column-rule: 1px solid blue;
62
49
  column-rule: 1px solid blue; }
63
50
 
64
51
  .column-break-before {
65
52
  -webkit-column-break-before: always;
66
- column-break-before: always; }
53
+ break-before: always; }
67
54
 
68
55
  .column-break-after {
69
56
  -webkit-column-break-after: always;
70
- column-break-after: always; }
57
+ break-after: always; }
71
58
 
72
59
  .column-break-inside {
73
60
  -webkit-column-break-inside: auto;
74
- column-break-inside: auto; }
61
+ break-inside: auto; }
75
62
 
76
63
  .column-count {
77
64
  -webkit-column-count: 5;
78
65
  -moz-column-count: 5;
79
- -ms-column-count: 5;
80
- -o-column-count: 5;
81
66
  column-count: 5; }
82
67
 
83
68
  .column-gap {
84
69
  -webkit-column-gap: 10px;
85
70
  -moz-column-gap: 10px;
86
- -ms-column-gap: 10px;
87
- -o-column-gap: 10px;
88
71
  column-gap: 10px; }
89
72
 
90
73
  .column-width {
91
74
  -webkit-column-width: 90px;
92
75
  -moz-column-width: 90px;
93
- -ms-column-width: 90px;
94
- -o-column-width: 90px;
95
76
  column-width: 90px; }
96
77
 
97
78
  .column-rule-width {
98
- -webkit-column-rule-width: 1px;
99
- -moz-column-rule-width: 1px;
100
- -ms-column-rule-width: 1px;
101
- -o-column-rule-width: 1px;
102
- column-rule-width: 1px; }
79
+ -webkit-rule-width: 1px;
80
+ -moz-rule-width: 1px;
81
+ rule-width: 1px; }
103
82
 
104
83
  .column-rule-style {
105
- -webkit-column-rule-style: dotted;
106
- -moz-column-rule-style: dotted;
107
- -ms-column-rule-style: dotted;
108
- -o-column-rule-style: dotted;
109
- column-rule-style: dotted; }
84
+ -webkit-rule-style: dotted;
85
+ -moz-rule-style: dotted;
86
+ rule-style: dotted; }
110
87
 
111
88
  .column-rule-color {
112
- -webkit-column-rule-color: blue;
113
- -moz-column-rule-color: blue;
114
- -ms-column-rule-color: blue;
115
- -o-column-rule-color: blue;
116
- column-rule-color: blue; }
89
+ -webkit-rule-color: blue;
90
+ -moz-rule-color: blue;
91
+ rule-color: blue; }
117
92
 
118
93
  .column-rule {
119
94
  -webkit-column-rule: 1px solid blue;
120
95
  -moz-column-rule: 1px solid blue;
121
- -ms-column-rule: 1px solid blue;
122
- -o-column-rule: 1px solid blue;
123
96
  column-rule: 1px solid blue; }
124
97
 
125
98
  .column-rule-spaced {
126
99
  -webkit-column-rule: 1px solid blue;
127
100
  -moz-column-rule: 1px solid blue;
128
- -ms-column-rule: 1px solid blue;
129
- -o-column-rule: 1px solid blue;
130
101
  column-rule: 1px solid blue; }
131
102
 
132
103
  .column-break-before {
133
104
  -webkit-column-break-before: always;
134
- column-break-before: always; }
105
+ break-before: always; }
135
106
 
136
107
  .column-break-after {
137
108
  -webkit-column-break-after: always;
138
- column-break-after: always; }
109
+ break-after: always; }
139
110
 
140
111
  .column-break-inside {
141
112
  -webkit-column-break-inside: auto;
142
- column-break-inside: auto; }
113
+ break-inside: auto; }
143
114
 
144
115
  .column-break-before-shortcut {
145
116
  -webkit-column-break-before: always;
146
- column-break-before: always; }
117
+ break-before: always; }
147
118
 
148
119
  .column-break-after-shortcut {
149
120
  -webkit-column-break-after: always;
150
- column-break-after: always; }
121
+ break-after: always; }
151
122
 
152
123
  .column-break-inside-shortcut {
153
124
  -webkit-column-break-inside: auto;
154
- column-break-inside: auto; }
125
+ break-inside: auto; }
@@ -0,0 +1,121 @@
1
+ .flex {
2
+ display: -webkit-flexbox;
3
+ display: -ms-flexbox;
4
+ display: -webkit-flex;
5
+ display: flex;
6
+ -webkit-flex-flow: column nowrap;
7
+ -ms-flex-flow: column nowrap;
8
+ flex-flow: column nowrap;
9
+ -webkit-flex-pack: justify;
10
+ -ms-flex-pack: justify;
11
+ -webkit-justify-content: space-between;
12
+ justify-content: space-between;
13
+ -webkit-flex-line-pack: center;
14
+ -ms-flex-line-pack: center;
15
+ -webkit-align-content: center;
16
+ align-content: center;
17
+ -webkit-flex-align: end;
18
+ -ms-flex-align: end;
19
+ -webkit-align-items: flex-end;
20
+ align-items: flex-end; }
21
+
22
+ .flex-item {
23
+ -webkit-flex: 1 1 auto;
24
+ -ms-flex: 1 1 auto;
25
+ flex: 1 1 auto;
26
+ -webkit-flex-item-align: start;
27
+ -ms-flex-item-align: start;
28
+ -webkit-align-self: flex-start;
29
+ align-self: flex-start;
30
+ -webkit-flex-order: 2;
31
+ -ms-flex-order: 2;
32
+ -webkit-order: 2;
33
+ order: 2; }
34
+
35
+ .flex-legacy {
36
+ display: -webkit-box;
37
+ display: -moz-box;
38
+ display: -webkit-flexbox;
39
+ display: -ms-flexbox;
40
+ display: -webkit-flex;
41
+ display: flex;
42
+ -webkit-box-orient: horizontal;
43
+ -moz-box-orient: horizontal;
44
+ -webkit-box-direction: normal;
45
+ -moz-box-direction: normal;
46
+ -webkit-box-lines: single;
47
+ -moz-box-lines: single;
48
+ -webkit-flex-flow: row nowrap;
49
+ -ms-flex-flow: row nowrap;
50
+ flex-flow: row nowrap;
51
+ -webkit-box-pack: end;
52
+ -moz-box-pack: end;
53
+ -webkit-flex-pack: end;
54
+ -ms-flex-pack: end;
55
+ -webkit-justify-content: flex-end;
56
+ justify-content: flex-end;
57
+ -webkit-box-align: start;
58
+ -moz-box-align: start;
59
+ -webkit-flex-line-pack: start;
60
+ -ms-flex-line-pack: start;
61
+ -webkit-align-content: flex-start;
62
+ align-content: flex-start;
63
+ -webkit-flex-align: baseline;
64
+ -ms-flex-align: baseline;
65
+ -webkit-align-items: baseline;
66
+ align-items: baseline; }
67
+
68
+ .flex-item-legacy {
69
+ -webkit-box-flex: 2;
70
+ -moz-box-flex: 2;
71
+ -webkit-flex: 2 1 20em;
72
+ -ms-flex: 2 1 20em;
73
+ flex: 2 1 20em;
74
+ -webkit-flex-item-align: stretch;
75
+ -ms-flex-item-align: stretch;
76
+ -webkit-align-self: stretch;
77
+ align-self: stretch;
78
+ -webkit-box-ordinal-group: 4;
79
+ -moz-box-ordinal-group: 4;
80
+ -webkit-flex-order: 3;
81
+ -ms-flex-order: 3;
82
+ -webkit-order: 3;
83
+ order: 3; }
84
+
85
+ .flex-legacy {
86
+ display: -webkit-flexbox;
87
+ display: -ms-flexbox;
88
+ display: -webkit-flex;
89
+ -webkit-flex-flow: row wrap;
90
+ -ms-flex-flow: row wrap;
91
+ flex-flow: row wrap;
92
+ -webkit-flex-pack: distribute;
93
+ -ms-flex-pack: distribute;
94
+ -webkit-justify-content: space-around;
95
+ justify-content: space-around;
96
+ -webkit-flex-line-pack: stretch;
97
+ -ms-flex-line-pack: stretch;
98
+ -webkit-align-content: stretch;
99
+ align-content: stretch;
100
+ -webkit-flex-align: start;
101
+ -ms-flex-align: start;
102
+ -webkit-align-items: flex-start;
103
+ align-items: flex-start; }
104
+ @supports (flex-wrap: wrap) {
105
+ .flex-legacy {
106
+ display: flex; } }
107
+
108
+ .flex-item-legacy {
109
+ -webkit-box-flex: 1;
110
+ -moz-box-flex: 1;
111
+ -webkit-flex: 1 2 50%;
112
+ -ms-flex: 1 2 50%;
113
+ flex: 1 2 50%;
114
+ -webkit-flex-item-align: start;
115
+ -ms-flex-item-align: start;
116
+ -webkit-align-self: flex-start;
117
+ align-self: flex-start;
118
+ -webkit-flex-order: 1;
119
+ -ms-flex-order: 1;
120
+ -webkit-order: 1;
121
+ order: 1; }