compass 0.11.5 → 0.11.6

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 (151) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/compass +5 -1
  3. data/bin/compass.compiled.rbc +707 -0
  4. data/examples/compass/compass_app_log.txt +6 -0
  5. data/features/command_line.feature +16 -16
  6. data/features/extensions.feature +6 -0
  7. data/features/step_definitions/command_line_steps.rb +2 -0
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  10. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  12. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  13. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  14. data/lib/compass.rbc +42 -36
  15. data/lib/compass/actions.rbc +244 -85
  16. data/lib/compass/app_integration.rbc +28 -20
  17. data/lib/compass/app_integration/merb.rbc +8 -4
  18. data/lib/compass/app_integration/rails.rbc +664 -148
  19. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  20. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  21. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  22. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  23. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  24. data/lib/compass/browser_support.rbc +35 -23
  25. data/lib/compass/commands.rbc +307 -0
  26. data/lib/compass/commands/base.rbc +1044 -0
  27. data/lib/compass/commands/clean_project.rbc +1856 -0
  28. data/lib/compass/commands/create_project.rbc +2691 -0
  29. data/lib/compass/commands/default.rbc +1677 -0
  30. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  31. data/lib/compass/commands/help.rbc +1921 -0
  32. data/lib/compass/commands/imports.rbc +969 -0
  33. data/lib/compass/commands/installer_command.rbc +807 -0
  34. data/lib/compass/commands/interactive.rbc +1341 -0
  35. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  36. data/lib/compass/commands/print_version.rbc +2478 -0
  37. data/lib/compass/commands/project_base.rbc +2085 -0
  38. data/lib/compass/commands/project_stats.rb +7 -7
  39. data/lib/compass/commands/project_stats.rbc +4202 -0
  40. data/lib/compass/commands/registry.rbc +1350 -0
  41. data/lib/compass/commands/sprite.rbc +2212 -0
  42. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  43. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  44. data/lib/compass/commands/update_project.rbc +3002 -0
  45. data/lib/compass/commands/validate_project.rbc +1686 -0
  46. data/lib/compass/commands/watch_project.rbc +4155 -0
  47. data/lib/compass/commands/write_configuration.rbc +2896 -0
  48. data/lib/compass/compiler.rbc +591 -398
  49. data/lib/compass/configuration.rbc +134 -78
  50. data/lib/compass/configuration/adapters.rbc +98 -40
  51. data/lib/compass/configuration/comments.rbc +132 -51
  52. data/lib/compass/configuration/data.rbc +541 -551
  53. data/lib/compass/configuration/defaults.rbc +764 -189
  54. data/lib/compass/configuration/file_data.rbc +37 -125
  55. data/lib/compass/configuration/helpers.rb +7 -2
  56. data/lib/compass/configuration/helpers.rbc +433 -153
  57. data/lib/compass/configuration/inheritance.rbc +412 -165
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rbc +151 -84
  60. data/lib/compass/dependencies.rbc +16 -4
  61. data/lib/compass/errors.rbc +5 -5
  62. data/lib/compass/exec.rbc +500 -0
  63. data/lib/compass/exec/command_option_parser.rbc +676 -0
  64. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  65. data/lib/compass/exec/helpers.rbc +758 -0
  66. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  67. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  68. data/lib/compass/frameworks.rb +10 -4
  69. data/lib/compass/frameworks.rbc +118 -66
  70. data/lib/compass/grid_builder.rbc +0 -0
  71. data/lib/compass/installers.rbc +152 -0
  72. data/lib/compass/installers/bare_installer.rbc +939 -0
  73. data/lib/compass/installers/base.rbc +4427 -0
  74. data/lib/compass/installers/manifest.rbc +3335 -0
  75. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  76. data/lib/compass/installers/template_context.rbc +1030 -0
  77. data/lib/compass/logger.rbc +2317 -0
  78. data/lib/compass/quick_cache.rbc +12 -8
  79. data/lib/compass/sass_extensions.rbc +8 -4
  80. data/lib/compass/sass_extensions/functions.rbc +90 -57
  81. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  82. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  83. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  84. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  85. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  86. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  87. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  88. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  89. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  90. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  91. data/lib/compass/sass_extensions/functions/lists.rb +5 -0
  92. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  93. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  94. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  95. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  96. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  97. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  98. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  99. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  100. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  101. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  102. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  103. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  104. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  105. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  106. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  107. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  108. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  109. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +1 -1
  110. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  111. data/lib/compass/sprite_importer.rbc +1125 -1495
  112. data/lib/compass/util.rbc +19 -11
  113. data/lib/compass/version.rbc +53 -25
  114. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  115. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  116. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  117. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  118. data/test/fixtures/stylesheets/compass/css/user-interface.css +5 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  120. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  121. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  122. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  123. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  124. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  125. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  126. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  127. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  128. data/test/helpers/command_line.rbc +2820 -0
  129. data/test/helpers/diff.rbc +1104 -0
  130. data/test/helpers/io.rbc +962 -0
  131. data/test/helpers/rails.rbc +1116 -0
  132. data/test/helpers/test_case.rbc +1255 -0
  133. data/test/integrations/compass_test.rbc +6589 -0
  134. data/test/integrations/rails_integration_test.rbc +1342 -0
  135. data/test/integrations/sprites_test.rbc +6192 -0
  136. data/test/test_helper.rbc +1694 -0
  137. data/test/units/actions_test.rbc +644 -0
  138. data/test/units/command_line_test.rbc +1532 -0
  139. data/test/units/compass_png_test.rbc +0 -0
  140. data/test/units/configuration_test.rbc +3833 -0
  141. data/test/units/rails_configuration_test.rbc +1032 -0
  142. data/test/units/sass_extensions_test.rb +5 -0
  143. data/test/units/sass_extensions_test.rbc +3586 -0
  144. data/test/units/sprites/engine_test.rbc +962 -0
  145. data/test/units/sprites/image_row_test.rbc +1578 -0
  146. data/test/units/sprites/image_test.rbc +2836 -0
  147. data/test/units/sprites/importer_test.rbc +2620 -0
  148. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  149. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  150. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  151. metadata +157 -51
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -312,8 +312,8 @@ f
312
312
  I
