gridle 2.0.41 → 2.0.42
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gridle.rb +2 -2
- data/stylesheets/gridle/_driver-default.scss +5 -0
- data/stylesheets/gridle/_init.scss +14 -4
- data/stylesheets/gridle/_settings.scss +0 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a691251acdb9b9299be8b799d9a83d8d581183a0
|
4
|
+
data.tar.gz: b3a4fada10916e5b8de12c521423051a0193d50b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ecaed447b4cd802f0bddf7a91099f03e20b20e904339a7bef70fc0448378b513c2231ff263bfdc78b69d02639cdf7d0fac1f233ecf7e5df0805fd905f80506d
|
7
|
+
data.tar.gz: 01fe0488f69f75e37e8c4278054a5518611d48816cbed819995c4ec2ec4a3ad1cb3a709bc2b5ad86a4bc72f259bd6f3db8d621a9cdfdcc93074c1d329c5aa0d3
|
data/lib/gridle.rb
CHANGED
@@ -17,8 +17,8 @@ Compass::Frameworks.register('gridle', :path => extension_path)
|
|
17
17
|
# a prerelease version
|
18
18
|
# Date is in the form of YYYY-MM-DD
|
19
19
|
module Extension
|
20
|
-
VERSION = "2.0.
|
21
|
-
DATE = "2015-
|
20
|
+
VERSION = "2.0.42"
|
21
|
+
DATE = "2015-11-03"
|
22
22
|
end
|
23
23
|
|
24
24
|
# This is where any custom SassScript should be placed. The functions will be
|
@@ -1,9 +1,9 @@
|
|
1
1
|
// |------------------------------------------------------
|
2
2
|
// |------------------------------------------------------
|
3
3
|
// @created 25.03.13
|
4
|
-
// @updated
|
4
|
+
// @updated 03.11.15
|
5
5
|
// @author Olivier Bossel <olivier.bossel@gmail.com>
|
6
|
-
// @version 2.0.
|
6
|
+
// @version 2.0.42
|
7
7
|
// |------------------------------------------------------
|
8
8
|
// |------------------------------------------------------
|
9
9
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
// |------------------------------------------------------
|
17
17
|
// |------------------------------------------------------
|
18
18
|
|
19
|
-
$_gridle-version : "2.0.
|
19
|
+
$_gridle-version : "2.0.42";
|
20
20
|
|
21
21
|
|
22
22
|
|
@@ -27,7 +27,17 @@ $_gridle-version : "2.0.41";
|
|
27
27
|
// |------------------------------------------------------
|
28
28
|
// |------------------------------------------------------
|
29
29
|
|
30
|
-
$gridle-debug : true;
|
30
|
+
$gridle-debug : true;
|
31
|
+
$_gridle-names-tokens : (
|
32
|
+
column : true, // will be the columns names
|
33
|
+
column-count : true, // will represent the column index (1,2,3,...)
|
34
|
+
align : left center right top middle bottom around between,
|
35
|
+
float : left right both,
|
36
|
+
count : true, // will represent a certain count
|
37
|
+
side : top right bottom left,
|
38
|
+
reverse : '' reverse
|
39
|
+
);
|
40
|
+
$_gridle-names-separators : ('-','--','_','__','@'); // all the allowed separators
|
31
41
|
$_gridle_is_in_generate_phase : false; // keep track if we are in generate phase or not anymore
|
32
42
|
$_gridle_inited : false; // keep track if gridle has been inited (silent classes, etc..) or not
|
33
43
|
$_gridle_settings : (); // the default settings
|
@@ -5,17 +5,6 @@
|
|
5
5
|
// |------------------------------------------------------
|
6
6
|
|
7
7
|
$gridle-generate-json-settings : true !default;
|
8
|
-
|
9
|
-
$_gridle-names-separators : ('-','--','_','__','@');
|
10
|
-
$_gridle-names-tokens : (
|
11
|
-
column : true, // will be the columns names
|
12
|
-
column-count : true, // will represent the column index (1,2,3,...)
|
13
|
-
align : left center right top middle bottom around between,
|
14
|
-
float : left right both,
|
15
|
-
count : true, // will represent a certain count
|
16
|
-
side : top right bottom left,
|
17
|
-
reverse : '' reverse
|
18
|
-
);
|
19
8
|
$_gridle-packages : (
|
20
9
|
container : (
|
21
10
|
classname : ('container','@','%state'),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gridle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.42
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Olivier Bossel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|