ericam-compass-susy-plugin 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.4
1
+ 0.1.5
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{compass-susy-plugin}
5
- s.version = "0.1.4"
5
+ s.version = "0.1.5"
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"]
data/sass/susy/_grid.sass CHANGED
@@ -7,14 +7,14 @@
7
7
  +clearfix
8
8
  :margin-left auto
9
9
  :margin-right auto
10
- :width= (!grid * !col_width) + ((!grid - 1) * !gutter_width) + !grid_unit
10
+ :width= (!total_cols * !col_width) + ((!total_cols - 1) * !gutter_width) + !grid_unit
11
11
  :max-width 99%
12
12
 
13
- =get_col_width(!n, !context = !total_cols)
13
+ =get-col-width(!n, !context = !total_cols)
14
14
  :width= ((!n * !col_width) + ((!n - 1) * !gutter_width)) / ((!context * !col_width) + ((!context - 1) * !gutter_width)) * 100 + "%"
15
15
 
16
16
  =grid-col(!n, !context = !total_cols)
17
- +get_col_width(!n, !context)
17
+ +get-col-width(!n, !context)
18
18
  :display inline
19
19
  :float left
20
20
  :margin-right= !gutter_width / ((!context * !col_width) + ((!context - 1) * !gutter_width)) * 100 + "%"
@@ -27,7 +27,7 @@
27
27
  :float right
28
28
 
29
29
  =grid-prefix(!n, !context = !total_cols)
30
- :padding-left= ((!n * !col_width) + ((!n) * !gutter_width)) / ((!context * !col_width) + ((!context - 1) * !gutter_width)) * 100 + "%"
30
+ :padding-left= ((!n * !col_width) + (!n * !gutter_width)) / ((!context * !col_width) + ((!context - 1) * !gutter_width)) * 100 + "%"
31
31
 
32
32
  =grid-suffix(!n, !context = !total_cols)
33
- :padding-right= ((!n * !col_width) + ((!n - 1) * !gutter_width)) / ((!context * !col_width) + ((!context - 1) * !gutter_width)) * 100 + "%"
33
+ :padding-right= ((!n * !col_width) + (!n * !gutter_width)) / ((!context * !col_width) + ((!context - 1) * !gutter_width)) * 100 + "%"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ericam-compass-susy-plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Meyer