313
313
  d
314
314
  x
315
- 49
316
- /Users/chris/Projects/compass/lib/compass/util.rb
315
+ 51
316
+ /Users/crispee/Projects/compass/lib/compass/util.rb
317
317
  p
318
318
  1
319
319
  x
@@ -438,7 +438,7 @@ x
438
438
  5
439
439
  zero?
440
440
  p
441
- 15
441
+ 17
442
442
  I
443
443
  -1
444
444
  I
@@ -468,17 +468,21 @@ I
468
468
  I
469
469
  19
470
470
  I
471
+ 3f
472
+ I
473
+ 0
474
+ I
471
475
  40
472
476
  x
473
- 49
474
- /Users/chris/Projects/compass/lib/compass/util.rb
477
+ 51
478
+ /Users/crispee/Projects/compass/lib/compass/util.rb
475
479
  p
476
480
  1
477
481
  x
478
482
  5
479
483
  value
480
484
  p
481
- 21
485
+ 23
482
486
  I
483
487
  2
484
488
  I
@@ -512,6 +516,10 @@ I
512
516
  I
513
517
  b
514
518
  I
519
+ 68
520
+ I
521
+ 0
522
+ I
515
523
  69
516
524
  I
517
525
  e
@@ -522,8 +530,8 @@ I
522
530
  I
523
531
  85
524
532
  x
525
- 49
526
- /Users/chris/Projects/compass/lib/compass/util.rb
533
+ 51
534
+ /Users/crispee/Projects/compass/lib/compass/util.rb
527
535
  p
528
536
  0
529
537
  x
@@ -538,7 +546,7 @@ I
538
546
  I
539
547
  1e
540
548
  x
