susy 1.0.alpha.0 → 1.0.alpha.1
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.mkdn +9 -3
- data/REFERENCE.mkdn +2 -2
- data/VERSION +1 -1
- data/sass/susy/_background.scss +2 -0
- data/sass/susy/_grid.scss +1 -1
- data/susy.gemspec +2 -2
- metadata +4 -4
data/CHANGELOG.mkdn
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
Susy Changelog
|
2
2
|
==============
|
3
3
|
|
4
|
-
v1.0 [
|
5
|
-
|
4
|
+
v1.0.alpha.1 [May 9 2012]
|
5
|
+
-------------------------
|
6
|
+
|
7
|
+
Due to a conflict with the Compass CSS3 module, the `columns` mixin has been
|
8
|
+
renamed `span-columns`. For the time being, there is a deprecation warning, but it will be removed entirely in the next alpha update. You should be able to search and replace `@include columns` (or `+columns`) in your project files.
|
9
|
+
|
10
|
+
v1.0.alpha.0 [May 7 2012]
|
11
|
+
-------------------------
|
6
12
|
|
7
|
-
*Requires
|
13
|
+
*Requires Compass 0.13.alpha.0 or later.*
|
8
14
|
|
9
15
|
This release is loaded with new features, but don't let that fool you. Susy
|
10
16
|
just became shockingly simple to use. See the README for updated usage details.
|
data/REFERENCE.mkdn
CHANGED
@@ -66,7 +66,7 @@ $grid-padding : $gutter-width !default;
|
|
66
66
|
nav { @include columns(3,12); }
|
67
67
|
article { @include columns(9 omega,12); }
|
68
68
|
```
|
69
|
-
**Columns**: `columns(<$columns> [<omega> , <$context>, <$from>])`
|
69
|
+
**Span Columns**: `span-columns(<$columns> [<omega> , <$context>, <$from>])`
|
70
70
|
- _Apply to any element to align it with the Susy Grid._
|
71
71
|
- `<$columns>`: The number of _Columns_ to span, with optional `<omega>` flag.
|
72
72
|
- `<$context>`: Current nesting _Context_.
|
@@ -234,7 +234,7 @@ that you can put where you want, and use for advanced math.
|
|
234
234
|
.item { width: columns(3,6); }
|
235
235
|
```
|
236
236
|
**Columns**: `columns(<$columns> [, <$context>])`
|
237
|
-
- _Identical to `columns` mixin, but returns the math-ready
|
237
|
+
- _Identical to `span-columns` mixin, but returns the math-ready `%`._
|
238
238
|
- `<$columns>`: The number of _Columns_ to span,
|
239
239
|
- `<$context>`: The _Context_.
|
240
240
|
- Default: `$total-columns`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.alpha.
|
1
|
+
1.0.alpha.1
|
data/sass/susy/_background.scss
CHANGED
data/sass/susy/_grid.scss
CHANGED
@@ -78,7 +78,7 @@
|
|
78
78
|
// : Context is required on any nested elements.
|
79
79
|
// : Context MUST NOT be declared on a root element.
|
80
80
|
// $from : The start direction of your layout (e.g. 'left' for ltr languages)
|
81
|
-
@mixin columns(
|
81
|
+
@mixin span-columns(
|
82
82
|
$columns,
|
83
83
|
$context : $total-columns,
|
84
84
|
$from : $from-direction
|
data/susy.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "susy"
|
5
|
-
s.version = "1.0.alpha.
|
5
|
+
s.version = "1.0.alpha.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Eric Meyer"]
|
9
|
-
s.date = "2012-05-
|
9
|
+
s.date = "2012-05-10"
|
10
10
|
s.description = "Responsive web design with grids the quick and reliable way."
|
11
11
|
s.email = "eric@oddbird.net"
|
12
12
|
s.extra_rdoc_files = ["CHANGELOG.mkdn", "LICENSE.txt", "README.mkdn", "lib/susy.rb"]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: susy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: -
|
4
|
+
hash: -3702664258
|
5
5
|
prerelease: 4
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
9
|
- alpha
|
10
|
-
-
|
11
|
-
version: 1.0.alpha.
|
10
|
+
- 1
|
11
|
+
version: 1.0.alpha.1
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Eric Meyer
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2012-05-
|
19
|
+
date: 2012-05-10 00:00:00 Z
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: compass
|