Skip to content

Commit b07f303

Browse files
committed
Merge branch 'stable'
* stable: (36 commits) Tweak the changelog. [CSS3] The box-shadow $spread value now defaults to using the browser default instead of 0. update the lockfile some todos Move the contributing guide to the tutorials section. add on-page anchors to the command line reference page. Better docs on the grid image command. Move the tutorials to the main nav... I don't think most people see it. Don't set the display in the box-flex mixin. This makes nested flex boxes annoying. Closes GH-207 Add a note about the colorization change. Add a note about the compass validator Only colorize the action when logging results. Update to use the new compass validator during development. Fix broken test cases. Support true in addition to the inset keyword for the box-shadow mixin. Closes GH-206 IE8 compat for :last-child selector Make the compass configuration file more self documenting by adding comments for preferred_syntax, output_style, and line_comments. Pass --no-line-comments to disable line comments. A little less noise during installation. Change the default Sass directory in standalone projects from src to sass. Closes GH-203 ... Conflicts: TODO.md VERSION.yml doc-src/content/CHANGELOG.markdown features/command_line.feature features/step_definitions/command_line_steps.rb lib/compass/commands/write_configuration.rb
2 parents cd6ce54 + af850ca commit b07f303

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+649
-99
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ coverage*
2121
docs
2222
doc-src/tmp
2323
doc-src/.bundle
24+
.bundle
25+
devbin

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ gem "compass", :path => "."
44
gem "cucumber"
55
gem "rspec"
66
gem "rails", "~>3.0.0.rc"
7-
gem "compass-validator", "1.0.0"
7+
gem "compass-validator", "3.0.0"
88
gem "css_parser"
99
gem "sass"
1010
gem "rcov"

TODO.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ FYI: I'm abandoning the even/odd release numbering scheme in favor of using prev
44
* 0.11.0.beta.N (tagged, new features expected)
55
* 0.11.0.rc.N (tagged, no new features expected)
66

7+
MUST:
8+
* A proper welcome page for blueprint projects (or delete it)
9+
* Rails Integration
10+
11+
NICE:
12+
* some extension commands
13+
* Better help for commands and patterns
14+
* Color Palette extraction and management commands
15+
716
v0.11
817
=====
918
Planned Release Date: Aug 2, 2010

doc-src/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ GIT
99
PATH
1010
remote: /Users/chris/Projects/compass
1111
specs:
12-
compass (0.10.5)
12+
compass (0.10.6)
1313
haml (>= 3.0.4)
1414

1515
GEM

doc-src/content/CHANGELOG.markdown

+24
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,28 @@ COMPASS CHANGELOG
2020
* Some color defaults now use color functions instead of color arithmetic.
2121
This may result in different output for those who have color customizations.
2222

