compass-core-sass37 1.1.0

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 (147) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +22 -0
  3. data/VERSION +1 -0
  4. data/data/caniuse.json +1 -0
  5. data/data/caniuse_extras/css-placeholder.json +171 -0
  6. data/lib/compass/browser_support.rb +64 -0
  7. data/lib/compass/configuration/adapters.rb +109 -0
  8. data/lib/compass/configuration/data.rb +199 -0
  9. data/lib/compass/configuration/defaults.rb +207 -0
  10. data/lib/compass/configuration/inheritance.rb +307 -0
  11. data/lib/compass/configuration/paths.rb +19 -0
  12. data/lib/compass/configuration/watch.rb +38 -0
  13. data/lib/compass/configuration.rb +175 -0
  14. data/lib/compass/core/caniuse.rb +314 -0
  15. data/lib/compass/core/generated_version.rb +6 -0
  16. data/lib/compass/core/sass_extensions/functions/colors.rb +67 -0
  17. data/lib/compass/core/sass_extensions/functions/configuration.rb +173 -0
  18. data/lib/compass/core/sass_extensions/functions/constants.rb +56 -0
  19. data/lib/compass/core/sass_extensions/functions/cross_browser_support.rb +270 -0
  20. data/lib/compass/core/sass_extensions/functions/display.rb +32 -0
  21. data/lib/compass/core/sass_extensions/functions/enumerate.rb +7 -0
  22. data/lib/compass/core/sass_extensions/functions/env.rb +72 -0
  23. data/lib/compass/core/sass_extensions/functions/files.rb +33 -0
  24. data/lib/compass/core/sass_extensions/functions/font_files.rb +65 -0
  25. data/lib/compass/core/sass_extensions/functions/gradient_support.rb +859 -0
  26. data/lib/compass/core/sass_extensions/functions/image_size.rb +117 -0
  27. data/lib/compass/core/sass_extensions/functions/inline_image.rb +63 -0
  28. data/lib/compass/core/sass_extensions/functions/lists.rb +102 -0
  29. data/lib/compass/core/sass_extensions/functions/math.rb +105 -0
  30. data/lib/compass/core/sass_extensions/functions/selectors.rb +79 -0
  31. data/lib/compass/core/sass_extensions/functions/urls.rb +315 -0
  32. data/lib/compass/core/sass_extensions/functions.rb +41 -0
  33. data/lib/compass/core/sass_extensions/monkey_patches/browser_support.rb +119 -0
  34. data/lib/compass/core/sass_extensions/monkey_patches/traversal.rb +23 -0
  35. data/lib/compass/core/sass_extensions/monkey_patches.rb +3 -0
  36. data/lib/compass/core/sass_extensions.rb +10 -0
  37. data/lib/compass/core/version.rb +13 -0
  38. data/lib/compass/core.rb +78 -0
  39. data/lib/compass/error.rb +5 -0
  40. data/lib/compass/frameworks.rb +181 -0
  41. data/lib/compass/util.rb +19 -0
  42. data/lib/compass-core.rb +1 -0
  43. data/stylesheets/_compass.scss +3 -0
  44. data/stylesheets/_lemonade.scss +38 -0
  45. data/stylesheets/compass/_configuration.scss +54 -0
  46. data/stylesheets/compass/_css3.scss +21 -0
  47. data/stylesheets/compass/_layout.scss +3 -0
  48. data/stylesheets/compass/_reset-legacy.scss +3 -0
  49. data/stylesheets/compass/_reset.scss +3 -0
  50. data/stylesheets/compass/_support.scss +447 -0
  51. data/stylesheets/compass/_typography.scss +4 -0
  52. data/stylesheets/compass/_utilities.scss +9 -0
  53. data/stylesheets/compass/css3/_animation.scss +122 -0
  54. data/stylesheets/compass/css3/_appearance.scss +17 -0
  55. data/stylesheets/compass/css3/_background-clip.scss +35 -0
  56. data/stylesheets/compass/css3/_background-origin.scss +37 -0
  57. data/stylesheets/compass/css3/_background-size.scss +19 -0
  58. data/stylesheets/compass/css3/_border-radius.scss +107 -0
  59. data/stylesheets/compass/css3/_box-shadow.scss +88 -0
  60. data/stylesheets/compass/css3/_box-sizing.scss +21 -0
  61. data/stylesheets/compass/css3/_box.scss +85 -0
  62. data/stylesheets/compass/css3/_columns.scss +212 -0
  63. data/stylesheets/compass/css3/_deprecated-support.scss +272 -0
  64. data/stylesheets/compass/css3/_filter.scss +50 -0
  65. data/stylesheets/compass/css3/_flexbox.scss +156 -0
  66. data/stylesheets/compass/css3/_font-face.scss +48 -0
  67. data/stylesheets/compass/css3/_hyphenation.scss +71 -0
  68. data/stylesheets/compass/css3/_images.scss +152 -0
  69. data/stylesheets/compass/css3/_inline-block.scss +31 -0
  70. data/stylesheets/compass/css3/_opacity.scss +27 -0
  71. data/stylesheets/compass/css3/_pie.scss +1 -0
  72. data/stylesheets/compass/css3/_regions.scss +27 -0
  73. data/stylesheets/compass/css3/_selection.scss +59 -0
  74. data/stylesheets/compass/css3/_shared.scss +5 -0
  75. data/stylesheets/compass/css3/_text-shadow.scss +82 -0
  76. data/stylesheets/compass/css3/_transform.scss +590 -0
  77. data/stylesheets/compass/css3/_transition.scss +190 -0
  78. data/stylesheets/compass/css3/_user-interface.scss +71 -0
  79. data/stylesheets/compass/layout/_grid-background.scss +178 -0
  80. data/stylesheets/compass/layout/_sticky-footer.scss +23 -0
  81. data/stylesheets/compass/layout/_stretching.scss +24 -0
  82. data/stylesheets/compass/reset/_utilities-legacy.scss +135 -0
  83. data/stylesheets/compass/reset/_utilities.scss +142 -0
  84. data/stylesheets/compass/typography/_links.scss +3 -0
  85. data/stylesheets/compass/typography/_lists.scss +4 -0
  86. data/stylesheets/compass/typography/_text.scss +4 -0
  87. data/stylesheets/compass/typography/_units.scss +183 -0
  88. data/stylesheets/compass/typography/_vertical_rhythm.scss +300 -0
  89. data/stylesheets/compass/typography/links/_hover-link.scss +5 -0
  90. data/stylesheets/compass/typography/links/_link-colors.scss +28 -0
  91. data/stylesheets/compass/typography/links/_unstyled-link.scss +7 -0
  92. data/stylesheets/compass/typography/lists/_bullets.scss +34 -0
  93. data/stylesheets/compass/typography/lists/_horizontal-list.scss +63 -0
  94. data/stylesheets/compass/typography/lists/_inline-block-list.scss +50 -0
  95. data/stylesheets/compass/typography/lists/_inline-list.scss +47 -0
  96. data/stylesheets/compass/typography/text/_ellipsis.scss +25 -0
  97. data/stylesheets/compass/typography/text/_force-wrap.scss +12 -0
  98. data/stylesheets/compass/typography/text/_nowrap.scss +2 -0
  99. data/stylesheets/compass/typography/text/_replacement.scss +74 -0
  100. data/stylesheets/compass/utilities/_color.scss +1 -0
  101. data/stylesheets/compass/utilities/_general.scss +6 -0
  102. data/stylesheets/compass/utilities/_links.scss +5 -0
  103. data/stylesheets/compass/utilities/_lists.scss +6 -0
  104. data/stylesheets/compass/utilities/_print.scss +17 -0
  105. data/stylesheets/compass/utilities/_sass.scss +2 -0
  106. data/stylesheets/compass/utilities/_sprites.scss +2 -0
  107. data/stylesheets/compass/utilities/_tables.scss +3 -0
  108. data/stylesheets/compass/utilities/_text.scss +5 -0
  109. data/stylesheets/compass/utilities/color/_brightness.scss +20 -0
  110. data/stylesheets/compass/utilities/color/_contrast.scss +52 -0
  111. data/stylesheets/compass/utilities/general/_clearfix.scss +44 -0
  112. data/stylesheets/compass/utilities/general/_float.scss +38 -0
  113. data/stylesheets/compass/utilities/general/_hacks.scss +65 -0
  114. data/stylesheets/compass/utilities/general/_min.scss +16 -0
  115. data/stylesheets/compass/utilities/general/_reset.scss +2 -0
  116. data/stylesheets/compass/utilities/general/_tabs.scss +1 -0
  117. data/stylesheets/compass/utilities/general/_tag-cloud.scss +18 -0
  118. data/stylesheets/compass/utilities/links/_hover-link.scss +3 -0
  119. data/stylesheets/compass/utilities/links/_link-colors.scss +3 -0
  120. data/stylesheets/compass/utilities/links/_unstyled-link.scss +3 -0
  121. data/stylesheets/compass/utilities/lists/_bullets.scss +3 -0
  122. data/stylesheets/compass/utilities/lists/_horizontal-list.scss +3 -0
  123. data/stylesheets/compass/utilities/lists/_inline-block-list.scss +3 -0
  124. data/stylesheets/compass/utilities/lists/_inline-list.scss +3 -0
  125. data/stylesheets/compass/utilities/sass/_lists.scss +16 -0
  126. data/stylesheets/compass/utilities/sass/_maps.scss +19 -0
  127. data/stylesheets/compass/utilities/sprites/_base.scss +92 -0
  128. data/stylesheets/compass/utilities/sprites/_sprite-img.scss +81 -0
  129. data/stylesheets/compass/utilities/tables/_alternating-rows-and-columns.scss +22 -0
  130. data/stylesheets/compass/utilities/tables/_borders.scss +38 -0
  131. data/stylesheets/compass/utilities/tables/_scaffolding.scss +9 -0
  132. data/stylesheets/compass/utilities/text/_ellipsis.scss +3 -0
  133. data/stylesheets/compass/utilities/text/_nowrap.scss +3 -0
  134. data/stylesheets/compass/utilities/text/_replacement.scss +3 -0
  135. data/templates/ellipsis/ellipsis.sass +9 -0
  136. data/templates/ellipsis/manifest.rb +27 -0
  137. data/templates/ellipsis/xml/ellipsis.xml +14 -0
  138. data/templates/extension/manifest.rb +26 -0
  139. data/templates/extension/stylesheets/main.sass +1 -0
  140. data/templates/extension/templates/project/manifest.rb +2 -0
  141. data/templates/extension/templates/project/screen.sass +2 -0
  142. data/templates/project/USAGE.markdown +32 -0
  143. data/templates/project/ie.sass +6 -0
  144. data/templates/project/manifest.rb +4 -0
  145. data/templates/project/print.sass +6 -0
  146. data/templates/project/screen.sass +7 -0
  147. metadata +257 -0
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/lists/bullets' instead.";
2
+
3
+ @import "../../typography/lists/bullets";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/lists/horizontal-list' instead.";
2
+
3
+ @import "../../typography/lists/horizontal-list";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/lists/inline-block-list' instead.";
2
+
3
+ @import "../../typography/lists/inline-block-list";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/lists/inline-list' instead.";
2
+
3
+ @import "../../typography/lists/inline-list";
@@ -0,0 +1,16 @@
1
+ @function newline() {
2
+ @return "
3
+ ";
4
+ }
5
+
6
+ // Joins a list into a string with the separator given.
7
+ @function list-join($list, $separator: ", ") {
8
+ $result: "";
9
+ @each $value in $list {
10
+ @if str-length($result) > 0 {
11
+ $result: $result + $separator;
12
+ }
13
+ $result: $result + #{$value};
14
+ }
15
+ @return $result;
16
+ }
@@ -0,0 +1,19 @@
1
+ // Returns true if a $map is a superset of $sub-map.
2
+ @function map-contains-all($map, $sub-map) {
3
+ @each $key, $value in $sub-map {
4
+ @if not (map-has-key($map, $key) and map-get($map, $key) == $value) {
5
+ @return false;
6
+ }
7
+ }
8
+ @return true;
9
+ }
10
+
11
+ // Returns true if a $map has any key-value pair in $sub-map.
12
+ @function map-contains-any($map, $sub-map) {
13
+ @each $key, $value in $sub-map {
14
+ @if map-has-key($map, $key) and map-get($map, $key) == $value {
15
+ @return true;
16
+ }
17
+ }
18
+ @return false;
19
+ }
@@ -0,0 +1,92 @@
1
+ // Determines those states for which you want to enable magic sprite selectors
2
+ $sprite-selectors: hover, target, active, focus !default;
3
+
4
+ // Set the width and height of an element to the original
5
+ // dimensions of an image before it was included in the sprite.
6
+ @mixin sprite-dimensions($map, $sprite) {
7
+ height: image-height(sprite-file($map, $sprite));
8
+ width: image-width(sprite-file($map, $sprite));
9
+ }
10
+
11
+ // Set the background position of the given sprite `$map` to display the
12
+ // sprite of the given `$sprite` name. You can move the image relative to its
13
+ // natural position by passing `$offset-x` and `$offset-y`.
14
+ // The background-position will be returned in pixels. By passing `true
15
+ // for `$use_percentages`, you get percentages instead.
16
+ @mixin sprite-background-position($map, $sprite, $offset-x: 0, $offset-y: 0,
17
+ $use-percentages: false) {
18
+ background-position: sprite-position($map, $sprite, $offset-x, $offset-y,
19
+ $use-percentages);
20
+ }
21
+
22
+
23
+ // Determines if you want to include magic selectors in your sprites
24
+ $disable-magic-sprite-selectors: false !default;
25
+
26
+ // Set this to underscore if you prefer
27
+ $default-sprite-separator: "-" !default;
28
+
29
+ // Include the position and (optionally) dimensions of this `$sprite`
30
+ // in the given sprite `$map`. The sprite url should come from either a base
31
+ // class or you can specify the `sprite-url` explicitly like this:
32
+ //
33
+ // background: $map no-repeat;
34
+ @mixin sprite($map, $sprite, $dimensions: false, $offset-x: 0, $offset-y: 0,
35
+ $use-percentages: false,
36
+ $use-magic-selectors: not $disable-magic-sprite-selectors,
37
+ $separator: $default-sprite-separator) {
38
+ @include sprite-background-position($map, $sprite, $offset-x, $offset-y,
39
+ $use-percentages);
40
+ @if $dimensions {
41
+ @include sprite-dimensions($map, $sprite);
42
+ }
43
+ @if $use-magic-selectors {
44
+ @include sprite-selectors($map, $sprite, $sprite, $offset-x, $offset-y,
45
+ $use-percentages, $separator);
46
+ }
47
+ }
48
+
49
+ // Include the selectors for the `$sprite` given the `$map` and the
50
+ // `$full-sprite-name`
51
+ // @private
52
+ @mixin sprite-selectors($map, $sprite-name, $full-sprite-name, $offset-x: 0,
53
+ $offset-y: 0, $use-percentages: false,
54
+ $separator: $default-sprite-separator) {
55
+ @each $state in $sprite-selectors {
56
+ $sprite-class: "#{$full-sprite-name}#{$separator}#{$state}";
57
+ @if sprite_has_selector($map, $sprite-name, $state) {
58
+ @if sprite_has_valid_selector($sprite-class) {
59
+ &:#{$state}, &.#{$sprite-class} {
60
+ @include sprite-background-position($map, sprite_selector_file($map, $sprite-name, $state),
61
+ $offset-x, $offset-y, $use-percentages);
62
+ }
63
+ }
64
+ }
65
+ }
66
+ }
67
+
68
+ // Generates a class for each space separated name in `$sprite-names`.
69
+ // The class will be of the form .<map-name>-<sprite-name>.
70
+ //
71
+ // If a base class is provided, then each class will extend it.
72
+ //
73
+ // If `$dimensions` is `true`, the sprite dimensions will specified.
74
+ // Positions are returned in pixel units. Set `$use_percentages` to true to
75
+ // instead get percentages.
76
+ @mixin sprites($map, $sprite-names, $base-class: false, $dimensions: false,
77
+ $prefix: sprite-map-name($map), $offset-x: 0, $offset-y: 0,
78
+ $use-percentages: false,
79
+ $separator: $default-sprite-separator) {
80
+ @each $sprite-name in $sprite-names {
81
+ @if sprite_does_not_have_parent($map, $sprite-name) {
82
+ $full-sprite-name: "#{$prefix}#{$separator}#{$sprite-name}";
83
+ @if sprite_has_valid_selector($full-sprite-name) {
84
+ .#{$full-sprite-name} {
85
+ @if $base-class { @extend #{$base-class}; }
86
+ @include sprite($map, $sprite-name, $dimensions, $offset-x, $offset-y,
87
+ $use-percentages, $separator: $separator);
88
+ }
89
+ }
90
+ }
91
+ }
92
+ }
@@ -0,0 +1,81 @@
1
+ @import "compass/typography/text/replacement";
2
+
3
+ // @doc off
4
+ // Example 1:
5
+ //
6
+ // a.twitter
7
+ // +sprite-img("icons-32.png", 1)
8
+ // a.facebook
9
+ // +sprite-img("icons-32png", 2)
10
+ //
11
+ // Example 2:
12
+ //
13
+ // a
14
+ // +sprite-background("icons-32.png")
15
+ // a.twitter
16
+ // +sprite-column(1)
17
+ // a.facebook
18
+ // +sprite-row(2)
19
+ // @doc on
20
+
21
+ $sprite-default-size: 32px !default;
22
+
23
+ $sprite-default-margin: 0px !default;
24
+
25
+ $sprite-image-default-width: $sprite-default-size !default;
26
+
27
+ $sprite-image-default-height: $sprite-default-size !default;
28
+
29
+ // Sets all the rules for a sprite from a given sprite image to show just one of the sprites.
30
+ // To reduce duplication use a sprite-bg mixin for common properties and a sprite-select mixin for positioning.
31
+ @mixin sprite-img($img, $col, $row: 1, $width: $sprite-image-default-width, $height: $sprite-image-default-height, $margin: $sprite-default-margin) {
32
+ @include sprite-background($img, $width, $height);
33
+ @include sprite-position($col, $row, $width, $height, $margin);
34
+ }
35
+
36
+ // Sets rules common for all sprites, assumes you want a square, but allows a rectangular region.
37
+ @mixin sprite-background($img, $width: $sprite-default-size, $height: $width) {
38
+ @include sprite-background-rectangle($img, $width, $height);
39
+ }
40
+
41
+ // Sets rules common for all sprites, assumes a rectangular region.
42
+ @mixin sprite-background-rectangle($img, $width: $sprite-image-default-width, $height: $sprite-image-default-height) {
43
+ background: image-url($img) no-repeat;
44
+ width: $width;
45
+ height: $height;
46
+ overflow: hidden;
47
+ }
48
+
49
+ // Allows horizontal sprite positioning optimized for a single row of sprites.
50
+ @mixin sprite-column($col, $width: $sprite-image-default-width, $margin: $sprite-default-margin) {
51
+ @include sprite-position($col, 1, $width, 0px, $margin);
52
+ }
53
+
54
+ // Allows vertical sprite positioning optimized for a single column of sprites.
55
+ @mixin sprite-row($row, $height: $sprite-image-default-height, $margin: $sprite-default-margin) {
56
+ @include sprite-position(1, $row, 0px, $height, $margin);
57
+ }
58
+
59
+ // Allows vertical and horizontal sprite positioning from a grid of equal dimensioned sprites.
60
+ @mixin sprite-position($col, $row: 1, $width: $sprite-image-default-width, $height: $sprite-image-default-height, $margin: $sprite-default-margin) {
61
+ $x: ($col - 1) * -$width - ($col - 1) * $margin;
62
+ $y: ($row - 1) * -$height - ($row - 1) * $margin;
63
+ background-position: $x $y;
64
+ }
65
+
66
+
67
+
68
+ // Similar to 'sprite-replace-text-with-dimensions' but does not autmaticly set the demensions
69
+ @mixin sprite-replace-text ($map, $sprite, $dimensions: false, $offset-x: 0, $offset-y: 0) {
70
+ @include hide-text;
71
+ @include sprite($map, $sprite, $dimensions, $offset-x, $offset-y);
72
+ background-image: $map;
73
+ background-repeat: no-repeat;
74
+ }
75
+
76
+ // Similar to 'replace-text-with-dimensions' but with sprites
77
+ // To use, create your sprite and then pass it in the `$map` param
78
+ // The name of the image in the sprite folder should be `$img-name`
79
+ @mixin sprite-replace-text-with-dimensions ($map, $sprite, $offset-x: 0, $offset-y: 0){
80
+ @include sprite-replace-text ($map, $sprite, true, $offset-x, $offset-y);
81
+ }
@@ -0,0 +1,22 @@
1
+ @mixin alternating-rows-and-columns($even-row-color, $odd-row-color, $dark-intersection, $header-color: white, $footer-color: white) {
2
+ th {
3
+ background-color: $header-color;
4
+ &.even, &:nth-child(2n) {
5
+ background-color: $header-color - $dark-intersection; } }
6
+ tr {
7
+ &.odd, &:nth-child(2n+1) {
8
+ td {
9
+ background-color: $odd-row-color;
10
+ &.even, &:nth-child(2n) {
11
+ background-color: $odd-row-color - $dark-intersection; } } }
12
+ }
13
+ tr.even {
14
+ td {
15
+ background-color: $even-row-color;
16
+ &.even, &:nth-child(2n) {
17
+ background-color: $even-row-color - $dark-intersection; } } }
18
+ tfoot {
19
+ th, td {
20
+ background-color: $footer-color;
21
+ &.even, &:nth-child(2n) {
22
+ background-color: $footer-color - $dark-intersection; } } } }
@@ -0,0 +1,38 @@
1
+ @import "compass/support";
2
+
3
+ @mixin outer-table-borders($width: 2px, $color: black) {
4
+ border: $width solid $color;
5
+ thead {
6
+ th {
7
+ border-bottom: $width solid $color; } }
8
+ tfoot {
9
+ th, td {
10
+ border-top: $width solid $color; } }
11
+ th {
12
+ &:first-child #{if(support-legacy-browser(ie, "6"), ', &.first', null)} {
13
+ border-right: $width solid $color; } } }
14
+
15
+ @mixin inner-table-borders($width: 2px, $color: black) {
16
+ th, td {
17
+ border: {
18
+ right: $width solid $color;
19
+ bottom: $width solid $color;
20
+ left-width: 0;
21
+ top-width: 0; };
22
+ &:last-child {
23
+ border-right-width: 0; }
24
+
25
+ // IE8 ignores rules that are included on the same line as :last-child
26
+ // see http://www.richardscarrott.co.uk/posts/view/ie8-last-child-bug for details
27
+ @if support-legacy-browser(ie, "8") {
28
+ &.last {
29
+ border-right-width: 0; } } }
30
+
31
+ tbody, tfoot {
32
+ tr:last-child {
33
+ th, td {
34
+ border-bottom-width: 0; } }
35
+ @if support-legacy-browser(ie, "8") {
36
+ tr.last {
37
+ th, td {
38
+ border-bottom-width: 0; } } } } }
@@ -0,0 +1,9 @@
1
+ @mixin table-scaffolding {
2
+ th {
3
+ text-align: center;
4
+ font-weight: bold; }
5
+ td,
6
+ th {
7
+ padding: 2px;
8
+ &.numeric {
9
+ text-align: right; } } }
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/text/ellipsis' instead.";
2
+
3
+ @import "../../typography/text/ellipsis";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/text/nowrap' instead.";
2
+
3
+ @import "../../typography/text/nowrap";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/text/replacement' instead.";
2
+
3
+ @import "../../typography/text/replacement";
@@ -0,0 +1,9 @@
1
+ // Since you've installed the xml file, you should set
2
+ // $use-mozilla-ellipsis-binding to true before importing.
3
+ $use-mozilla-ellipsis-binding: true
4
+ @import compass/typography/text/ellipsis
5
+
6
+ // You can delete this sass file if you want, it's just an example of how to use the ellipsis mixin.
7
+ // By default, ellipsis text is no-wrap. Pass false as the first argument if you don't want that.
8
+ .ellipsis
9
+ +ellipsis
@@ -0,0 +1,27 @@
1
+ description "Plugin for cross-browser ellipsis truncated text."
2
+
3
+ file 'xml/ellipsis.xml', :like => :css
4
+ stylesheet 'ellipsis.sass'
5
+
6
+ help %Q{
7
+ First, install the plugin to get the xml file that makes this work in firefox:
8
+
9
+ compass install compass/ellipsis
10
+
11
+ Then @include "ellipsis" into your selectors to enable ellipsis
12
+ there when text gets too long.
13
+
14
+ The ellipsis.sass file is just an example for how to use this plugin,
15
+ feel free to delete it.
16
+
17
+ For more information see:
18
+ http://mattsnider.com/css/css-string-truncation-with-ellipsis/
19
+ }
20
+
21
+ welcome_message %Q{
22
+ The ellipsis.sass file is just an example for how to use this plugin,
23
+ feel free to delete it.
24
+
25
+ For more information see:
26
+ http://mattsnider.com/css/css-string-truncation-with-ellipsis/
27
+ }
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0"?>
2
+ <bindings
3
+ xmlns="http://www.mozilla.org/xbl"
4
+ xmlns:xbl="http://www.mozilla.org/xbl"
5
+ xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
6
+ >
7
+ <binding id="ellipsis">
8
+ <content>
9
+ <xul:window>
10
+ <xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
11
+ </xul:window>
12
+ </content>
13
+ </binding>
14
+ </bindings>
@@ -0,0 +1,26 @@
1
+ description "Generate a compass extension."
2
+
3
+ unless options.include?(:preferred_syntax)
4
+ options[:preferred_syntax] = 'sass'
5
+ end
6
+
7
+ file 'templates/project/manifest.rb'
8
+ file "stylesheets/main.sass", :to => "stylesheets/_#{File.basename(options[:pattern_name]||options[:project_name]||'main')}.#{options[:preferred_syntax]}"
9
+
10
+ file "templates/project/screen.sass", :to => "templates/project/screen.#{options[:preferred_syntax]}"
11
+
12
+
13
+ help %Q{
14
+ To generate a compass extension:
15
+ compass create my_extension --using compass/extension
16
+ }
17
+
18
+ welcome_message %Q{
19
+ For a full tutorial on how to build your own extension see:
20
+
21
+ http://compass-style.org/help/tutorials/extensions/
22
+
23
+ }, :replace => true
24
+
25
+ no_configuration_file!
26
+ skip_compilation!
@@ -0,0 +1 @@
1
+ // This is your framework's main stylesheet. Use it to import all default modules.
@@ -0,0 +1,2 @@
1
+ # Make sure you list all the project template files here in the manifest.
2
+ stylesheet 'screen.sass', :media => 'screen, projection'
@@ -0,0 +1,2 @@
1
+ // This is where you put the contents of the main stylesheet for the user's project.
2
+ // It should import your sass stylesheets and demonstrate how to use them.
@@ -0,0 +1,32 @@
1
+ When no framework is specified, a new compass project is set up with three stylesheets:
2
+
3
+ * screen.sass
4
+ * print.sass
5
+ * ie.sass
6
+
7
+ It is expected that you will link your html to these like so:
8
+
9
+ <head>
10
+ <link href="/stylesheets/screen.css" media="screen, projection"
11
+ rel="stylesheet" type="text/css" />
12
+ <link href="/stylesheets/print.css" media="print"
13
+ rel="stylesheet" type="text/css" />
14
+ <!--[if IE]>
15
+ <link href="/stylesheets/ie.css" media="screen, projection"
16
+ rel="stylesheet" type="text/css" />
17
+ <![endif]-->
18
+ </head>
19
+
20
+ You don't have to use these three stylesheets, they are just a recommendation.
21
+ You can rename them, make new stylesheets, and delete them. Compass will
22
+ happily compile whatever sass files you place into your project.
23
+
24
+ Any folders you create in your source directory with sass files in them will be folders
25
+ that get created with css files in them when compiled.
26
+
27
+ Sass files beginning with an underscore are called partials, they are not directly
28
+ compiled to their own css file. You can use these partials by importing them
29
+ into other stylesheets. This is useful for keeping your stylesheets small and manageable
30
+ and single-focused. It is common to create a file called _base.sass at the top level
31
+ of your stylesheets and to import this to set up project-wide constants and mixins.
32
+
@@ -0,0 +1,6 @@
1
+ /*
2
+ Welcome to Compass. Use this file to write IE specific override styles.
3
+ Import this file using the following HTML or equivalent:
4
+ <!--[if IE]>
5
+ <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
6
+ <![endif]-->
@@ -0,0 +1,4 @@
1
+ description "The default project layout."
2
+ stylesheet 'screen.sass', :media => 'screen, projection'
3
+ stylesheet 'print.sass', :media => 'print'
4
+ stylesheet 'ie.sass', :media => 'screen, projection', :condition => "IE"
@@ -0,0 +1,6 @@
1
+ /*
2
+ Welcome to Compass. Use this file to define print styles.
3
+ Import this file using the following HTML or equivalent:
4
+ <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" />
5
+
6
+
@@ -0,0 +1,7 @@
1
+ /*
2
+ Welcome to Compass.
3
+ In this file you should write your main styles. (or centralize your imports)
4
+ Import this file using the following HTML or equivalent:
5
+ <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
6
+
7
+ @import compass/reset