singularity-extras 1.0.0.alpha.2 → 1.0.0.alpha.3
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
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32efe77b00f578a5f1a17a27c1c711e204b9d40d
|
4
|
+
data.tar.gz: 8755f2e4f7f03a884013086543afca47e39ba892
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb2b01955d2ee3c7f209a8a8067a39f67490edc29f3b333158924c09fa50d7195d185d62f46f6ae0a379fbd02e7e251a2335b27732f91097ba5c6d6333bf1956
|
7
|
+
data.tar.gz: c5cfa7c9a03f5b86d02ec9e07025a70d8d5ee3a59cf7e3750316281d20384b3a4dfc3b9a5b1ec719cd8646fb2cbe0ea1baa9663a1649a3934d7da27a1c77565f
|
data/lib/singularity-extras.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: singularity-extras
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.alpha.
|
4
|
+
version: 1.0.0.alpha.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Kellum
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-02-
|
12
|
+
date: 2013-02-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: singularitygs
|
@@ -51,7 +51,6 @@ files:
|
|
51
51
|
- stylesheets/_singularity-extras.scss
|
52
52
|
- stylesheets/singularity-extras/_generators.scss
|
53
53
|
- stylesheets/singularity-extras/_helpers.scss
|
54
|
-
- stylesheets/singularity-extras/_layouts.scss
|
55
54
|
- stylesheets/singularity-extras/_outputs.scss
|
56
55
|
- stylesheets/singularity-extras/generators/_compound.scss
|
57
56
|
- stylesheets/singularity-extras/generators/_ratio-spiral.scss
|
@@ -60,7 +59,6 @@ files:
|
|
60
59
|
- stylesheets/singularity-extras/helpers/_list-sum.scss
|
61
60
|
- stylesheets/singularity-extras/helpers/_repeat.scss
|
62
61
|
- stylesheets/singularity-extras/helpers/_reverse.scss
|
63
|
-
- stylesheets/singularity-extras/layouts/_layout.scss
|
64
62
|
- stylesheets/singularity-extras/outputs/_calc.scss
|
65
63
|
homepage: http://singularity.gs
|
66
64
|
licenses: []
|
@@ -1 +0,0 @@
|
|
1
|
-
@import "layouts/layout";
|
@@ -1,28 +0,0 @@
|
|
1
|
-
//////////////////////////////
|
2
|
-
// Wrapper mixin for overriding the global contexts as a block
|
3
|
-
//////////////////////////////
|
4
|
-
@mixin layout($grid: false, $gutter: false, $output-style: false) {
|
5
|
-
// Private holder for current global context
|
6
|
-
$layout-private-grid-holder: $grids;
|
7
|
-
$layout-private-gutter-holder: $gutters;
|
8
|
-
$layout-private-output-holder: $output;
|
9
|
-
|
10
|
-
// Overides current global contexts, but only if needed
|
11
|
-
@if $grid != false {
|
12
|
-
$grids: $grid;
|
13
|
-
}
|
14
|
-
@if $gutter != false {
|
15
|
-
$gutters: $gutter;
|
16
|
-
}
|
17
|
-
@if $output-style != false {
|
18
|
-
$output: $output-style;
|
19
|
-
}
|
20
|
-
|
21
|
-
// All the things!
|
22
|
-
@content;
|
23
|
-
|
24
|
-
// Resets global contexts
|
25
|
-
$grids: $layout-private-grid-holder;
|
26
|
-
$gutters: $layout-private-gutter-holder;
|
27
|
-
$output: $layout-private-output-holder;
|
28
|
-
}
|