titon-toolkit 2.1.3 → 2.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/changelog.md +4 -0
- data/readme.md +1 -1
- data/scss/toolkit/mixins/_helper.scss +2 -2
- data/scss/toolkit/mixins/_layout.scss +3 -3
- data/version.md +1 -1
- 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: 3a47c4012bfd8b3f0d2fe50bdacfc31fa1f9de9a
|
4
|
+
data.tar.gz: 692cdcff60a5ee4a246aaf9ba779c971bfb840eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
-
|
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.
|
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.
|
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-
|
12
|
+
date: 2015-05-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|