breakpoint 2.3.0 → 2.3.1
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 +4 -4
- data/lib/breakpoint.rb +2 -2
- data/stylesheets/breakpoint/_parsers.scss +9 -10
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea2d03a4e01463ea1ae41b5f3b52d5cca388d603
|
4
|
+
data.tar.gz: 364a78b11720bcd783aa5a56a3350ac4e9982abe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22959cd46b60d83ea6eb0340ef97534aff9c54c1c96db5d4176010979e37aa1d2174c4ecc29c0441e09045e77998169b1c38447ba861c498c816dfa17a268d83
|
7
|
+
data.tar.gz: 55c46febac5519b5f9a16ec8cd708a69362fd6dce141703109ef9a6fff6496daa7e5f0f4d4e0adfe5de4b972552e5eada4bf0047968caaee04e1d61a7405423c
|
data/lib/breakpoint.rb
CHANGED
@@ -59,21 +59,20 @@
|
|
59
59
|
}
|
60
60
|
}
|
61
61
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
}
|
69
|
-
@else {
|
62
|
+
$return: ('query': $query-string,
|
63
|
+
'fallback': $query-fallback,
|
64
|
+
'context holder': $private-breakpoint-context-holder,
|
65
|
+
'query count': $private-breakpoint-query-count
|
66
|
+
);
|
67
|
+
@if length($contexts) > 0 and nth($contexts, 1) != false {
|
70
68
|
@if $query-fallback != false {
|
71
69
|
$context-setter: private-breakpoint-set-context('no-query', $query-fallback);
|
72
70
|
}
|
73
|
-
|
71
|
+
$context-map: ();
|
74
72
|
@each $context in $contexts {
|
75
|
-
$
|
73
|
+
$context-map: map-merge($context-map, ($context: breakpoint-get-context($context)));
|
76
74
|
}
|
75
|
+
$return: map-merge($return, (context: $context-map));
|
77
76
|
}
|
78
77
|
|
79
78
|
// Reset Global Private Breakpoint Context
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: breakpoint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mason Wendell
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-12-
|
12
|
+
date: 2013-12-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|
@@ -68,7 +68,9 @@ files:
|
|
68
68
|
- stylesheets/breakpoint/parsers/single/_default.scss
|
69
69
|
- stylesheets/breakpoint/parsers/triple/_default.scss
|
70
70
|
homepage: https://github.com/Team-Sass/breakpoint
|
71
|
-
licenses:
|
71
|
+
licenses:
|
72
|
+
- MIT
|
73
|
+
- GPL-2.0
|
72
74
|
metadata: {}
|
73
75
|
post_install_message:
|
74
76
|
rdoc_options: []
|