compass-vgrid-plugin 0.4.1 → 0.4.2

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/README.md CHANGED
@@ -53,7 +53,7 @@ Typically, you will want to customize your grid system. vGrid provides a number
53
53
 
54
54
  It's preferable not to use meaningless class names in your HTML markup. A better solution is to mix the styles from the grid system in with your semantic IDs and classes. vGrid provides a number of mixins to allow this:
55
55
 
56
- * `@include grid_container;` - Declares a container element.
56
+ * `@include container;` - Declares a container element.
57
57
  * `@include grid;` - Declares a grid element.
58
58
  * `@include alpha;` & `@include omega;` - Removes the left and right margins from the grid element.
59
59
  * `@include prefix;` & `@include suffix;` - Adds columns before or after the grid element.
@@ -65,7 +65,7 @@ For example:
65
65
  $vgrid_columns: 16;
66
66
 
67
67
  #wrap {
68
- @include grid_container;
68
+ @include container;
69
69
  #header, #footer {
70
70
  @include grid(16);
71
71
  }
@@ -1,4 +1,4 @@
1
- @mixin grid_container {
1
+ @mixin container {
2
2
  margin-left: 4%; margin-right: 4%; min-width: $vgrid_width; width: 92%;
3
3
  }
4
4
 
@@ -1,4 +1,4 @@
1
- @mixin grid_container {
1
+ @mixin container {
2
2
  margin-left: auto; margin-right: auto; width: $vgrid_width;
3
3
  }
4
4
 
@@ -1,4 +1,4 @@
1
- @mixin grid_container {
1
+ @mixin container {
2
2
  margin-left: 4%; margin-right: 4%; width: 92%;
3
3
  }
4
4
 
@@ -38,7 +38,7 @@ $vgrid_gutter: 20px !default;
38
38
 
39
39
  @mixin grid_system($cols: $vgrid_columns) {
40
40
  /* Container */
41
- .container_#{$cols} {@include grid_container;}
41
+ .container_#{$cols} {@include container;}
42
42
  /* Grid */
43
43
  @include grids($cols);
44
44
  /* Grid >> Children (Alpha ~ First, Omega ~ Last) */
@@ -19,7 +19,7 @@
19
19
  // (two column layout with header and footer)
20
20
  $vgrid_columns: 16;
21
21
  #wrap {
22
- @include grid_container;
22
+ @include container;
23
23
  #header, #footer {
24
24
  @include grid(16);
25
25
  }
@@ -19,7 +19,7 @@
19
19
  // (two column layout with header and footer)
20
20
  $vgrid_columns: 16;
21
21
  #wrap {
22
- @include grid_container;
22
+ @include container;
23
23
  #header, #footer {
24
24
  @include grid(16);
25
25
  }
@@ -19,7 +19,7 @@
19
19
  // (two column layout with header and footer)
20
20
  $vgrid_columns: 16;
21
21
  #wrap {
22
- @include grid_container;
22
+ @include container;
23
23
  #header, #footer {
24
24
  @include grid(16);
25
25
  }
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 1
9
- version: 0.4.1
8
+ - 2
9
+ version: 0.4.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Aaron Russell
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-13 00:00:00 +01:00
17
+ date: 2010-04-14 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency