singularitygs 1.1.1 → 1.1.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: 895af402088776c38e8a09019ac53a2a387b91db
|
|
4
|
-
data.tar.gz: baba26472894899ca2accbd64cc0c83bc1cf4fa1
|
|
5
2
|
SHA512:
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
data.tar.gz: 9bd5f9cb1cec2ea2abdac9b10f08739fcdfb434ab893407288392ac87f34abe753ffd59c2037bc7c4cb17a4f82916e50a39520a7c1e1b9af487ba55c4c3dc06d
|
|
4
|
+
metadata.gz: a80c3265806c357e5b5af5b7eff905662f824e9bea412cf5237d9ca29856e7577d29d5bc8d12d73cbd068bc7d22192605fb3bfb94c9443079cdb71e4c4243c37
|
|
5
|
+
SHA1:
|
|
6
|
+
data.tar.gz: 13f176ec322bfb02fee62f3901105c91ce1998e5
|
|
7
|
+
metadata.gz: 1bd5f24e9faa1a5727193d09220e14b0fd395dd0
|
data/lib/singularitygs.rb
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
$fixed-gutter: fixed-gutter($columns, $gutter);
|
|
22
22
|
$gutter-property: gutter-property($columns, $gutter);
|
|
23
23
|
|
|
24
|
-
width: column-span($span, $location-holder, $columns, $gutter);
|
|
24
|
+
width: column-span($span, $location-holder, $columns, $gutter, $gutter-style);
|
|
25
25
|
|
|
26
26
|
@if $direction == 'ltr' or $direction == 'both' {
|
|
27
27
|
// Set the CSS direction to ltr
|
|
@@ -10,16 +10,13 @@
|
|
|
10
10
|
$gutter-property: gutter-property($columns, $gutter);
|
|
11
11
|
$split: index($gutter-style, split);
|
|
12
12
|
|
|
13
|
-
$margin-span: column-span(($location - 1), 1, $columns);
|
|
13
|
+
$margin-span: column-span(($location - 1), 1, $columns, $gutter, $gutter-style);
|
|
14
14
|
|
|
15
15
|
@if not $fixed-gutter {
|
|
16
16
|
$margin-span: $margin-span + $gutter-span;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
// @debug $options;
|
|
21
|
-
|
|
22
|
-
|
|
23
20
|
@if $direction == 'ltr' or $direction == 'both' {
|
|
24
21
|
// Set the CSS direction to ltr
|
|
25
22
|
$cssdir: 'ltr';
|
|
@@ -27,7 +24,7 @@
|
|
|
27
24
|
$dir: named-direction($cssdir);
|
|
28
25
|
$opp: opposite-direction($dir);
|
|
29
26
|
|
|
30
|
-
width: column-span($span, $location, $columns);
|
|
27
|
+
width: column-span($span, $location, $columns, $gutter, $gutter-style);
|
|
31
28
|
|
|
32
29
|
// If we are at the last item in the row, we float it the opposite direction
|
|
33
30
|
@if ($end-row) {
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: singularitygs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott Kellum
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2013-
|
|
13
|
+
date: 2013-08-01 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: sass
|