trusty-festivity-extension 2.3.26 → 2.3.27
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/contexts/_location.scss +51 -0
- data/app/assets/stylesheets/first-night.scss +1 -0
- data/app/assets/stylesheets/main.scss +2 -0
- data/app/views/festivity_events/show.html.haml +1 -1
- data/app/views/festivity_locations/show.html.haml +20 -16
- data/lib/trusty-festivity-extension.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b52ffa43139d3f703b74c39d0612dbfd7936bf9
|
4
|
+
data.tar.gz: f83143e41658968fa2ed1339d421606867804607
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b29146634c6a700a97ff296532651beb05cae0263e461ca37b3a8b091900c08c17189d5ed76cad4b5945e6af0ad30258e5897a2fec1a39559d0fb5b3c74b6998
|
7
|
+
data.tar.gz: 20a24d44a4158dc23f3b4ec3920765c4efe953b0240f47179a1a36a58c91ac09d38ee8cb434ad3e16cd330c94a8a5b1b1a98e04cbed06c2fcbb769933545c9fc
|
@@ -0,0 +1,51 @@
|
|
1
|
+
.location-content {
|
2
|
+
@include pie-clearfix;
|
3
|
+
|
4
|
+
|
5
|
+
.location-header {
|
6
|
+
background-color: #F1F1F2;
|
7
|
+
|
8
|
+
@include breakpoint($breakpoint-l) {
|
9
|
+
@include column(12);
|
10
|
+
@include last-col3;
|
11
|
+
border-bottom: 0 none;
|
12
|
+
padding-bottom: 0;
|
13
|
+
margin-bottom: 2em;
|
14
|
+
}
|
15
|
+
|
16
|
+
.location-info {
|
17
|
+
@include breakpoint($breakpoint-l) {
|
18
|
+
@include column(8);
|
19
|
+
border-bottom: 0 none;
|
20
|
+
padding-bottom: 0;
|
21
|
+
}
|
22
|
+
.location-title{
|
23
|
+
padding-top: 4em;
|
24
|
+
}
|
25
|
+
.location-title, .location-address {
|
26
|
+
margin-left: 1em;
|
27
|
+
}
|
28
|
+
|
29
|
+
.button {
|
30
|
+
@include button-subtle-list;
|
31
|
+
background-color: white;
|
32
|
+
}
|
33
|
+
|
34
|
+
}
|
35
|
+
|
36
|
+
.location-media{
|
37
|
+
img {
|
38
|
+
width: 100%;
|
39
|
+
}
|
40
|
+
@include breakpoint($breakpoint-l) {
|
41
|
+
@include column(4);
|
42
|
+
margin-bottom: 0;
|
43
|
+
margin-right: 0;
|
44
|
+
border-bottom: 0 none;
|
45
|
+
padding-bottom: 0;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
}
|
50
|
+
|
51
|
+
}
|
@@ -16,6 +16,7 @@
|
|
16
16
|
@import "contexts/site-footer";
|
17
17
|
@import "contexts/events-list";
|
18
18
|
@import "contexts/event-detail";
|
19
|
+
@import "contexts/location";
|
19
20
|
@import "contexts/related-events";
|
20
21
|
@import "contexts/callouts";
|
21
22
|
|
@@ -24,3 +25,4 @@
|
|
24
25
|
@import "modules/event";
|
25
26
|
@import "modules/toggler";
|
26
27
|
@import "modules/callout";
|
28
|
+
|
@@ -1,22 +1,26 @@
|
|
1
1
|
- cache(@location, base_domain: current_site.base_domain) do
|
2
|
-
|
3
|
-
%
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
2
|
+
.location-content
|
3
|
+
%header.location-header
|
4
|
+
.location-info
|
5
|
+
.location-title
|
6
|
+
%h1.page-title
|
7
|
+
= @location.title
|
8
|
+
%h3.tertiary-title
|
9
|
+
=link_to area_path(id: @location.parent.slug) do
|
10
|
+
= @location.parent.title
|
11
|
+
.location-address
|
12
|
+
|
13
|
+
%h4.tertiary-title
|
14
|
+
= @location.festivity_address
|
15
|
+
%br
|
16
|
+
= "#{@location.festivity_city}, #{@location.festivity_state} #{@location.festivity_zip}"
|
17
|
+
- unless @location.festivity_directions_url.blank?
|
18
|
+
= link_to "Directions", "#{@location.festivity_directions_url}", class: 'button', target: '_blank'
|
19
|
+
.location-media
|
18
20
|
%img{src: @location.image, alt: "Lead Image"}
|
19
21
|
|
22
|
+
.content-wrapper
|
23
|
+
%section.primary-content
|
20
24
|
- if @location_events.events.any?
|
21
25
|
%section.related-events
|
22
26
|
%h3
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trusty-festivity-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.27
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Sipple
|
@@ -472,6 +472,7 @@ files:
|
|
472
472
|
- app/assets/stylesheets/contexts/_callouts.scss
|
473
473
|
- app/assets/stylesheets/contexts/_event-detail.scss
|
474
474
|
- app/assets/stylesheets/contexts/_events-list.scss
|
475
|
+
- app/assets/stylesheets/contexts/_location.scss
|
475
476
|
- app/assets/stylesheets/contexts/_related-events.scss
|
476
477
|
- app/assets/stylesheets/contexts/_site-footer.scss
|
477
478
|
- app/assets/stylesheets/contexts/_site-header.scss
|