singularitygs 1.0.0 → 1.0.1
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/lib/singularitygs.rb +2 -2
- data/stylesheets/singularitygs/_api.scss +11 -11
- metadata +3 -3
data/lib/singularitygs.rb
CHANGED
@@ -1,37 +1,37 @@
|
|
1
|
-
@mixin grid-span($span, $location, $
|
1
|
+
@mixin grid-span($span, $location, $grid: false, $gutter: false, $output-style: $output, $options: false) {
|
2
2
|
|
3
3
|
@if $output-style == 'float' {
|
4
|
-
@include output-float($span, $location, $
|
4
|
+
@include output-float($span, $location, $grid, $gutter, $options);
|
5
5
|
}
|
6
6
|
@else if $output-style == 'isolation' {
|
7
|
-
@include output-isolation($span, $location, $
|
7
|
+
@include output-isolation($span, $location, $grid, $gutter, $options);
|
8
8
|
}
|
9
9
|
}
|
10
10
|
|
11
|
-
@mixin push($span, $location, $
|
11
|
+
@mixin push($span, $location, $grid: false, $gutter: false, $output-style: $output) {
|
12
12
|
|
13
13
|
@if $output-style == 'float' {
|
14
|
-
@include push-float($span, $location, $
|
14
|
+
@include push-float($span, $location, $grid, $gutter);
|
15
15
|
}
|
16
16
|
@else if $output-style == 'isolation' {
|
17
|
-
@include push-isolation($span, $location, $
|
17
|
+
@include push-isolation($span, $location, $grid, $gutter);
|
18
18
|
}
|
19
19
|
}
|
20
20
|
|
21
|
-
@mixin pull($span, $location, $
|
21
|
+
@mixin pull($span, $location, $grid: false, $gutter: false, $output-style: $output) {
|
22
22
|
|
23
23
|
@if $output-style == 'float' {
|
24
|
-
@include pull-float($span, $location, $
|
24
|
+
@include pull-float($span, $location, $grid, $gutter);
|
25
25
|
}
|
26
26
|
@else if $output-style == 'isolation' {
|
27
|
-
@include pull-isolation($span, $location, $
|
27
|
+
@include pull-isolation($span, $location, $grid, $gutter);
|
28
28
|
}
|
29
29
|
}
|
30
30
|
|
31
|
-
@mixin isolate($span, $location, $
|
31
|
+
@mixin isolate($span, $location, $grid: false, $gutter: false, $output-style: $output) {
|
32
32
|
|
33
33
|
@if $output-style == 'float' {
|
34
|
-
@include isolate-float($span, $location, $
|
34
|
+
@include isolate-float($span, $location, $grid, $gutter);
|
35
35
|
}
|
36
36
|
}
|
37
37
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 1.0.
|
8
|
+
- 1
|
9
|
+
version: 1.0.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Scott Kellum
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2013-04-
|
18
|
+
date: 2013-04-02 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|