compass-core 1.0.0.alpha.13
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +22 -0
- data/VERSION +1 -0
- data/data/caniuse.json +1 -0
- data/data/caniuse_extras/css-placeholder.json +171 -0
- data/lib/compass-core.rb +1 -0
- data/lib/compass/browser_support.rb +62 -0
- data/lib/compass/configuration.rb +168 -0
- data/lib/compass/configuration/data.rb +178 -0
- data/lib/compass/configuration/defaults.rb +197 -0
- data/lib/compass/configuration/inheritance.rb +304 -0
- data/lib/compass/configuration/paths.rb +19 -0
- data/lib/compass/core.rb +64 -0
- data/lib/compass/core/caniuse.rb +282 -0
- data/lib/compass/core/sass_extensions.rb +10 -0
- data/lib/compass/core/sass_extensions/functions.rb +39 -0
- data/lib/compass/core/sass_extensions/functions/colors.rb +67 -0
- data/lib/compass/core/sass_extensions/functions/configuration.rb +162 -0
- data/lib/compass/core/sass_extensions/functions/constants.rb +74 -0
- data/lib/compass/core/sass_extensions/functions/cross_browser_support.rb +269 -0
- data/lib/compass/core/sass_extensions/functions/display.rb +32 -0
- data/lib/compass/core/sass_extensions/functions/enumerate.rb +7 -0
- data/lib/compass/core/sass_extensions/functions/env.rb +60 -0
- data/lib/compass/core/sass_extensions/functions/font_files.rb +41 -0
- data/lib/compass/core/sass_extensions/functions/gradient_support.rb +616 -0
- data/lib/compass/core/sass_extensions/functions/image_size.rb +117 -0
- data/lib/compass/core/sass_extensions/functions/inline_image.rb +64 -0
- data/lib/compass/core/sass_extensions/functions/lists.rb +101 -0
- data/lib/compass/core/sass_extensions/functions/math.rb +92 -0
- data/lib/compass/core/sass_extensions/functions/selectors.rb +64 -0
- data/lib/compass/core/sass_extensions/functions/urls.rb +297 -0
- data/lib/compass/core/sass_extensions/monkey_patches.rb +3 -0
- data/lib/compass/core/sass_extensions/monkey_patches/browser_support.rb +118 -0
- data/lib/compass/core/sass_extensions/monkey_patches/traversal.rb +23 -0
- data/lib/compass/core/version.rb +5 -0
- data/lib/compass/error.rb +5 -0
- data/stylesheets/_compass.scss +3 -0
- data/stylesheets/_lemonade.scss +38 -0
- data/stylesheets/compass/_configuration.scss +54 -0
- data/stylesheets/compass/_css3.scss +21 -0
- data/stylesheets/compass/_layout.scss +3 -0
- data/stylesheets/compass/_reset-legacy.scss +3 -0
- data/stylesheets/compass/_reset.scss +3 -0
- data/stylesheets/compass/_support.scss +441 -0
- data/stylesheets/compass/_typography.scss +4 -0
- data/stylesheets/compass/_utilities.scss +9 -0
- data/stylesheets/compass/css3/_animation.scss +122 -0
- data/stylesheets/compass/css3/_appearance.scss +17 -0
- data/stylesheets/compass/css3/_background-clip.scss +35 -0
- data/stylesheets/compass/css3/_background-origin.scss +37 -0
- data/stylesheets/compass/css3/_background-size.scss +19 -0
- data/stylesheets/compass/css3/_border-radius.scss +107 -0
- data/stylesheets/compass/css3/_box-shadow.scss +88 -0
- data/stylesheets/compass/css3/_box-sizing.scss +15 -0
- data/stylesheets/compass/css3/_box.scss +85 -0
- data/stylesheets/compass/css3/_columns.scss +210 -0
- data/stylesheets/compass/css3/_deprecated-support.scss +272 -0
- data/stylesheets/compass/css3/_filter.scss +50 -0
- data/stylesheets/compass/css3/_flexbox.scss +156 -0
- data/stylesheets/compass/css3/_font-face.scss +48 -0
- data/stylesheets/compass/css3/_hyphenation.scss +71 -0
- data/stylesheets/compass/css3/_images.scss +139 -0
- data/stylesheets/compass/css3/_inline-block.scss +31 -0
- data/stylesheets/compass/css3/_opacity.scss +23 -0
- data/stylesheets/compass/css3/_pie.scss +1 -0
- data/stylesheets/compass/css3/_regions.scss +27 -0
- data/stylesheets/compass/css3/_selection.scss +59 -0
- data/stylesheets/compass/css3/_shared.scss +5 -0
- data/stylesheets/compass/css3/_text-shadow.scss +82 -0
- data/stylesheets/compass/css3/_transform.scss +590 -0
- data/stylesheets/compass/css3/_transition.scss +171 -0
- data/stylesheets/compass/css3/_user-interface.scss +71 -0
- data/stylesheets/compass/layout/_grid-background.scss +178 -0
- data/stylesheets/compass/layout/_sticky-footer.scss +23 -0
- data/stylesheets/compass/layout/_stretching.scss +24 -0
- data/stylesheets/compass/reset/_utilities-legacy.scss +135 -0
- data/stylesheets/compass/reset/_utilities.scss +142 -0
- data/stylesheets/compass/typography/_links.scss +3 -0
- data/stylesheets/compass/typography/_lists.scss +4 -0
- data/stylesheets/compass/typography/_text.scss +4 -0
- data/stylesheets/compass/typography/_units.scss +152 -0
- data/stylesheets/compass/typography/_vertical_rhythm.scss +300 -0
- data/stylesheets/compass/typography/links/_hover-link.scss +5 -0
- data/stylesheets/compass/typography/links/_link-colors.scss +28 -0
- data/stylesheets/compass/typography/links/_unstyled-link.scss +7 -0
- data/stylesheets/compass/typography/lists/_bullets.scss +34 -0
- data/stylesheets/compass/typography/lists/_horizontal-list.scss +63 -0
- data/stylesheets/compass/typography/lists/_inline-block-list.scss +50 -0
- data/stylesheets/compass/typography/lists/_inline-list.scss +47 -0
- data/stylesheets/compass/typography/text/_ellipsis.scss +25 -0
- data/stylesheets/compass/typography/text/_force-wrap.scss +12 -0
- data/stylesheets/compass/typography/text/_nowrap.scss +2 -0
- data/stylesheets/compass/typography/text/_replacement.scss +68 -0
- data/stylesheets/compass/utilities/_color.scss +1 -0
- data/stylesheets/compass/utilities/_general.scss +6 -0
- data/stylesheets/compass/utilities/_links.scss +5 -0
- data/stylesheets/compass/utilities/_lists.scss +6 -0
- data/stylesheets/compass/utilities/_print.scss +17 -0
- data/stylesheets/compass/utilities/_sass.scss +2 -0
- data/stylesheets/compass/utilities/_sprites.scss +2 -0
- data/stylesheets/compass/utilities/_tables.scss +3 -0
- data/stylesheets/compass/utilities/_text.scss +5 -0
- data/stylesheets/compass/utilities/color/_brightness.scss +12 -0
- data/stylesheets/compass/utilities/color/_contrast.scss +52 -0
- data/stylesheets/compass/utilities/general/_clearfix.scss +44 -0
- data/stylesheets/compass/utilities/general/_float.scss +38 -0
- data/stylesheets/compass/utilities/general/_hacks.scss +65 -0
- data/stylesheets/compass/utilities/general/_min.scss +16 -0
- data/stylesheets/compass/utilities/general/_reset.scss +2 -0
- data/stylesheets/compass/utilities/general/_tabs.scss +1 -0
- data/stylesheets/compass/utilities/general/_tag-cloud.scss +18 -0
- data/stylesheets/compass/utilities/links/_hover-link.scss +3 -0
- data/stylesheets/compass/utilities/links/_link-colors.scss +3 -0
- data/stylesheets/compass/utilities/links/_unstyled-link.scss +3 -0
- data/stylesheets/compass/utilities/lists/_bullets.scss +3 -0
- data/stylesheets/compass/utilities/lists/_horizontal-list.scss +3 -0
- data/stylesheets/compass/utilities/lists/_inline-block-list.scss +3 -0
- data/stylesheets/compass/utilities/lists/_inline-list.scss +3 -0
- data/stylesheets/compass/utilities/sass/_lists.scss +16 -0
- data/stylesheets/compass/utilities/sass/_maps.scss +19 -0
- data/stylesheets/compass/utilities/sprites/_base.scss +92 -0
- data/stylesheets/compass/utilities/sprites/_sprite-img.scss +81 -0
- data/stylesheets/compass/utilities/tables/_alternating-rows-and-columns.scss +22 -0
- data/stylesheets/compass/utilities/tables/_borders.scss +38 -0
- data/stylesheets/compass/utilities/tables/_scaffolding.scss +9 -0
- data/stylesheets/compass/utilities/text/_ellipsis.scss +3 -0
- data/stylesheets/compass/utilities/text/_nowrap.scss +3 -0
- data/stylesheets/compass/utilities/text/_replacement.scss +3 -0
- data/templates/ellipsis/ellipsis.sass +9 -0
- data/templates/ellipsis/manifest.rb +27 -0
- data/templates/ellipsis/xml/ellipsis.xml +14 -0
- data/templates/extension/manifest.rb +26 -0
- data/templates/extension/stylesheets/main.sass +1 -0
- data/templates/extension/templates/project/manifest.rb +2 -0
- data/templates/extension/templates/project/screen.sass +2 -0
- data/templates/project/USAGE.markdown +32 -0
- data/templates/project/ie.sass +6 -0
- data/templates/project/manifest.rb +4 -0
- data/templates/project/print.sass +6 -0
- data/templates/project/screen.sass +7 -0
- metadata +241 -0
|
@@ -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: 0px;
|
|
21
|
+
top-width: 0px; };
|
|
22
|
+
&:last-child {
|
|
23
|
+
border-right-width: 0px; }
|
|
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: 0px; } } }
|
|
30
|
+
|
|
31
|
+
tbody, tfoot {
|
|
32
|
+
tr:last-child {
|
|
33
|
+
th, td {
|
|
34
|
+
border-bottom-width: 0px; } }
|
|
35
|
+
@if support-legacy-browser(ie, "8") {
|
|
36
|
+
tr.last {
|
|
37
|
+
th, td {
|
|
38
|
+
border-bottom-width: 0px; } } } } }
|
|
@@ -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,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,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
|
metadata
ADDED
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: compass-core
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0.alpha.13
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Chris Eppstein
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-11-27 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: sass
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 3.3.rc.1
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.3.rc.1
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: multi_json
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ~>
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ~>
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: bundler
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ~>
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.3'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ~>
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.3'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rake
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
description: The Compass core stylesheet library and minimum required ruby extensions.
|
|
70
|
+
This library can be used stand-alone without the compass ruby configuration file
|
|
71
|
+
or compass command line tools.
|
|
72
|
+
email:
|
|
73
|
+
- chris@eppsteins.net
|
|
74
|
+
executables: []
|
|
75
|
+
extensions: []
|
|
76
|
+
extra_rdoc_files: []
|
|
77
|
+
files:
|
|
78
|
+
- data/caniuse.json
|
|
79
|
+
- data/caniuse_extras/css-placeholder.json
|
|
80
|
+
- lib/compass-core.rb
|
|
81
|
+
- lib/compass/browser_support.rb
|
|
82
|
+
- lib/compass/configuration.rb
|
|
83
|
+
- lib/compass/configuration/data.rb
|
|
84
|
+
- lib/compass/configuration/defaults.rb
|
|
85
|
+
- lib/compass/configuration/inheritance.rb
|
|
86
|
+
- lib/compass/configuration/paths.rb
|
|
87
|
+
- lib/compass/core.rb
|
|
88
|
+
- lib/compass/core/caniuse.rb
|
|
89
|
+
- lib/compass/core/sass_extensions.rb
|
|
90
|
+
- lib/compass/core/sass_extensions/functions.rb
|
|
91
|
+
- lib/compass/core/sass_extensions/functions/colors.rb
|
|
92
|
+
- lib/compass/core/sass_extensions/functions/configuration.rb
|
|
93
|
+
- lib/compass/core/sass_extensions/functions/constants.rb
|
|
94
|
+
- lib/compass/core/sass_extensions/functions/cross_browser_support.rb
|
|
95
|
+
- lib/compass/core/sass_extensions/functions/display.rb
|
|
96
|
+
- lib/compass/core/sass_extensions/functions/enumerate.rb
|
|
97
|
+
- lib/compass/core/sass_extensions/functions/env.rb
|
|
98
|
+
- lib/compass/core/sass_extensions/functions/font_files.rb
|
|
99
|
+
- lib/compass/core/sass_extensions/functions/gradient_support.rb
|
|
100
|
+
- lib/compass/core/sass_extensions/functions/image_size.rb
|
|
101
|
+
- lib/compass/core/sass_extensions/functions/inline_image.rb
|
|
102
|
+
- lib/compass/core/sass_extensions/functions/lists.rb
|
|
103
|
+
- lib/compass/core/sass_extensions/functions/math.rb
|
|
104
|
+
- lib/compass/core/sass_extensions/functions/selectors.rb
|
|
105
|
+
- lib/compass/core/sass_extensions/functions/urls.rb
|
|
106
|
+
- lib/compass/core/sass_extensions/monkey_patches.rb
|
|
107
|
+
- lib/compass/core/sass_extensions/monkey_patches/browser_support.rb
|
|
108
|
+
- lib/compass/core/sass_extensions/monkey_patches/traversal.rb
|
|
109
|
+
- lib/compass/core/version.rb
|
|
110
|
+
- lib/compass/error.rb
|
|
111
|
+
- stylesheets/_compass.scss
|
|
112
|
+
- stylesheets/_lemonade.scss
|
|
113
|
+
- stylesheets/compass/_configuration.scss
|
|
114
|
+
- stylesheets/compass/_css3.scss
|
|
115
|
+
- stylesheets/compass/_layout.scss
|
|
116
|
+
- stylesheets/compass/_reset-legacy.scss
|
|
117
|
+
- stylesheets/compass/_reset.scss
|
|
118
|
+
- stylesheets/compass/_support.scss
|
|
119
|
+
- stylesheets/compass/_typography.scss
|
|
120
|
+
- stylesheets/compass/_utilities.scss
|
|
121
|
+
- stylesheets/compass/css3/_animation.scss
|
|
122
|
+
- stylesheets/compass/css3/_appearance.scss
|
|
123
|
+
- stylesheets/compass/css3/_background-clip.scss
|
|
124
|
+
- stylesheets/compass/css3/_background-origin.scss
|
|
125
|
+
- stylesheets/compass/css3/_background-size.scss
|
|
126
|
+
- stylesheets/compass/css3/_border-radius.scss
|
|
127
|
+
- stylesheets/compass/css3/_box-shadow.scss
|
|
128
|
+
- stylesheets/compass/css3/_box-sizing.scss
|
|
129
|
+
- stylesheets/compass/css3/_box.scss
|
|
130
|
+
- stylesheets/compass/css3/_columns.scss
|
|
131
|
+
- stylesheets/compass/css3/_deprecated-support.scss
|
|
132
|
+
- stylesheets/compass/css3/_filter.scss
|
|
133
|
+
- stylesheets/compass/css3/_flexbox.scss
|
|
134
|
+
- stylesheets/compass/css3/_font-face.scss
|
|
135
|
+
- stylesheets/compass/css3/_hyphenation.scss
|
|
136
|
+
- stylesheets/compass/css3/_images.scss
|
|
137
|
+
- stylesheets/compass/css3/_inline-block.scss
|
|
138
|
+
- stylesheets/compass/css3/_opacity.scss
|
|
139
|
+
- stylesheets/compass/css3/_pie.scss
|
|
140
|
+
- stylesheets/compass/css3/_regions.scss
|
|
141
|
+
- stylesheets/compass/css3/_selection.scss
|
|
142
|
+
- stylesheets/compass/css3/_shared.scss
|
|
143
|
+
- stylesheets/compass/css3/_text-shadow.scss
|
|
144
|
+
- stylesheets/compass/css3/_transform.scss
|
|
145
|
+
- stylesheets/compass/css3/_transition.scss
|
|
146
|
+
- stylesheets/compass/css3/_user-interface.scss
|
|
147
|
+
- stylesheets/compass/layout/_grid-background.scss
|
|
148
|
+
- stylesheets/compass/layout/_sticky-footer.scss
|
|
149
|
+
- stylesheets/compass/layout/_stretching.scss
|
|
150
|
+
- stylesheets/compass/reset/_utilities-legacy.scss
|
|
151
|
+
- stylesheets/compass/reset/_utilities.scss
|
|
152
|
+
- stylesheets/compass/typography/_links.scss
|
|
153
|
+
- stylesheets/compass/typography/_lists.scss
|
|
154
|
+
- stylesheets/compass/typography/_text.scss
|
|
155
|
+
- stylesheets/compass/typography/_units.scss
|
|
156
|
+
- stylesheets/compass/typography/_vertical_rhythm.scss
|
|
157
|
+
- stylesheets/compass/typography/links/_hover-link.scss
|
|
158
|
+
- stylesheets/compass/typography/links/_link-colors.scss
|
|
159
|
+
- stylesheets/compass/typography/links/_unstyled-link.scss
|
|
160
|
+
- stylesheets/compass/typography/lists/_bullets.scss
|
|
161
|
+
- stylesheets/compass/typography/lists/_horizontal-list.scss
|
|
162
|
+
- stylesheets/compass/typography/lists/_inline-block-list.scss
|
|
163
|
+
- stylesheets/compass/typography/lists/_inline-list.scss
|
|
164
|
+
- stylesheets/compass/typography/text/_ellipsis.scss
|
|
165
|
+
- stylesheets/compass/typography/text/_force-wrap.scss
|
|
166
|
+
- stylesheets/compass/typography/text/_nowrap.scss
|
|
167
|
+
- stylesheets/compass/typography/text/_replacement.scss
|
|
168
|
+
- stylesheets/compass/utilities/_color.scss
|
|
169
|
+
- stylesheets/compass/utilities/_general.scss
|
|
170
|
+
- stylesheets/compass/utilities/_links.scss
|
|
171
|
+
- stylesheets/compass/utilities/_lists.scss
|
|
172
|
+
- stylesheets/compass/utilities/_print.scss
|
|
173
|
+
- stylesheets/compass/utilities/_sass.scss
|
|
174
|
+
- stylesheets/compass/utilities/_sprites.scss
|
|
175
|
+
- stylesheets/compass/utilities/_tables.scss
|
|
176
|
+
- stylesheets/compass/utilities/_text.scss
|
|
177
|
+
- stylesheets/compass/utilities/color/_brightness.scss
|
|
178
|
+
- stylesheets/compass/utilities/color/_contrast.scss
|
|
179
|
+
- stylesheets/compass/utilities/general/_clearfix.scss
|
|
180
|
+
- stylesheets/compass/utilities/general/_float.scss
|
|
181
|
+
- stylesheets/compass/utilities/general/_hacks.scss
|
|
182
|
+
- stylesheets/compass/utilities/general/_min.scss
|
|
183
|
+
- stylesheets/compass/utilities/general/_reset.scss
|
|
184
|
+
- stylesheets/compass/utilities/general/_tabs.scss
|
|
185
|
+
- stylesheets/compass/utilities/general/_tag-cloud.scss
|
|
186
|
+
- stylesheets/compass/utilities/links/_hover-link.scss
|
|
187
|
+
- stylesheets/compass/utilities/links/_link-colors.scss
|
|
188
|
+
- stylesheets/compass/utilities/links/_unstyled-link.scss
|
|
189
|
+
- stylesheets/compass/utilities/lists/_bullets.scss
|
|
190
|
+
- stylesheets/compass/utilities/lists/_horizontal-list.scss
|
|
191
|
+
- stylesheets/compass/utilities/lists/_inline-block-list.scss
|
|
192
|
+
- stylesheets/compass/utilities/lists/_inline-list.scss
|
|
193
|
+
- stylesheets/compass/utilities/sass/_lists.scss
|
|
194
|
+
- stylesheets/compass/utilities/sass/_maps.scss
|
|
195
|
+
- stylesheets/compass/utilities/sprites/_base.scss
|
|
196
|
+
- stylesheets/compass/utilities/sprites/_sprite-img.scss
|
|
197
|
+
- stylesheets/compass/utilities/tables/_alternating-rows-and-columns.scss
|
|
198
|
+
- stylesheets/compass/utilities/tables/_borders.scss
|
|
199
|
+
- stylesheets/compass/utilities/tables/_scaffolding.scss
|
|
200
|
+
- stylesheets/compass/utilities/text/_ellipsis.scss
|
|
201
|
+
- stylesheets/compass/utilities/text/_nowrap.scss
|
|
202
|
+
- stylesheets/compass/utilities/text/_replacement.scss
|
|
203
|
+
- templates/ellipsis/ellipsis.sass
|
|
204
|
+
- templates/ellipsis/manifest.rb
|
|
205
|
+
- templates/ellipsis/xml/ellipsis.xml
|
|
206
|
+
- templates/extension/manifest.rb
|
|
207
|
+
- templates/extension/stylesheets/main.sass
|
|
208
|
+
- templates/extension/templates/project/manifest.rb
|
|
209
|
+
- templates/extension/templates/project/screen.sass
|
|
210
|
+
- templates/project/USAGE.markdown
|
|
211
|
+
- templates/project/ie.sass
|
|
212
|
+
- templates/project/manifest.rb
|
|
213
|
+
- templates/project/print.sass
|
|
214
|
+
- templates/project/screen.sass
|
|
215
|
+
- VERSION
|
|
216
|
+
- LICENSE.txt
|
|
217
|
+
homepage: http://compass-style.org/reference/compass/
|
|
218
|
+
licenses:
|
|
219
|
+
- MIT
|
|
220
|
+
metadata: {}
|
|
221
|
+
post_install_message:
|
|
222
|
+
rdoc_options: []
|
|
223
|
+
require_paths:
|
|
224
|
+
- lib
|
|
225
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
226
|
+
requirements:
|
|
227
|
+
- - '>='
|
|
228
|
+
- !ruby/object:Gem::Version
|
|
229
|
+
version: '0'
|
|
230
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
231
|
+
requirements:
|
|
232
|
+
- - '>'
|
|
233
|
+
- !ruby/object:Gem::Version
|
|
234
|
+
version: 1.3.1
|
|
235
|
+
requirements: []
|
|
236
|
+
rubyforge_project:
|
|
237
|
+
rubygems_version: 2.0.3
|
|
238
|
+
signing_key:
|
|
239
|
+
specification_version: 4
|
|
240
|
+
summary: The Compass core stylesheet library
|
|
241
|
+
test_files: []
|