541
- 49
542
- /Users/chris/Projects/compass/lib/compass/util.rb
549
+ 51
550
+ /Users/crispee/Projects/compass/lib/compass/util.rb
543
551
  p
544
552
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -292,7 +292,7 @@ x
292
292
  12
293
293
  read_version
294
294
  p
295
- 9
295
+ 11
296
296
  I
297
297
  -1
298
298
  I
@@ -310,10 +310,14 @@ I
310
310
  I
311
311
  d
312
312
  I
313
+ 16
314
+ I
315
+ 0
316
+ I
313
317
  17
314
318
  x
315
- 52
316
- /Users/chris/Projects/compass/lib/compass/version.rb
319
+ 54
320
+ /Users/crispee/Projects/compass/lib/compass/version.rb
317
321
  p
318
322
  0
319
323
  x
@@ -403,8 +407,8 @@ I
403
407
  I
404
408
  19
405
409
  x
406
- 52
407
- /Users/chris/Projects/compass/lib/compass/version.rb
410
+ 54
411
+ /Users/crispee/Projects/compass/lib/compass/version.rb
408
412
  p
409
413
  1
410
414
  x
@@ -777,7 +781,7 @@ x
777
781
  3
778
782
  new
779
783
  p
780
- 25
784
+ 33
781
785
  I
782
786
  -1
783
787
  I
@@ -803,14 +807,26 @@ I
803
807
  I
804
808
  1c
805
809
  I
810
+ 7b
811
+ I
812
+ 0
813
+ I
806
814
  7c
807
815
  I
808
816
  1d
809
817
  I
818
+ a0
819
+ I
820
+ 0
821
+ I
810
822
  a1
811
823
  I
812
824
  1e
813
825
  I
826
+ c5
827
+ I
828
+ 0
829
+ I
814
830
  c6
815
831
  I
816
832
  1f
@@ -823,14 +839,18 @@ I
823
839
  I
824
840
  1f
825
841
  I
842
+ 102
843
+ I
844
+ 0
845
+ I
826
846
  103
827
847
  I
828
848
  22
829
849
  I
830
850
  106
831
851
  x
832
- 52
833
- /Users/chris/Projects/compass/lib/compass/version.rb
852
+ 54
853
+ /Users/crispee/Projects/compass/lib/compass/version.rb
834
854
  p
835
855
  1
836
856
  x
@@ -879,8 +899,8 @@ I
879
899
  I
880
900
  4
881
901
  x
882
- 52
883
- /Users/chris/Projects/compass/lib/compass/version.rb
902
+ 54
903
+ /Users/crispee/Projects/compass/lib/compass/version.rb
884
904
  p
885
905
  0
886
906
  x
@@ -1012,15 +1032,15 @@ I
1012
1032
  I
1013
1033
  9
1014
1034
  x
1015
- 52
1016
- /Users/chris/Projects/compass/lib/compass/version.rb
1035
+ 54
1036
+ /Users/crispee/Projects/compass/lib/compass/version.rb
1017
1037
  p
1018
1038
  0
1019
1039
  x
1020
1040
  5
1021
1041
  chdir
1022
1042
  p
1023
- 9
1043
+ 11
1024
1044
  I
1025
1045
  -1
1026
1046
  I
@@ -1038,10 +1058,14 @@ I
1038
1058
  I
1039
1059
  2a
1040
1060
  I
1061
+ 23
1062
+ I
1063
+ 0
1064
+ I
1041
1065
  24
1042
1066
  x
1043
- 52
1044
- /Users/chris/Projects/compass/lib/compass/version.rb
1067
+ 54
1068
+ /Users/crispee/Projects/compass/lib/compass/version.rb
1045
1069
  p
1046
1070
  0
1047
1071
  p
@@ -1073,8 +1097,8 @@ I
1073
1097
  I
1074
1098
  4c
1075
1099
  x
