compass 0.11.3 → 0.11.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/features/command_line.feature +9 -0
- data/features/step_definitions/command_line_steps.rb +7 -0
- data/frameworks/blueprint/stylesheets/blueprint/_debug.scss +2 -2
- data/frameworks/blueprint/stylesheets/blueprint/_form.scss +1 -1
- data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +4 -1
- data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +1 -1
- data/frameworks/compass/stylesheets/compass/css3/_images.scss +1 -4
- data/frameworks/compass/stylesheets/compass/css3/_opacity.scss +1 -4
- data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +2 -0
- data/frameworks/compass/stylesheets/compass/css3/_transition.scss +35 -1
- data/frameworks/compass/stylesheets/compass/typography/_text.scss +1 -0
- data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +74 -14
- data/frameworks/compass/stylesheets/compass/typography/text/_force-wrap.scss +12 -0
- data/lib/compass.rb +1 -1
- data/lib/compass/commands/base.rb +9 -1
- data/lib/compass/commands/project_base.rb +2 -2
- data/lib/compass/commands/update_project.rb +2 -1
- data/lib/compass/compiler.rb +5 -2
- data/lib/compass/configuration.rb +2 -1
- data/lib/compass/configuration/adapters.rb +2 -2
- data/lib/compass/configuration/defaults.rb +4 -0
- data/lib/compass/exec/sub_command_ui.rb +4 -3
- data/lib/compass/sass_extensions/functions/inline_image.rb +2 -0
- data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +3 -2
- data/test/fixtures/stylesheets/blueprint/css/screen.css +5 -5
- data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +4 -4
- data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +1 -1
- data/test/fixtures/stylesheets/compass/css/force-wrap.css +9 -0
- data/test/fixtures/stylesheets/compass/css/gradients.css +0 -3
- data/test/fixtures/stylesheets/compass/css/opacity.css +0 -1
- data/test/fixtures/stylesheets/compass/sass/force-wrap.scss +3 -0
- data/test/fixtures/stylesheets/compass/tmp/border_radius.css +23 -0
- data/test/fixtures/stylesheets/compass/tmp/box.css +103 -0
- data/test/fixtures/stylesheets/compass/tmp/box_shadow.css +17 -0
- data/test/fixtures/stylesheets/compass/tmp/columns.css +47 -0
- data/test/fixtures/stylesheets/compass/tmp/fonts.css +4 -0
- data/test/fixtures/stylesheets/compass/tmp/force-wrap.css +9 -0
- data/test/fixtures/stylesheets/compass/tmp/gradients.css +576 -0
- data/test/fixtures/stylesheets/compass/tmp/grid_background.css +78 -0
- data/test/fixtures/stylesheets/compass/tmp/image_size.css +15 -0
- data/test/fixtures/stylesheets/compass/tmp/images.css +8 -0
- data/test/fixtures/stylesheets/compass/tmp/layout.css +16 -0
- data/test/fixtures/stylesheets/compass/tmp/legacy_clearfix.css +26 -0
- data/test/fixtures/stylesheets/compass/tmp/lists.css +153 -0
- data/test/fixtures/stylesheets/compass/tmp/opacity.css +3 -0
- data/test/fixtures/stylesheets/compass/tmp/pie.css +28 -0
- data/test/fixtures/stylesheets/compass/tmp/print.css +11 -0
- data/test/fixtures/stylesheets/compass/tmp/reset.css +60 -0
- data/test/fixtures/stylesheets/compass/tmp/sprites.css +1262 -0
- data/test/fixtures/stylesheets/compass/tmp/stretching.css +66 -0
- data/test/fixtures/stylesheets/compass/tmp/text_shadow.css +14 -0
- data/test/fixtures/stylesheets/compass/tmp/transform.css +333 -0
- data/test/fixtures/stylesheets/compass/tmp/utilities.css +36 -0
- data/test/fixtures/stylesheets/compass/tmp/vertical_rhythm.css +42 -0
- metadata +78 -3
@@ -0,0 +1,42 @@
|
|
1
|
+
body {
|
2
|
+
font-size: 87.5%;
|
3
|
+
line-height: 1.143em; }
|
4
|
+
|
5
|
+
html > body {
|
6
|
+
font-size: 14px; }
|
7
|
+
|
8
|
+
.small {
|
9
|
+
font-size: 0.857em;
|
10
|
+
line-height: 1.333em; }
|
11
|
+
|
12
|
+
.padded {
|
13
|
+
margin-top: 1.143em;
|
14
|
+
padding-top: 1.143em;
|
15
|
+
padding-bottom: 1.143em;
|
16
|
+
margin-bottom: 1.143em; }
|
17
|
+
|
18
|
+
.small-padded {
|
19
|
+
font-size: 0.857em;
|
20
|
+
line-height: 1.333em;
|
21
|
+
margin-top: 1.333em;
|
22
|
+
padding-top: 1.333em;
|
23
|
+
padding-bottom: 1.333em;
|
24
|
+
margin-bottom: 1.333em; }
|
25
|
+
|
26
|
+
.borders {
|
27
|
+
border-top-style: solid;
|
28
|
+
border-top-width: 0.071em;
|
29
|
+
padding-top: 1.071em;
|
30
|
+
border-bottom-style: solid;
|
31
|
+
border-bottom-width: 0.071em;
|
32
|
+
padding-bottom: 1.071em; }
|
33
|
+
|
34
|
+
.large-borders {
|
35
|
+
font-size: 1.714em;
|
36
|
+
line-height: 2em;
|
37
|
+
border-top-style: solid;
|
38
|
+
border-top-width: 0.25em;
|
39
|
+
padding-top: 0.417em;
|
40
|
+
border-bottom-style: solid;
|
41
|
+
border-bottom-width: 0.25em;
|
42
|
+
padding-bottom: 0.417em; }
|
metadata
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 59
|
4
5
|
prerelease:
|
5
|
-
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 11
|
9
|
+
- 4
|
10
|
+
version: 0.11.4
|
6
11
|
platform: ruby
|
7
12
|
authors:
|
8
13
|
- Chris Eppstein
|
@@ -14,7 +19,7 @@ autorequire:
|
|
14
19
|
bindir: bin
|
15
20
|
cert_chain: []
|
16
21
|
|
17
|
-
date: 2011-
|
22
|
+
date: 2011-07-03 00:00:00 -07:00
|
18
23
|
default_executable:
|
19
24
|
dependencies:
|
20
25
|
- !ruby/object:Gem::Dependency
|
@@ -25,6 +30,10 @@ dependencies:
|
|
25
30
|
requirements:
|
26
31
|
- - ~>
|
27
32
|
- !ruby/object:Gem::Version
|
33
|
+
hash: 5
|
34
|
+
segments:
|
35
|
+
- 3
|
36
|
+
- 1
|
28
37
|
version: "3.1"
|
29
38
|
type: :runtime
|
30
39
|
version_requirements: *id001
|
@@ -36,6 +45,10 @@ dependencies:
|
|
36
45
|
requirements:
|
37
46
|
- - ~>
|
38
47
|
- !ruby/object:Gem::Version
|
48
|
+
hash: 11
|
49
|
+
segments:
|
50
|
+
- 1
|
51
|
+
- 2
|
39
52
|
version: "1.2"
|
40
53
|
type: :runtime
|
41
54
|
version_requirements: *id002
|
@@ -47,6 +60,11 @@ dependencies:
|
|
47
60
|
requirements:
|
48
61
|
- - ">="
|
49
62
|
- !ruby/object:Gem::Version
|
63
|
+
hash: 25
|
64
|
+
segments:
|
65
|
+
- 0
|
66
|
+
- 2
|
67
|
+
- 7
|
50
68
|
version: 0.2.7
|
51
69
|
type: :runtime
|
52
70
|
version_requirements: *id003
|
@@ -545,6 +563,7 @@ files:
|
|
545
563
|
- frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss
|
546
564
|
- frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss
|
547
565
|
- frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss
|
566
|
+
- frameworks/compass/stylesheets/compass/typography/text/_force-wrap.scss
|
548
567
|
- frameworks/compass/stylesheets/compass/typography/text/_nowrap.scss
|
549
568
|
- frameworks/compass/stylesheets/compass/typography/text/_replacement.scss
|
550
569
|
- frameworks/compass/stylesheets/compass/utilities/_color.scss
|
@@ -833,6 +852,7 @@ files:
|
|
833
852
|
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
834
853
|
- test/fixtures/stylesheets/compass/css/columns.css
|
835
854
|
- test/fixtures/stylesheets/compass/css/fonts.css
|
855
|
+
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
836
856
|
- test/fixtures/stylesheets/compass/css/gradients.css
|
837
857
|
- test/fixtures/stylesheets/compass/css/grid_background.css
|
838
858
|
- test/fixtures/stylesheets/compass/css/image_size.css
|
@@ -1108,6 +1128,7 @@ files:
|
|
1108
1128
|
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
1109
1129
|
- test/fixtures/stylesheets/compass/sass/columns.scss
|
1110
1130
|
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
1131
|
+
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
1111
1132
|
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
1112
1133
|
- test/fixtures/stylesheets/compass/sass/grid_background.scss
|
1113
1134
|
- test/fixtures/stylesheets/compass/sass/image_size.sass
|
@@ -1125,6 +1146,29 @@ files:
|
|
1125
1146
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
1126
1147
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
1127
1148
|
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
1149
|
+
- test/fixtures/stylesheets/compass/tmp/border_radius.css
|
1150
|
+
- test/fixtures/stylesheets/compass/tmp/box.css
|
1151
|
+
- test/fixtures/stylesheets/compass/tmp/box_shadow.css
|
1152
|
+
- test/fixtures/stylesheets/compass/tmp/columns.css
|
1153
|
+
- test/fixtures/stylesheets/compass/tmp/fonts.css
|
1154
|
+
- test/fixtures/stylesheets/compass/tmp/force-wrap.css
|
1155
|
+
- test/fixtures/stylesheets/compass/tmp/gradients.css
|
1156
|
+
- test/fixtures/stylesheets/compass/tmp/grid_background.css
|
1157
|
+
- test/fixtures/stylesheets/compass/tmp/image_size.css
|
1158
|
+
- test/fixtures/stylesheets/compass/tmp/images.css
|
1159
|
+
- test/fixtures/stylesheets/compass/tmp/layout.css
|
1160
|
+
- test/fixtures/stylesheets/compass/tmp/legacy_clearfix.css
|
1161
|
+
- test/fixtures/stylesheets/compass/tmp/lists.css
|
1162
|
+
- test/fixtures/stylesheets/compass/tmp/opacity.css
|
1163
|
+
- test/fixtures/stylesheets/compass/tmp/pie.css
|
1164
|
+
- test/fixtures/stylesheets/compass/tmp/print.css
|
1165
|
+
- test/fixtures/stylesheets/compass/tmp/reset.css
|
1166
|
+
- test/fixtures/stylesheets/compass/tmp/sprites.css
|
1167
|
+
- test/fixtures/stylesheets/compass/tmp/stretching.css
|
1168
|
+
- test/fixtures/stylesheets/compass/tmp/text_shadow.css
|
1169
|
+
- test/fixtures/stylesheets/compass/tmp/transform.css
|
1170
|
+
- test/fixtures/stylesheets/compass/tmp/utilities.css
|
1171
|
+
- test/fixtures/stylesheets/compass/tmp/vertical_rhythm.css
|
1128
1172
|
- test/fixtures/stylesheets/error/config.rb
|
1129
1173
|
- test/fixtures/stylesheets/error/sass/screen.sass
|
1130
1174
|
- test/fixtures/stylesheets/image_urls/config.rb
|
@@ -1180,17 +1224,23 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1180
1224
|
requirements:
|
1181
1225
|
- - ">="
|
1182
1226
|
- !ruby/object:Gem::Version
|
1227
|
+
hash: 3
|
1228
|
+
segments:
|
1229
|
+
- 0
|
1183
1230
|
version: "0"
|
1184
1231
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1185
1232
|
none: false
|
1186
1233
|
requirements:
|
1187
1234
|
- - ">="
|
1188
1235
|
- !ruby/object:Gem::Version
|
1236
|
+
hash: 3
|
1237
|
+
segments:
|
1238
|
+
- 0
|
1189
1239
|
version: "0"
|
1190
1240
|
requirements: []
|
1191
1241
|
|
1192
1242
|
rubyforge_project:
|
1193
|
-
rubygems_version: 1.
|
1243
|
+
rubygems_version: 1.6.2
|
1194
1244
|
signing_key:
|
1195
1245
|
specification_version: 3
|
1196
1246
|
summary: A Real Stylesheet Framework
|
@@ -1274,6 +1324,7 @@ test_files:
|
|
1274
1324
|
- test/fixtures/stylesheets/compass/css/box_shadow.css
|
1275
1325
|
- test/fixtures/stylesheets/compass/css/columns.css
|
1276
1326
|
- test/fixtures/stylesheets/compass/css/fonts.css
|
1327
|
+
- test/fixtures/stylesheets/compass/css/force-wrap.css
|
1277
1328
|
- test/fixtures/stylesheets/compass/css/gradients.css
|
1278
1329
|
- test/fixtures/stylesheets/compass/css/grid_background.css
|
1279
1330
|
- test/fixtures/stylesheets/compass/css/image_size.css
|
@@ -1549,6 +1600,7 @@ test_files:
|
|
1549
1600
|
- test/fixtures/stylesheets/compass/sass/box_shadow.scss
|
1550
1601
|
- test/fixtures/stylesheets/compass/sass/columns.scss
|
1551
1602
|
- test/fixtures/stylesheets/compass/sass/fonts.sass
|
1603
|
+
- test/fixtures/stylesheets/compass/sass/force-wrap.scss
|
1552
1604
|
- test/fixtures/stylesheets/compass/sass/gradients.sass
|
1553
1605
|
- test/fixtures/stylesheets/compass/sass/grid_background.scss
|
1554
1606
|
- test/fixtures/stylesheets/compass/sass/image_size.sass
|
@@ -1566,6 +1618,29 @@ test_files:
|
|
1566
1618
|
- test/fixtures/stylesheets/compass/sass/transform.scss
|
1567
1619
|
- test/fixtures/stylesheets/compass/sass/utilities.scss
|
1568
1620
|
- test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
|
1621
|
+
- test/fixtures/stylesheets/compass/tmp/border_radius.css
|
1622
|
+
- test/fixtures/stylesheets/compass/tmp/box.css
|
1623
|
+
- test/fixtures/stylesheets/compass/tmp/box_shadow.css
|
1624
|
+
- test/fixtures/stylesheets/compass/tmp/columns.css
|
1625
|
+
- test/fixtures/stylesheets/compass/tmp/fonts.css
|
1626
|
+
- test/fixtures/stylesheets/compass/tmp/force-wrap.css
|
1627
|
+
- test/fixtures/stylesheets/compass/tmp/gradients.css
|
1628
|
+
- test/fixtures/stylesheets/compass/tmp/grid_background.css
|
1629
|
+
- test/fixtures/stylesheets/compass/tmp/image_size.css
|
1630
|
+
- test/fixtures/stylesheets/compass/tmp/images.css
|
1631
|
+
- test/fixtures/stylesheets/compass/tmp/layout.css
|
1632
|
+
- test/fixtures/stylesheets/compass/tmp/legacy_clearfix.css
|
1633
|
+
- test/fixtures/stylesheets/compass/tmp/lists.css
|
1634
|
+
- test/fixtures/stylesheets/compass/tmp/opacity.css
|
1635
|
+
- test/fixtures/stylesheets/compass/tmp/pie.css
|
1636
|
+
- test/fixtures/stylesheets/compass/tmp/print.css
|
1637
|
+
- test/fixtures/stylesheets/compass/tmp/reset.css
|
1638
|
+
- test/fixtures/stylesheets/compass/tmp/sprites.css
|
1639
|
+
- test/fixtures/stylesheets/compass/tmp/stretching.css
|
1640
|
+
- test/fixtures/stylesheets/compass/tmp/text_shadow.css
|
1641
|
+
- test/fixtures/stylesheets/compass/tmp/transform.css
|
1642
|
+
- test/fixtures/stylesheets/compass/tmp/utilities.css
|
1643
|
+
- test/fixtures/stylesheets/compass/tmp/vertical_rhythm.css
|
1569
1644
|
- test/fixtures/stylesheets/error/config.rb
|
1570
1645
|
- test/fixtures/stylesheets/error/sass/screen.sass
|
1571
1646
|
- test/fixtures/stylesheets/image_urls/config.rb
|