23+
0.10.7 (UNRELEASED)
24+
-------------------
25+
* [Command Line] compass config -p <property> -- will now print out the configuration value
26+
for that property for the current project
27+
* [CSS3] Bug fix: In webkit, when the last gradient color stop was a percent less than 100%,
28+
the intermediate values were being scaled to that value.
29+
* [Command Line] You can now pass --no-line-comments to the Compass command line to disable
30+
line comments.
31+
* [Configuration] Make the compass configuration file more self documenting by adding comments
32+
for `preferred_syntax`, `output_style`, and `line_comments`.
33+
* Work around IE compatibility issues with the :last-child selector.
34+
[Commit](http://github.com/jdsiegel/compass/commit/c1fb764dba9c54cc5d02f2f7de213fb21ac6ca09).
35+
* [Command Line] Only the action is colorized in command line output now.
36+
* [Command Line] Compass Validator has been upgraded and fine-tuned. It is now using the
37+
"css3" profile to validate and provides a more consistent UI with other compass commands.
38+
To upgrade: `gem install compass-validator`
39+
* [CSS3] The box-shadow `$spread` value now defaults to using the browser default instead of 0.
40+
Set $default-box-shadow-spread to 0 if you prefer the older behavior. Since the browser is supposed
41+
to default to 0, you should see no change except less CSS output.
42+
* [CSS3] The output order of the `box-shadow` mixin now matches the W3C specification.
43+
The color and inset values used to be swapped.
44+
2345
0.10.6 (10/11/2010)
2446
-------------------
2547

@@ -28,6 +50,8 @@ COMPASS CHANGELOG
2850
* Make it easier to disable the asset cache buster: `asset_cache_buster :none`
2951
* Can now set `$padding` to `false` to make the `horizontal-list` mixin skip the
3052
padding properties.
53+
* It is now possible to disable support for legacy IE browsers.
54+
See [the docs](/docs/reference/compass/support/) for more information.
3155

3256
0.10.5 (08/29/2010)
3357
-------------------

doc-src/content/index.haml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ body_id: home
3535
compass watch myproject
3636

3737
If you don't have TextMate, substitute the `mate myproject` part with the text
38-
editor of your choice. Edit the `*.scss` files in the `src` directory.
38+
editor of your choice. Edit the `*.scss` files in the `sass` directory.
3939
These files are yours and you can change them as you see fit, delete them,
4040
make new ones, etc. Compass will automatically compile them into css in the
4141
`stylesheets` directory whenever they change.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Compass Cross-Browser Support Configuration
3+
crumb: Browser Support
4+
framework: compass
5+
stylesheet: compass/_support.scss
6+
classnames:
7+
- reference
8+
- core
9+
- support
10+
meta_description: Provides configuration options for the Compass Browser Support Matrix.
11+
layout: core
12+
nav_stylesheet: _compass.scss
13+
---
14+
- render 'reference' do
15+
%p
16+
You can configure the compass default browser support matrix by
17+
setting these variables as needed.

doc-src/content/stylesheets/screen.sass

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* Welcome to Susy. Use this file to define screen styles.
22
* Import this file using the following HTML or equivalent:
33
* <link href="/stylesheets/screen.css" media="screen" rel="stylesheet" type="text/css" />
4-
4+
@charset "UTF-8"
55
@import defaults
66
@import slideshow
77
@import shared
@@ -57,9 +57,6 @@ footer[role="contentinfo"]
5757
background: #cccccc
5858
cursor: default
5959

60-
+active-compass-nav("#home,.reference", "/docs/")
61-
+active-compass-nav(".tutorial", "/docs/tutorials/")
62-
6360
#docs-nav
6461
+pie-clearfix
6562
+leading-border(1px, 0.25)
@@ -108,6 +105,8 @@ footer[role="contentinfo"]
108105
+active-docs("#home", "/docs/")
109106
+active-docs(".core", "/docs/reference/compass/")
110107
+active-docs(".blueprint", "/docs/reference/blueprint/")
108+
+active-docs(".tutorial", "/docs/tutorials/")
109+
111110

112111
#version
113112
+adjust-font-size-to(14px)
@@ -213,6 +212,8 @@ aside[role="sidebar"] + article
213212
margin-right: 1.5em
214213
&:first-child
215214
+alpha
215+
a.selected:before
216+
content: ""
216217
+ #page
217218
+leader(1.5)
218219

doc-src/content/tutorials/best_practices.markdown

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
title: Best practices
33
crumb: Best practices
44
layout: tutorial
5+
classnames:
6+
- tutorial
57
---
68
### Use a Base stylesheet file
79

doc-src/content/tutorials/command-line.markdown

+31-2
Original file line numberDiff line numberDiff line change
@@ -39,74 +39,103 @@ Extensions Commands
3939

4040
Project Commands
4141
----------------
42-
42+
<a name="create"/>
4343
### Create a new compass project
4444

4545
compass create path/to/project [--using blueprint] [--sass-dir=sass ...] [--project-type=rails]
4646

47-
47+
<a name="init"/>
4848
### Initialize an existing project to work with compass
4949

5050
compass init rails path/to/project [--using blueprint]
5151

52+
<a name="install"/>
5253
### Install a pattern from an extension into a project
5354

5455
compass install blueprint/buttons [path/to/project]
5556

57+
<a name="compile"/>
5658
### Compile the project's sass files into css
5759

5860
compass compile [path/to/project]
5961

62+
<a name="watch"/>
6063
### Watch the project for changes and compile whenever it does
6164

6265
compass watch [path/to/project]
6366

67+
<a name="config"/>
6468
### Emit a configuration file at the location specified.
6569

6670
compass config [path/to/config] [--sass-dir=sass --css-dir=css ...]
6771

72+
<a name="validate"/>
6873
### Validate the generated CSS.
6974

7075
compass validate [path/to/project]
7176

7277
Misc commands
7378
-------------
7479

80+
<a name="grid-img"/>
7581
### Generate a background image that can be used to verify grid alignment
7682

7783
compass grid-img W+GxH [path/to/grid.png]
7884

85+
Where:
86+
<dl class="table">
87+
<dg><dt><code>W</code> = </dt><dd>Width of 1 column in pixels.</dd></dg>
88+
<dg><dt><code>G</code> = </dt><dd>Width of 1 gutter in pixels.</dd></dg>
89+
<dg><dt><code>H</code> = </dt><dd>Height of the typographic baseline in pixels.</dd></dg>
90+
</dl>
91+
Examples:
92+
93+
# 40px column, 10px gutter, 20px height at <images_dir>/grid.png
94+
compass grid-img 40+10
95+
# 40px column, 20px gutter, 28px height at <images_dir>/grid.png
96+
compass grid-img 40+20x28
97+
# 60px column, 20px gutter, 28px height at images/wide_grid.png
98+
compass grid-img 60+20x28 images/wide_grid.png
99+
100+
<a name="interactive"/>
79101
### Enter into a console for testing SassScript in a compass environment.
80102

81103
compass interactive
82104

105+
<a name="stats"/>
83106
### Print out statistics about your stylesheets
84107

85108
compass stats
86109

110+
<a name="version"/>
87111
### Emit the version of compass
88112

89113
compass version
90114

115+
<a name="unpack"/>
91116
### Unpack a framework or extension into your project
92117

93118
compass unpack <extension>
94119

95120
Get Help on the Command Line
96121
----------------------------
97122

123+
<a name="help"/>
98124
### Get help on compass
99125

100126
compass help
101127

128+
<a name="help-extension"/>
102129
### Get help on an extension
103130

104131
compass help extension_name
105132

133+
<a name="help-pattern"/>
106134
### Get help about an extension pattern
107135

108136
compass help extension_name/pattern_name
109137

138+
<a name="help-command"/>
110139
### Get help about a particular sub command
111140

112141
compass help command_name

0 commit comments

Comments
 (0)