handysass 0.2.0 → 0.2.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/stylesheets/handysass/mixins/_responsive.scss +7 -3
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4495f771f2d70ff1002808d06ad64f031829a416
|
|
4
|
+
data.tar.gz: 69a302a03aad315c90153cc96ba19e3c5e03b8eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c031fbf29be4950d1cc89319a4d9b725e48d1da23dc7cf7459bc733e0df6c5d1bccf8469ffa64ecc80260abeb3c69286627619d8c7a9b596298d6ca221f5631b
|
|
7
|
+
data.tar.gz: b4f722180bf6773e710aa7d901adff5516f4d96a5031177c026647443260eb406d261ed93d3c6f12d7d84f99f8691dc1e086e283f4909eda56e8214730e196ce
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
$sm-screen: 768px !default;
|
|
2
2
|
$md-screen: 990px !default;
|
|
3
|
-
$lg-screen:
|
|
3
|
+
$lg-screen: 1230px !default;
|
|
4
4
|
|
|
5
5
|
// Add a screen @media rule for 2x pixel ratio (retina display)
|
|
6
|
-
@mixin retina-screen {
|
|
7
|
-
|
|
6
|
+
@mixin retina-screen($extra: null) {
|
|
7
|
+
$rule: "only screen and (-webkit-min-device-pixel-ratio: 2)";
|
|
8
|
+
@if $extra {
|
|
9
|
+
$rule: $rule + " and (" + $extra + ")";
|
|
10
|
+
}
|
|
11
|
+
@media #{$rule} {
|
|
8
12
|
@content;
|
|
9
13
|
}
|
|
10
14
|
}
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: handysass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Doug Wollison
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: compass
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '0.11'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0.11'
|
|
27
27
|
description: A basic utility kit with handy mixins and classes for Compass.
|
|
@@ -53,17 +53,17 @@ require_paths:
|
|
|
53
53
|
- lib
|
|
54
54
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
55
55
|
requirements:
|
|
56
|
-
- -
|
|
56
|
+
- - '>='
|
|
57
57
|
- !ruby/object:Gem::Version
|
|
58
58
|
version: '0'
|
|
59
59
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
60
|
requirements:
|
|
61
|
-
- -
|
|
61
|
+
- - '>='
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
63
|
version: '0'
|
|
64
64
|
requirements: []
|
|
65
65
|
rubyforge_project:
|
|
66
|
-
rubygems_version: 2.0.
|
|
66
|
+
rubygems_version: 2.0.3
|
|
67
67
|
signing_key:
|
|
68
68
|
specification_version: 4
|
|
69
69
|
summary: A basic utility kit with handy mixins and classes for Compass.
|