1076
- 52
1077
- /Users/chris/Projects/compass/lib/compass/version.rb
1100
+ 54
1101
+ /Users/crispee/Projects/compass/lib/compass/version.rb
1078
1102
  p
1079
1103
  0
1080
1104
  x
@@ -1151,7 +1175,7 @@ x
1151
1175
  13
1152
1176
  const_missing
1153
1177
  p
1154
- 9
1178
+ 11
1155
1179
  I
1156
1180
  -1
1157
1181
  I
@@ -1169,10 +1193,14 @@ I
1169
1193
  I
1170
1194
  38
1171
1195
  I
1196
+ 15
1197
+ I
1198
+ 0
1199
+ I
1172
1200
  16
1173
1201
  x
1174
- 52
1175
- /Users/chris/Projects/compass/lib/compass/version.rb
1202
+ 54
1203
+ /Users/crispee/Projects/compass/lib/compass/version.rb
1176
1204
  p
1177
1205
  1
1178
1206
  x
@@ -1195,8 +1223,8 @@ I
1195
1223
  I
1196
1224
  32
1197
1225
  x
1198
- 52
1199
- /Users/chris/Projects/compass/lib/compass/version.rb
1226
+ 54
1227
+ /Users/crispee/Projects/compass/lib/compass/version.rb
1200
1228
  p
1201
1229
  0
1202
1230
  x
@@ -1211,7 +1239,7 @@ I
1211
1239
  I
1212
1240
  1c
1213
1241
  x
1214
- 52
1215
- /Users/chris/Projects/compass/lib/compass/version.rb
1242
+ 54
1243
+ /Users/crispee/Projects/compass/lib/compass/version.rb
1216
1244
  p
1217
1245
  0
