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 +2 -2
- data/framework/vgrid/_elastic.scss +1 -1
- data/framework/vgrid/_fixed.scss +1 -1
- data/framework/vgrid/_fluid.scss +1 -1
- data/framework/vgrid/shared/_grid_system.scss +1 -1
- data/templates/elastic/screen.scss +1 -1
- data/templates/fixed/screen.scss +1 -1
- data/templates/fluid/screen.scss +1 -1
- metadata +3 -3
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
|
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
|
68
|
+
@include container;
|
69
69
|
#header, #footer {
|
70
70
|
@include grid(16);
|
71
71
|
}
|
data/framework/vgrid/_fixed.scss
CHANGED
data/framework/vgrid/_fluid.scss
CHANGED
@@ -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
|
41
|
+
.container_#{$cols} {@include container;}
|
42
42
|
/* Grid */
|
43
43
|
@include grids($cols);
|
44
44
|
/* Grid >> Children (Alpha ~ First, Omega ~ Last) */
|
data/templates/fixed/screen.scss
CHANGED
data/templates/fluid/screen.scss
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 4
|
8
|
-
-
|
9
|
-
version: 0.4.
|
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-
|
17
|
+
date: 2010-04-14 00:00:00 +01:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|