include_media_rails 1.4.3 → 1.4.5

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: 8234824ad76d0d573c82d48825238d1439f1ad44
4
- data.tar.gz: 3ae3bbf3bbc60caf97ce4fac394621666b143563
3
+ metadata.gz: eb0533a870e52a6c3b55b3d1f90d480b0cb66382
4
+ data.tar.gz: c2a8981e6f3cda226c5d32028926504b3ef8460a
5
5
  SHA512:
6
- metadata.gz: bf255486cc5d58a71ab03172cfdc0919873543045936b56744e0793d30f818e1c1fe7535a7aea88b1b6fea32bed2e952d0e161431c862e3bd81fabca25d6b818
7
- data.tar.gz: 717cea2ab07d7f1bae806f3b96273b4d0f8578557288b886ae5469cd32e58d50c3e59a75bb65c02cfcc27af7c8a68e0b4cf337ff46a4b1ec7c78650d669d72c4
6
+ metadata.gz: 505eaa51cb84121ef241c8a339a7e73d5fbc617ad9fc5660972a42f3204c4fb5efee365de734a88361e61b338808403ec11558e80e00c3f9a3d95390915114fe
7
+ data.tar.gz: 07d60f5dccdf219a3a9abdd52f60bbb325d1f24c48d476213c5559cbf44cdb74c6e75635cc758f70df8c0dedbbf130a83213d69cb727796f8e2c7f195f90d1c3
data/README.md CHANGED
@@ -53,6 +53,7 @@ Available versions:
53
53
  ```
54
54
  1.4.2.1
55
55
  1.4.3
56
+ 1.4.5
56
57
  ```
57
58
 
58
59
  ## Development
@@ -1,3 +1,3 @@
1
1
  module IncludeMediaRails
2
- VERSION = "1.4.3"
2
+ VERSION = "1.4.5"
3
3
  end
@@ -8,7 +8,7 @@
8
8
  // |_|_| |_|\___|_|\__,_|\__,_|\___| |_| |_| |_|\___|\__,_|_|\__,_|
9
9
  //
10
10
  // Simple, elegant and maintainable media queries in Sass
11
- // v1.4.3
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);
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: include_media_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3
4
+ version: 1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaoru Kohashigawa