@@ -0,0 +1 @@
1
+ Compass::Frameworks.register("only-stylesheets", :stylesheets_dir => File.join(File.dirname(__FILE__),"scss"))
@@ -0,0 +1,3 @@
1
+ @mixin only-stylesheets {
2
+ color: red;
3
+ }
@@ -7,7 +7,7 @@ ul.horizontal {
7
7
  ul.horizontal li {
8
8
  list-style-image: none;
9
9
  list-style-type: none;
10
- margin-left: 0px;
10
+ margin-left: 0;
11
11
  white-space: nowrap;
12
12
  display: inline;
13
13
  float: left;
@@ -29,7 +29,7 @@ ul.wide-horizontal {
29
29
  ul.wide-horizontal li {
30
30
  list-style-image: none;
31
31
  list-style-type: none;
32
- margin-left: 0px;
32
+ margin-left: 0;
33
33
  white-space: nowrap;
34
34
  display: inline;
35
35
  float: left;
@@ -51,7 +51,7 @@ ul.right-horizontal {
51
51
  ul.right-horizontal li {
52
52
  list-style-image: none;
53
53
  list-style-type: none;
54
- margin-left: 0px;
54
+ margin-left: 0;
55
55
  white-space: nowrap;
56
56
  display: inline;
57
57
  float: right;
@@ -73,7 +73,7 @@ ul.no-padding {
73
73
  ul.no-padding li {
74
74
  list-style-image: none;
75
75
  list-style-type: none;
76
- margin-left: 0px;
76
+ margin-left: 0;
77
77
  white-space: nowrap;
78
78
  display: inline;
79
79
  float: left; }
@@ -87,7 +87,7 @@ ul.inline-block {
87
87
  ul.inline-block li {
88
88
  list-style-image: none;
89
89
  list-style-type: none;
90
- margin-left: 0px;
90
+ margin-left: 0;
91
91
  display: -moz-inline-box;
92
92
  -moz-box-orient: vertical;
93
93
  display: inline-block;
@@ -106,7 +106,7 @@ ul.wide-inline-block {
106
106
  ul.wide-inline-block li {
107
107
  list-style-image: none;
108
108
  list-style-type: none;
109
- margin-left: 0px;
109
+ margin-left: 0;
110
110
  display: -moz-inline-box;
111
111
  -moz-box-orient: vertical;
112
112
  display: inline-block;
@@ -143,7 +143,7 @@ ul.no-bullets {
143
143
  ul.no-bullets li {
144
144
  list-style-image: none;
145
145
  list-style-type: none;
146
- margin-left: 0px; }
146
+ margin-left: 0; }
147
147
 
148
148
  ul.pretty {
149
149
  margin-left: 0; }
@@ -50,7 +50,6 @@ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav,
50
50
 
51
51
  body.registered a.registered-only, body.registered abbr.registered-only, body.registered acronym.registered-only, body.registered audio.registered-only, body.registered b.registered-only, body.registered basefont.registered-only, body.registered bdo.registered-only, body.registered big.registered-only, body.registered br.registered-only, body.registered canvas.registered-only, body.registered cite.registered-only, body.registered code.registered-only, body.registered command.registered-only, body.registered datalist.registered-only, body.registered dfn.registered-only, body.registered em.registered-only, body.registered embed.registered-only, body.registered font.registered-only, body.registered i.registered-only, body.registered img.registered-only, body.registered input.registered-only, body.registered keygen.registered-only, body.registered kbd.registered-only, body.registered label.registered-only, body.registered mark.registered-only, body.registered meter.registered-only, body.registered output.registered-only, body.registered progress.registered-only, body.registered q.registered-only, body.registered rp.registered-only, body.registered rt.registered-only, body.registered ruby.registered-only, body.registered s.registered-only, body.registered samp.registered-only, body.registered select.registered-only, body.registered small.registered-only, body.registered span.registered-only, body.registered strike.registered-only, body.registered strong.registered-only, body.registered sub.registered-only, body.registered sup.registered-only, body.registered textarea.registered-only, body.registered time.registered-only, body.registered tt.registered-only, body.registered u.registered-only, body.registered var.registered-only, body.registered video.registered-only, body.registered wbr.registered-only {
52
52
  display: inline; }
53
-
54
53
  body.registered address.registered-only, body.registered article.registered-only, body.registered aside.registered-only, body.registered blockquote.registered-only, body.registered center.registered-only, body.registered dir.registered-only, body.registered div.registered-only, body.registered dd.registered-only, body.registered details.registered-only, body.registered dl.registered-only, body.registered dt.registered-only, body.registered fieldset.registered-only, body.registered figcaption.registered-only, body.registered figure.registered-only, body.registered form.registered-only, body.registered footer.registered-only, body.registered frameset.registered-only, body.registered h1.registered-only, body.registered h2.registered-only, body.registered h3.registered-only, body.registered h4.registered-only, body.registered h5.registered-only, body.registered h6.registered-only, body.registered hr.registered-only, body.registered header.registered-only, body.registered hgroup.registered-only, body.registered isindex.registered-only, body.registered menu.registered-only, body.registered nav.registered-only, body.registered noframes.registered-only, body.registered noscript.registered-only, body.registered ol.registered-only, body.registered p.registered-only, body.registered pre.registered-only, body.registered section.registered-only, body.registered summary.registered-only, body.registered ul.registered-only {
55
54
  display: block; }
56
55
 
@@ -0,0 +1,5 @@
1
+ .user-select {
2
+ -moz-user-select: none;
3
+ -webkit-user-select: none;
4
+ -khtml-user-select: none;
5
+ user-select: none; }
@@ -0,0 +1,5 @@
1
+ @import "compass/css3/user-interface";
2
+
3
+ .user-select {
4
+ @include user-select(none);
5
+ }
@@ -0,0 +1,2 @@
1
+ .env {
2
+ env: production; }
@@ -0,0 +1,25 @@
1
+ # Require any additional compass plugins here.
2
+ load '../../extensions/only_stylesheets/'
3
+
4
+ # Set this to the root of your project when deployed:
5
+ http_path = "/"
6
+ css_dir = "stylesheets"
7
+ sass_dir = "sass"
8
+ images_dir = "images"
9
+ javascripts_dir = "javascripts"
10
+
11
+ # You can select your preferred output style here (can be overridden via the command line):
12
+ # output_style = :expanded or :nested or :compact or :compressed
13
+
14
+ # To enable relative paths to assets via compass helper functions. Uncomment:
15
+ # relative_assets = true
16
+
17
+ # To disable debugging comments that display the original location of your selectors. Uncomment:
18
+ # line_comments = false
19
+
20
+
21
+ # If you prefer the indented syntax, you might want to regenerate this
22
+ # project again passing --syntax sass, or you can uncomment this:
23
+ # preferred_syntax = :sass
24
+ # and then run:
25
+ # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
@@ -0,0 +1,5 @@
1
+ /* Welcome to Compass. Use this file to write IE specific override styles.
2
+ * Import this file using the following HTML or equivalent:
3
+ * <!--[if IE]>
4
+ * <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
5
+ * <![endif]--> */
@@ -0,0 +1,3 @@
1
+ /* Welcome to Compass. Use this file to define print styles.
2
+ * Import this file using the following HTML or equivalent:
3
+ * <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */
@@ -0,0 +1,6 @@
1
+ /* Welcome to Compass.
2
+ * In this file you should write your main styles. (or centralize your imports)
3
+ * Import this file using the following HTML or equivalent:
4
+ * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
5
+
6
+ @import "compass/reset";
@@ -0,0 +1,5 @@
1
+ /* Welcome to Compass. Use this file to write IE specific override styles.
2
+ * Import this file using the following HTML or equivalent:
3
+ * <!--[if IE]>
4
+ * <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
5
+ * <![endif]--> */
@@ -0,0 +1,3 @@
1
+ /* Welcome to Compass. Use this file to define print styles.
2
+ * Import this file using the following HTML or equivalent:
3
+ * <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */
@@ -0,0 +1,68 @@
1
+ /* Welcome to Compass.
2
+ * In this file you should write your main styles. (or centralize your imports)
3
+ * Import this file using the following HTML or equivalent:
4
+ * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
5
+ /* line 17, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
6
+ html, body, div, span, applet, object, iframe,
7
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8
+ a, abbr, acronym, address, big, cite, code,
9
+ del, dfn, em, img, ins, kbd, q, s, samp,
10
+ small, strike, strong, sub, sup, tt, var,
11
+ b, u, i, center,
12
+ dl, dt, dd, ol, ul, li,
13
+ fieldset, form, label, legend,
14
+ table, caption, tbody, tfoot, thead, tr, th, td,
15
+ article, aside, canvas, details, embed,
16
+ figure, figcaption, footer, header, hgroup,
17
+ menu, nav, output, ruby, section, summary,
18
+ time, mark, audio, video {
19
+ margin: 0;
20
+ padding: 0;
21
+ border: 0;
22
+ font-size: 100%;
23
+ font: inherit;
24
+ vertical-align: baseline;
25
+ }
26
+
27
+ /* line 20, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
28
+ body {
29
+ line-height: 1;
30
+ }
31
+
32
+ /* line 22, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
33
+ ol, ul {
34
+ list-style: none;
35
+ }
36
+
37
+ /* line 24, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
38
+ table {
39
+ border-collapse: collapse;
40
+ border-spacing: 0;
41
+ }
42
+
43
+ /* line 26, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
44
+ caption, th, td {
45
+ text-align: left;
46
+ font-weight: normal;
47
+ vertical-align: middle;
48
+ }
49
+
50
+ /* line 28, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
51
+ q, blockquote {
52
+ quotes: none;
53
+ }
54
+ /* line 101, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
55
+ q:before, q:after, blockquote:before, blockquote:after {
56
+ content: "";
57
+ content: none;
58
+ }
59
+
60
+ /* line 30, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
61
+ a img {
62
+ border: none;
63
+ }
64
+
65
+ /* line 114, ../../../../../../../.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/compass-0.12.alpha.0/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
66
+ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
67
+ display: block;
68
+ }