caboose-cms 0.4.29 → 0.4.30

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MTRlMGFmZjY3MGI4NTFhYzgxNWY1YmIyZmYyMmJlYjRiNzBmNzc5ZQ==
4
+ YTRiNmYyOGM4MDI3YjAxZDRmNjYzNzA1OGNkMDJhN2RkYzM4YmM3ZA==
5
5
  data.tar.gz: !binary |-
6
- OGQwNmI5MDlhYTc5MmQwMzMyNDQzYzkzY2E4NzcxZWJlN2NmYTgyZA==
6
+ ZTc0ZGMwNGI2ZGFiZTQ2MDE3ZjIzMTVjZGFkYTU3NjZlNzljMzMxNQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- YzBlZDU0NGVlOTIzM2Q3N2ZiYjZiZmI0NDk4NDZmM2ZhOWZhN2FjNDhiYzc1
10
- NDQ3MmRjMzlkYjkwOGJkOGIxZjk1MjdmMjE0MzJiNzY1ZDIxODFkZmZjMzQ4
11
- ZTc3M2IxM2RlNTUxYmY5MzY4Y2I2MjNjMjE3MzU5MWJlMzc0YjQ=
9
+ NDYxYmMzMzM2M2Q4OThlYmNiNGRiZjk1MDk2NzAxNTA1YmMxMzZmZmRmN2Q3
10
+ ODA0OTIwM2IyYmFhZGM1ZWRhNzZlZWU1NzQ0ZjEyOGRiZjIzYWYxNmUyOWJk
11
+ NmFhMGEyN2Y0ZTBmN2FiMzVhNjg1YTAzMjUwMTg0ZDM4NTQzOTc=
12
12
  data.tar.gz: !binary |-
13
- NTg5NjBlY2Q5ODdlZjNmMjY3OTg5MTYxZGU3ODMyY2M1OTI0MDc4M2QzNGQw
14
- Y2I5NTFlNWJhNjg4M2I5MzBmODU4OWZkZjMxMzJkYmU2ZWRmYTFmZmQxODE0
15
- YTI2ZGJmMjE2ZTM1MjhiNDZlOGI5YTQ5ZTgyYzUwM2VjMzgwNGM=
13
+ OTE1ZTFhNGIyOGQzOThkNzFmODFiMTVjNTg2ZDdiZDI4MzUzNzRmNzExZWU5
14
+ MDZhMTk5NDNiOGJkN2FjYTgzMDRiYTI2MTczMTE5NWVjMTQyYTZmNGJiNzBk
15
+ ZGJiYjJkNDUzZTc1YTEwYzNkZjAyZGQyYTkzZjkzMWY5YTMzNTg=
@@ -0,0 +1,24 @@
1
+ /* All content should generally fall into one of these three categories */
2
+ @mixin phone() { @media only screen and (max-width : 568px) { @content }}
3
+ @mixin tablet() { @media only screen and (min-width : 569px) and (max-width : 1024px) { @content }}
4
+ @mixin desktop() { @media only screen and (min-width : 1025px) { @content }}
5
+
6
+ /* For targeting more specific devices */
7
+ /* iPad in portrait and landscape */ @mixin ipad() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) { @content }}
8
+ /* iPad in landscape */ @mixin ipad_landscape() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (orientation : landscape) { @content }}
9
+ /* iPad in portrait */ @mixin ipad_portrait() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (orientation : portrait ) { @content }}
10
+ /* Retina iPad in portrait & landscape */ @mixin ipad_retina() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 2) { @content }}
11
+ /* Retina iPad in landscape */ @mixin ipad_retina_landscape() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio: 2) { @content }}
12
+ /* Retina iPad in portrait */ @mixin ipad_retina_portrait() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 2) { @content }}
13
+ /* iPad 1 & 2 in portrait & landscape */ @mixin ipad2() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 1) { @content }}
14
+ /* iPad 1 & 2 in landscape */ @mixin ipad2_landscape() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio: 1) { @content }}
15
+ /* iPad 1 & 2 in portrait */ @mixin ipad2_portrait() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 1) { @content }}
16
+ /* iPad mini in portrait & landscape */ @mixin ipad_mini() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 1) { @content }}
17
+ /* iPad mini in landscape */ @mixin ipad_mini_landscape() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio: 1) { @content }}
18
+ /* iPad mini in portrait */ @mixin ipad_mini_portrait() { @media only screen and (min-device-width : 764px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 1) { @content }}
19
+ /* iPhone 5 in portrait & landscape */ @mixin iphone5() { @media only screen and (min-device-width : 320px) and (max-device-width : 568px) { @content }}
20
+ /* iPhone 5 in landscape */ @mixin iphone5_landscape() { @media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) { @content }}
21
+ /* iPhone 5 in portrait */ @mixin iphone5_portrait() { @media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait ) { @content }}
22
+ /* iPhone 2G-4S in portrait & landscape */ @mixin iphone4() { @media only screen and (min-device-width : 320px) and (max-device-width : 480px) { @content }}
23
+ /* iPhone 2G-4S in landscape */ @mixin iphone4_landscape() { @media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) { @content }}
24
+ /* iPhone 2G-4S in portrait */ @mixin iphone4_portrait() { @media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait ) { @content }}
@@ -1,3 +1,3 @@
1
1
  module Caboose
2
- VERSION = '0.4.29'
2
+ VERSION = '0.4.30'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caboose-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.29
4
+ version: 0.4.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Barry
@@ -238,6 +238,7 @@ files:
238
238
  - app/assets/stylesheets/caboose/page_bar_generator.css
239
239
  - app/assets/stylesheets/caboose/print.css
240
240
  - app/assets/stylesheets/caboose/register.css
241
+ - app/assets/stylesheets/caboose/responsive.css.scss
241
242
  - app/assets/stylesheets/caboose/station_modal.css
242
243
  - app/assets/stylesheets/caboose/station_sidebar.css
243
244
  - app/assets/stylesheets/caboose/tinymce.css