chriseppstein-compass 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
data/compass.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{compass}
3
- s.version = "0.3.0"
3
+ s.version = "0.3.1"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Chris Eppstein"]
@@ -30,32 +30,32 @@
30
30
  // A container should group all your columns
31
31
  .container
32
32
  +container
33
- // Use these classes (or mixins) to set the width of a column.
34
- @for !n from 1 to !blueprint_grid_columns + 1
35
- .span-#{!n}
36
- +span(!n)
37
- div
38
- &.span-#{!n}
39
- +column(!n, !n == !blueprint_grid_columns)
40
- // The last column in a row needs this class (or mixin) or it will end up on the next row.
41
- div.last
42
- +last
43
- // Add these to a column to append empty cols.
44
- @for !n from 1 to !blueprint_grid_columns
45
- .append-#{!n}
46
- +append(!n)
47
- // Add these to a column to prepend empty cols.
48
- @for !n from 1 to !blueprint_grid_columns
49
- .prepend-#{!n}
50
- +prepend(!n)
51
- // Use these classes on an element to push it into the
52
- // next column, or to pull it into the previous column.
53
- @for !n from 1 to !blueprint_grid_columns + 1
54
- .pull-#{!n}
55
- +pull(!n)
56
- @for !n from 1 to !blueprint_grid_columns + 1
57
- .push-#{!n}
58
- +push(!n)
33
+ // Use these classes (or mixins) to set the width of a column.
34
+ @for !n from 1 to !blueprint_grid_columns + 1
35
+ .span-#{!n}
36
+ +span(!n)
37
+ div
38
+ &.span-#{!n}
39
+ +column(!n, !n == !blueprint_grid_columns)
40
+ // The last column in a row needs this class (or mixin) or it will end up on the next row.
41
+ div.last
42
+ +last
43
+ // Add these to a column to append empty cols.
44
+ @for !n from 1 to !blueprint_grid_columns
45
+ .append-#{!n}
46
+ +append(!n)
47
+ // Add these to a column to prepend empty cols.
48
+ @for !n from 1 to !blueprint_grid_columns
49
+ .prepend-#{!n}
50
+ +prepend(!n)
51
+ // Use these classes on an element to push it into the
52
+ // next column, or to pull it into the previous column.
53
+ @for !n from 1 to !blueprint_grid_columns + 1
54
+ .pull-#{!n}
55
+ +pull(!n)
56
+ @for !n from 1 to !blueprint_grid_columns + 1
57
+ .push-#{!n}
58
+ +push(!n)
59
59
 
60
60
 
61
61
  // Columns
@@ -48,32 +48,32 @@
48
48
  // A container should group all your columns
49
49
  .container
50
50
  +container
51
- // Use these classes (or mixins) to set the width of a column.
52
- @for !n from 1 to !blueprint_liquid_grid_columns + 1
53
- .span-#{!n}
54
- +span(!n)
55
- div
56
- &.span-#{!n}
57
- +column(!n, !n == !blueprint_liquid_grid_columns)
58
- // The last column in a row needs this class (or mixin) or it will end up on the next row.
59
- div.last
60
- +last
61
- // Add these to a column to append empty cols.
62
- @for !n from 1 to !blueprint_liquid_grid_columns
63
- .append-#{!n}
64
- +append(!n)
65
- // Add these to a column to prepend empty cols.
66
- @for !n from 1 to !blueprint_liquid_grid_columns
67
- .prepend-#{!n}
68
- +prepend(!n)
69
- // Use these classes on an element to push it into the
70
- // next column, or to pull it into the previous column.
71
- @for !n from 1 to !blueprint_liquid_grid_columns + 1
72
- .pull-#{!n}
73
- +pull(!n)
74
- @for !n from 1 to !blueprint_liquid_grid_columns + 1
75
- .push-#{!n}
76
- +push(!n)
51
+ // Use these classes (or mixins) to set the width of a column.
52
+ @for !n from 1 to !blueprint_liquid_grid_columns + 1
53
+ .span-#{!n}
54
+ +span(!n)
55
+ div
56
+ &.span-#{!n}
57
+ +column(!n, !n == !blueprint_liquid_grid_columns)
58
+ // The last column in a row needs this class (or mixin) or it will end up on the next row.
59
+ div.last
60
+ +last
61
+ // Add these to a column to append empty cols.
62
+ @for !n from 1 to !blueprint_liquid_grid_columns
63
+ .append-#{!n}
64
+ +append(!n)
65
+ // Add these to a column to prepend empty cols.
66
+ @for !n from 1 to !blueprint_liquid_grid_columns
67
+ .prepend-#{!n}
68
+ +prepend(!n)
69
+ // Use these classes on an element to push it into the
70
+ // next column, or to pull it into the previous column.
71
+ @for !n from 1 to !blueprint_liquid_grid_columns + 1
72
+ .pull-#{!n}
73
+ +pull(!n)
74
+ @for !n from 1 to !blueprint_liquid_grid_columns + 1
75
+ .push-#{!n}
76
+ +push(!n)
77
77
 
78
78
  =container
79
79
  :min-width= !blueprint_liquid_container_min_width
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.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Eppstein