titon-toolkit 2.1.3 → 2.1.4

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: 014b7119768d95e93f3344055485cb0636bd2109
4
- data.tar.gz: a2f7202e70fc1f49002b336cc3f32acbf10aa7da
3
+ metadata.gz: 3a47c4012bfd8b3f0d2fe50bdacfc31fa1f9de9a
4
+ data.tar.gz: 692cdcff60a5ee4a246aaf9ba779c971bfb840eb
5
5
  SHA512:
6
- metadata.gz: 6e75a07607962b27f70476ea88da9d238c4accd677740aae6cc878d62e749916b6b18cf801203bc3e8c8c78fa099594c727e4e98e4f787b4ecbe9c0cc6e8bd09
7
- data.tar.gz: 113282ce6ecaf96d6d6b302544a4baa98319a25022eb16b927927607941cc919f56ce9f704ede6344eb3a3b1867b8c822a839f8c68898101eceaa20af36b2e55
6
+ metadata.gz: e9e0b7933f2798fb6262e223195ae65255ef740e2efc2ea41b3cbb94664b274c1ea16291a908dfc810a59ca408ed018159e07dea129c120cd6064826546647e6
7
+ data.tar.gz: 58f77b059ea2b6675fa596282b7054c2c004e3326e6212666d8a0da632c3a55bca6e622a517550ee769ff07f9085878f623b34b590272ebe31c735502049eb30
data/changelog.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Older versions can be found in the documentation changelogs.
4
4
 
5
+ ## 2.1.4 ##
6
+ * Updated to node-sass 3.0 and libsass 3.2 to solve the "invalid selector after" errors
7
+ * Updated and fixed minor documentation issues
8
+
5
9
  ## 2.1.3 ##
6
10
  * Added responsive and fluid media support with the `.fluid-media` class
7
11
  * Removed `outline: none` styles to encourage browser default focus outlines
data/readme.md CHANGED
@@ -6,7 +6,7 @@
6
6
  \/_/ \/_____/ \/_____/ \/_____/ \/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Titon Toolkit v2.1.3 #
9
+ # Titon Toolkit v2.1.4 #
10
10
  [![Project Titon](https://img.shields.io/badge/project-titon-82667d.svg?style=flat)](http://titon.io)
11
11
  [![Build Status](https://img.shields.io/travis/titon/toolkit.svg?style=flat)](https://travis-ci.org/titon/toolkit)
12
12
  [![NPM Version](https://img.shields.io/npm/v/titon-toolkit.svg?style=flat)](https://npmjs.com/package/titon-toolkit)
@@ -19,9 +19,9 @@
19
19
  }
20
20
 
21
21
  @if $inherit {
22
- $selectors: $selectors, unquote("&" + $class);
22
+ $selectors: append($selectors, unquote("&" + $class), "comma");
23
23
  } @else {
24
- $selectors: $selectors, unquote($class);
24
+ $selectors: append($selectors, unquote($class), "comma");
25
25
  }
26
26
  }
27
27
 
@@ -5,7 +5,7 @@
5
5
  // Module is excluded, so do nothing
6
6
  @if (index($modules-excluded, $module) != null) {
7
7
 
8
- // Module hasn't been exported yet, so export it and log usage
8
+ // Module hasn't been exported yet, so export it and log usage
9
9
  } @else if (index($modules-exported, $module) == null) {
10
10
  $modules-exported: append($modules-exported, $module) !global;
11
11
 
@@ -75,11 +75,11 @@
75
75
  $selectors: ();
76
76
 
77
77
  @if $self {
78
- $selectors: $selectors, unquote("&" + $size);
78
+ $selectors: append($selectors, unquote("&" + $size), "comma");
79
79
  }
80
80
 
81
81
  @if $parent {
82
- $selectors: $selectors, unquote($size + " &");
82
+ $selectors: append($selectors, unquote($size + " &"), "comma");
83
83
  }
84
84
 
85
85
  #{$selectors} {
data/version.md CHANGED
@@ -1 +1 @@
1
- 2.1.3
1
+ 2.1.4
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: titon-toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Project Titon
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-05-06 00:00:00.000000000 Z
12
+ date: 2015-05-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass