ezy 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/ezy.gemspec +2 -2
- data/sass/ezy/_grid.scss +2 -2
- data/sass/ezy/grid/_helpers.scss +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc58234d018abfc8788b76eac2b990c4571e0a09
|
4
|
+
data.tar.gz: 3b3aed70d23c741a9acb044f668de87184622fa7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50f7bef55b01ab13ae70bfb0021a81ed69bfaadd58445a5a30bbf80ae535ef377c0c9b50e5138270c82569f2766277743eb8d9b09c599d2b34377caf6139afce
|
7
|
+
data.tar.gz: f39497f0ca6f898f267b42cdcf81a90135fc2bb3ba8facb3d0c958b930019af7626372358fdc92a718aab7b9d130b6ab9dd0abb8e60ff0210cfed05286ef96e8
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.9
|
data/ezy.gemspec
CHANGED
data/sass/ezy/_grid.scss
CHANGED
@@ -108,7 +108,7 @@ $init-gutter-property: $gutter-property;
|
|
108
108
|
) {
|
109
109
|
$pullout: -( $gutter-width )/2;
|
110
110
|
@if $is-fluid and $context {
|
111
|
-
$pullout: -( percentage
|
111
|
+
$pullout: -( percentage( $gutter-width / layout-width( $context ) ) )/2;
|
112
112
|
} @else if $is-fluid {
|
113
113
|
@warn $context-warn;
|
114
114
|
}
|
@@ -199,7 +199,7 @@ $init-gutter-property: $gutter-property;
|
|
199
199
|
@if $is-fluid and $context {
|
200
200
|
/* Spanning #{ $columns } of #{ $context } columns */
|
201
201
|
$context-width: context-width( $context );
|
202
|
-
$pct-width: percentage
|
202
|
+
$pct-width: percentage( $width / $context-width );
|
203
203
|
width: $pct-width;
|
204
204
|
} @else {
|
205
205
|
/* Spanning #{ $columns } columns */
|
data/sass/ezy/grid/_helpers.scss
CHANGED
@@ -75,7 +75,7 @@
|
|
75
75
|
$context: $total-columns
|
76
76
|
) {
|
77
77
|
@if $is-fluid and $context {
|
78
|
-
@return percentage
|
78
|
+
@return percentage( layout-width( $columns ) / context-width( $context ) );
|
79
79
|
} @else if $is-fluid {
|
80
80
|
@warn $context-warn;
|
81
81
|
} @else {
|
@@ -96,7 +96,7 @@
|
|
96
96
|
$context: $total-columns
|
97
97
|
) {
|
98
98
|
@if $is-fluid and $context {
|
99
|
-
@return ( percentage
|
99
|
+
@return ( percentage( ( $gutter-width ) / context-width( $context ) ) );
|
100
100
|
} @else if $is-fluid {
|
101
101
|
@warn $context-warn;
|
102
102
|
} @else {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ezy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frej Raahede Nielsen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-12-
|
11
|
+
date: 2013-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: compass
|
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
version: '0'
|
167
167
|
requirements: []
|
168
168
|
rubyforge_project:
|
169
|
-
rubygems_version: 2.1.
|
169
|
+
rubygems_version: 2.1.11
|
170
170
|
signing_key:
|
171
171
|
specification_version: 4
|
172
172
|
summary: The developer's toolbox for responsive websites
|