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.
|
1
|
+
0.3.1
|
data/compass.gemspec
CHANGED
@@ -30,32 +30,32 @@
|
|
30
30
|
// A container should group all your columns
|
31
31
|
.container
|
32
32
|
+container
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
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
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
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
|