include_media_rails 1.4.3 → 1.4.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/include_media_rails/version.rb +1 -1
- data/vendor/assets/stylesheets/include_media.scss +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb0533a870e52a6c3b55b3d1f90d480b0cb66382
|
4
|
+
data.tar.gz: c2a8981e6f3cda226c5d32028926504b3ef8460a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 505eaa51cb84121ef241c8a339a7e73d5fbc617ad9fc5660972a42f3204c4fb5efee365de734a88361e61b338808403ec11558e80e00c3f9a3d95390915114fe
|
7
|
+
data.tar.gz: 07d60f5dccdf219a3a9abdd52f60bbb325d1f24c48d476213c5559cbf44cdb74c6e75635cc758f70df8c0dedbbf130a83213d69cb727796f8e2c7f195f90d1c3
|
data/README.md
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
// |_|_| |_|\___|_|\__,_|\__,_|\___| |_| |_| |_|\___|\__,_|_|\__,_|
|
9
9
|
//
|
10
10
|
// Simple, elegant and maintainable media queries in Sass
|
11
|
-
// v1.4.
|
11
|
+
// v1.4.5
|
12
12
|
//
|
13
13
|
// http://include-media.com
|
14
14
|
//
|
@@ -55,8 +55,8 @@ $media-expressions: (
|
|
55
55
|
'handheld': 'handheld',
|
56
56
|
'landscape': '(orientation: landscape)',
|
57
57
|
'portrait': '(orientation: portrait)',
|
58
|
-
'retina2x': '(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)',
|
59
|
-
'retina3x': '(-webkit-min-device-pixel-ratio: 3), (min-resolution: 350dpi)'
|
58
|
+
'retina2x': '(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx)',
|
59
|
+
'retina3x': '(-webkit-min-device-pixel-ratio: 3), (min-resolution: 350dpi), (min-resolution: 3dppx)'
|
60
60
|
) !default;
|
61
61
|
|
62
62
|
|
@@ -423,7 +423,7 @@ $im-no-media-expressions: ('screen', 'portrait', 'landscape') !default;
|
|
423
423
|
$digits: 0;
|
424
424
|
$minus: ($first-character == '-');
|
425
425
|
$numbers: ('0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9);
|
426
|
-
|
426
|
+
|
427
427
|
// Remove +/- sign if present at first character
|
428
428
|
@if ($first-character == '+' or $first-character == '-') {
|
429
429
|
$value: str-slice($value, 2);
|