chriseppstein-compass 0.8.7 → 0.8.8
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.
- data/CHANGELOG.markdown +23 -0
- data/REVISION +1 -1
- data/VERSION.yml +1 -1
- data/examples/blueprint_default/parts/forms.html.haml +61 -1
- data/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass +1 -1
- data/frameworks/yui/stylesheets/yui/modules/_grids.sass +1 -1
- metadata +2 -2
data/CHANGELOG.markdown
CHANGED
|
@@ -1,6 +1,29 @@
|
|
|
1
1
|
COMPASS CHANGELOG
|
|
2
2
|
=================
|
|
3
3
|
|
|
4
|
+
0.8.8 (July 21, 2009)
|
|
5
|
+
---------------------
|
|
6
|
+
|
|
7
|
+
Bug Fix Release:
|
|
8
|
+
* [Compass Core] Fixed a bug in alternating_rows_and_columns. Improper nesting caused some styles to be improperly rendered.
|
|
9
|
+
[Commit](http://github.com/chriseppstein/compass/commit/e277ed2cd3fded0b98ddaa87fc4d3b9d37cb7354)
|
|
10
|
+
* [YUI] Fixed a bug in yui grids where the .first div wouldn't get the right styles in some rare cases due to incorrect nesting.
|
|
11
|
+
[Commit](http://github.com/chriseppstein/compass/commit/4bfcef4f376ee6e5d5a2b47419d2f21ef4c6eff8)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
0.8.7 (July 09, 2009)
|
|
15
|
+
---------------------
|
|
16
|
+
|
|
17
|
+
Bug Fix Release:
|
|
18
|
+
* Load haml-edge only if it's all new and shiny. Closes GH-26.
|
|
19
|
+
[Commit](http://github.com/chriseppstein/compass/commit/59a6067b3a67a79bfd9a5ce325fc1be4bb6c9e78)
|
|
20
|
+
* [Blueprint] Added more descriptive comments to the Blueprint IE template.
|
|
21
|
+
[Commit](http://github.com/chriseppstein/compass/commit/8684966be1e8166a986ae81abd3daf6c44ed4f94)
|
|
22
|
+
* [Rails] Fixed a bug in rails integration if the request is not set on the controller.
|
|
23
|
+
[Commit](http://github.com/chriseppstein/compass/commit/7fba6028d8073a9124a6505aab9246b5b459db34)
|
|
24
|
+
* [Blueprint] Fixed a bug in the calculations for the +colborder mixin. Closes GH-25.
|
|
25
|
+
[Commit](http://github.com/chriseppstein/compass/commit/d2b1370c80a32f70ae6ec94126b737f4f0fc0851)
|
|
26
|
+
|
|
4
27
|
0.8.6 (July 08, 2009)
|
|
5
28
|
---------------------
|
|
6
29
|
|
data/REVISION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
6ae3f9ad066142c738d884222285a5b189145637
|
data/VERSION.yml
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
%link{ :href => "../stylesheets/screen.css", :rel => "stylesheet", :media => "screen, projection", :type => "text/css" }
|
|
10
10
|
%link{ :href => "../stylesheets/print.css", :rel => "stylesheet", :media => "print", :type => "text/css" }
|
|
11
11
|
/
|
|
12
|
-
[if IE]><link rel="stylesheet" href="../stylesheets/ie.css" type="text/css" media="screen, projection"><![endif]
|
|
12
|
+
[if lt IE 8]><link rel="stylesheet" href="../stylesheets/ie.css" type="text/css" media="screen, projection"><![endif]
|
|
13
13
|
%body
|
|
14
14
|
.container.showgrid
|
|
15
15
|
%h1
|
|
@@ -124,6 +124,66 @@
|
|
|
124
124
|
%input{ :type => "checkbox" }
|
|
125
125
|
Check three
|
|
126
126
|
%br
|
|
127
|
+
.span-24.last
|
|
128
|
+
%fieldset
|
|
129
|
+
%legend
|
|
130
|
+
Alignment
|
|
131
|
+
%p
|
|
132
|
+
%label{ :for => "dummy5" }
|
|
133
|
+
Select field
|
|
134
|
+
%select#dummy5{ :name => "dummy5" }
|
|
135
|
+
%option{ :value => "1" }
|
|
136
|
+
Ottawa
|
|
137
|
+
%option{ :value => "2" }
|
|
138
|
+
Calgary
|
|
139
|
+
%option{ :value => "3" }
|
|
140
|
+
Moosejaw
|
|
141
|
+
%p
|
|
142
|
+
%label{ :for => "dummy6" }
|
|
143
|
+
Text input (title)
|
|
144
|
+
%input#dummy6.title{ :name => "dummy6", :type => "text", :value => "Field with class .title" }
|
|
145
|
+
%p
|
|
146
|
+
%label{ :for => "dummy7" }
|
|
147
|
+
Select field
|
|
148
|
+
%select#dummy7{ :name => "dummy7" }
|
|
149
|
+
%option{ :value => "1" }
|
|
150
|
+
Ottawa
|
|
151
|
+
%option{ :value => "2" }
|
|
152
|
+
Calgary
|
|
153
|
+
%option{ :value => "3" }
|
|
154
|
+
Moosejaw
|
|
155
|
+
%label{ :for => "dummy8" }
|
|
156
|
+
Another field
|
|
157
|
+
%input#dummy8.text{ :name => "dummy8", :type => "text", :value => "Field with class .text" }
|
|
158
|
+
.span-24.last
|
|
159
|
+
%form.inline{ :action => "", :method => "post" }
|
|
160
|
+
%fieldset
|
|
161
|
+
%legend
|
|
162
|
+
A form with class "inline"
|
|
163
|
+
.span-3
|
|
164
|
+
%label{ :for => "a" }
|
|
165
|
+
Label A:
|
|
166
|
+
%select#a{ :name => "a" }
|
|
167
|
+
%option{ :value => "0" }
|
|
168
|
+
All
|
|
169
|
+
.span-2
|
|
170
|
+
some text
|
|
171
|
+
.span-3
|
|
172
|
+
%input#o.checkbox{ :type => "checkbox", :name => "o", :value => "true", :checked => "checked" }
|
|
173
|
+
checkbox one
|
|
174
|
+
.span-3
|
|
175
|
+
%label{ :for => "b" }
|
|
176
|
+
Label B:
|
|
177
|
+
%select#b{ :name => "b" }
|
|
178
|
+
%option{ :value => "0" }
|
|
179
|
+
All
|
|
180
|
+
.span-2
|
|
181
|
+
%a{ :href => "" }
|
|
182
|
+
A Hyperlink
|
|
183
|
+
.span-8
|
|
184
|
+
%input#q.text{ :type => "text", :name => "q", :value => "Field with class .text" }
|
|
185
|
+
.span-2.last
|
|
186
|
+
%input.button{ :type => "submit", :value => "submit" }
|
|
127
187
|
%hr
|
|
128
188
|
%p
|
|
129
189
|
%a{ :href => "http://validator.w3.org/check?uri=referer" }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chriseppstein-compass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Eppstein
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-07-
|
|
12
|
+
date: 2009-07-21 00:00:00 -07:00
|
|
13
13
|
default_executable: compass
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|