caboose-cms 0.4.29 → 0.4.30
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 +8 -8
- data/app/assets/stylesheets/caboose/responsive.css.scss +24 -0
- data/lib/caboose/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTRiNmYyOGM4MDI3YjAxZDRmNjYzNzA1OGNkMDJhN2RkYzM4YmM3ZA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTc0ZGMwNGI2ZGFiZTQ2MDE3ZjIzMTVjZGFkYTU3NjZlNzljMzMxNQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NDYxYmMzMzM2M2Q4OThlYmNiNGRiZjk1MDk2NzAxNTA1YmMxMzZmZmRmN2Q3
|
|
10
|
+
ODA0OTIwM2IyYmFhZGM1ZWRhNzZlZWU1NzQ0ZjEyOGRiZjIzYWYxNmUyOWJk
|
|
11
|
+
NmFhMGEyN2Y0ZTBmN2FiMzVhNjg1YTAzMjUwMTg0ZDM4NTQzOTc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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 }}
|
data/lib/caboose/version.rb
CHANGED
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.
|
|
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
|