shipd_style 0.2.4 → 0.2.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: 152881677ecd8e79f2650a47da562faad90219d1
4
- data.tar.gz: 4caf682a4d63f23691393aecf74316e55a42344a
3
+ metadata.gz: e687f58be2d806adc8aa9669366891c0e5e60cae
4
+ data.tar.gz: c677363a55775ceed5f1719a1a92a81d4c6aa720
5
5
  SHA512:
6
- metadata.gz: 4e5258964a9f49e5fe42d5e3b58f96b8ec4d20a03ef128bb9c6adc45ff6b71c3f7e3361b74baddd9455f2913b7036f7ea7daf657b40c860b811544ee71258d34
7
- data.tar.gz: 32df0db31d96752ffd0a31597048232e953462e65f06e79da6027bb84befc222a3c292b3242bc27e2b28a2c3ab7d741df5d8339b19b29af3d08aad0ec42ebdd4
6
+ metadata.gz: 8477c6f948cb4c72f5cc35def1f72195742e27b223707b646505ea27e5165cdcfd4e6f93d9d0eff3501603d1fc41ec46efad923d244bb3d322120e05a2be672b
7
+ data.tar.gz: 7256cb3c56c498a1e0d196bfade462c3617e0ecba461d3f71a711b77ace0cf6125835cae9b68852f07db5246acbbdcdf91b72c123188f1f57a9f970e2b2dce79
@@ -1,5 +1,5 @@
1
1
  #page {
2
- max-width: $desktop-break-point - $spacing*2;
2
+ max-width: $desktop-break-point + 64px; // gets this to 1024 even though breakpoint is smaller
3
3
  @include box-shadow($darkest-color 0 0 $spacing*2)
4
4
  }
5
5
 
@@ -6,4 +6,5 @@ body {
6
6
  @include line;
7
7
  width: 100%;
8
8
  background-color: $lightest-color;
9
+ @include box-shadow($darkest-color 0 0 $spacing*2);
9
10
  }
@@ -1,9 +1,10 @@
1
- @import "shipd-mobile";
1
+ @import "mobile";
2
2
 
3
- @media screen and (min-width: 768px) {
4
- @import "shipd-tablet";
3
+ @media screen and (min-width: $tablet-break-point), screen and (max-height: $tablet-break-point) and (orientation: landscape) {
4
+ @import "tablet";
5
5
  }
6
6
 
7
- @media screen and (min-width: 1024px) {
8
- @import "shipd-desktop";
7
+ @media screen and (min-width: $desktop-break-point), screen and (min-height: $desktop-break-point) and (orientation: landscape) {
8
+ @import "desktop";
9
9
  }
10
+
@@ -1,5 +1,5 @@
1
1
  $overlay-height: 10000;
2
2
  $border-width: 1px;
3
3
  $shadow-padding: 4px;
4
- $tablet-break-point: 768px;
5
- $desktop-break-point: 1024px;
4
+ $tablet-break-point: 640px;
5
+ $desktop-break-point: 960px;
@@ -1,3 +1,3 @@
1
1
  module ShipdStyle
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
@@ -1,15 +1,8 @@
1
- <script class='html-template' type="text/html" id="overlay-template">
2
- <div id="overlay">
3
- </div>
4
- </script>
5
-
6
- <script class='html-template' type="text/html" id="dialog-template">
7
- <div class='dialog-container'>
8
- <div class='inner dialog-inner'>
9
- <div class='dialog inner border rounded'>
10
- <div class="close-dialog close-x">&times;</div>
11
- <!-- content here -->
12
- </div>
1
+ <div class='dialog-container'>
2
+ <div class='inner dialog-inner'>
3
+ <div class='dialog inner border rounded'>
4
+ <div class="close-dialog close-x">&times;</div>
5
+ <!-- content here -->
13
6
  </div>
14
7
  </div>
15
- </script>
8
+ </div>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipd_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kane Baccigalupi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-16 00:00:00.000000000 Z
11
+ date: 2015-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: compass