trusty-festivity-extension 2.5.12 → 2.5.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +9 -10
- data/app/assets/images/skins/buzzword/buzzword-background.png +0 -0
- data/app/assets/images/skins/buzzword/buzzword-logo.svg +1 -0
- data/app/assets/images/skins/buzzword/pnc.png +0 -0
- data/app/assets/images/skins/buzzword/traf-bottom-wave.png +0 -0
- data/app/assets/images/skins/buzzword/traf-bubbles.png +0 -0
- data/app/assets/images/skins/buzzword/traf-internalpage-bg-pattern.svg +1 -0
- data/app/assets/images/skins/buzzword/traf-internalpage-bg.svg +1 -0
- data/app/assets/images/skins/buzzword/traf-thin-wave.png +0 -0
- data/app/assets/javascripts/skins/buzzword/AppMeasurement.js +137 -0
- data/app/assets/javascripts/skins/crawl/AppMeasurement.js +100 -57
- data/app/assets/stylesheets/buzzword.scss +40 -0
- data/app/assets/stylesheets/skins/buzzword/contexts/_buzzword.scss +298 -0
- data/app/assets/stylesheets/skins/buzzword/contexts/_featured_events.scss +72 -0
- data/app/assets/stylesheets/skins/buzzword/contexts/_homepage.scss +129 -0
- data/app/assets/stylesheets/skins/buzzword/contexts/_social_feed.scss +89 -0
- data/app/assets/stylesheets/skins/buzzword/library/_general-mixins.scss +73 -0
- data/app/assets/stylesheets/skins/buzzword/library/_icons.scss +20 -0
- data/app/assets/stylesheets/skins/buzzword/library/_variables.scss +34 -0
- data/app/assets/stylesheets/skins/buzzword/skin.scss +36 -0
- data/db/content/layouts/{FirstNighPGH → FirstNightPGH}/base.html +0 -0
- data/db/content/layouts/{FirstNighPGH → FirstNightPGH}/normal.html +0 -0
- data/db/content/layouts/buzzword/base.html +221 -0
- data/db/content/layouts/buzzword/normal.html +3 -0
- data/db/fixtures/sites.yml +10 -0
- data/lib/festivity/engine.rb +2 -0
- data/lib/trusty-festivity-extension.rb +1 -1
- metadata +24 -37
- data/coverage/assets/0.10.0/application.css +0 -799
- data/coverage/assets/0.10.0/application.js +0 -1707
- data/coverage/assets/0.10.0/colorbox/border.png +0 -0
- data/coverage/assets/0.10.0/colorbox/controls.png +0 -0
- data/coverage/assets/0.10.0/colorbox/loading.gif +0 -0
- data/coverage/assets/0.10.0/colorbox/loading_background.png +0 -0
- data/coverage/assets/0.10.0/favicon_green.png +0 -0
- data/coverage/assets/0.10.0/favicon_red.png +0 -0
- data/coverage/assets/0.10.0/favicon_yellow.png +0 -0
- data/coverage/assets/0.10.0/loading.gif +0 -0
- data/coverage/assets/0.10.0/magnify.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/coverage/index.html +0 -11913
- data/spec/dummy/log/test.log +0 -2825
- data/spec/dummy/tmp/cache/747/A70/TrustyCms%3A%3AConfig +0 -2
- data/spec/dummy/tmp/cache/85C/FA0/TrustyCms.cache_mtime +0 -0
- data/spec/dummy/tmp/radiant_config_cache.txt +0 -0
@@ -0,0 +1,72 @@
|
|
1
|
+
.featured-events {
|
2
|
+
padding-bottom: 3em;
|
3
|
+
@include breakpoint($breakpoint-nav) {
|
4
|
+
height: 750px;
|
5
|
+
}
|
6
|
+
@include container;
|
7
|
+
article.featured-event {
|
8
|
+
@include breakpoint($breakpoint-nav) {
|
9
|
+
@include column(8);
|
10
|
+
}
|
11
|
+
@include column(12);
|
12
|
+
}
|
13
|
+
article.featured-event, article.secondary-events {
|
14
|
+
border: 1px solid $background-color-subtle;
|
15
|
+
margin-bottom: 2em;
|
16
|
+
img {
|
17
|
+
width: 100%;
|
18
|
+
}
|
19
|
+
.genre-title {
|
20
|
+
margin-top: 1em;
|
21
|
+
border-left: .3em solid $highlight-color;
|
22
|
+
h3 {
|
23
|
+
@include heading-5;
|
24
|
+
color: $heading-highlight-color;
|
25
|
+
margin-left: 1em;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
.event-information {
|
29
|
+
margin-left: 1em;
|
30
|
+
padding-bottom: 2em;
|
31
|
+
h4 {
|
32
|
+
@include heading-1;
|
33
|
+
}
|
34
|
+
.date-wrapper {
|
35
|
+
div {
|
36
|
+
display: inline-block;
|
37
|
+
}
|
38
|
+
.date, .time {
|
39
|
+
&::after {
|
40
|
+
content: ' \00b7';
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
article.secondary-events {
|
47
|
+
@include breakpoint($breakpoint-nav) {
|
48
|
+
@include column(4);
|
49
|
+
@include last;
|
50
|
+
}
|
51
|
+
@include column(12);
|
52
|
+
|
53
|
+
.event-information {
|
54
|
+
h4 {
|
55
|
+
@include heading-2;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
.button-highlight {
|
60
|
+
color: #fff;
|
61
|
+
background-color: $link-color;
|
62
|
+
.icon-chevron-right {
|
63
|
+
margin-left: 1em;
|
64
|
+
svg {
|
65
|
+
path {
|
66
|
+
fill: #fff;
|
67
|
+
}
|
68
|
+
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
}
|
@@ -0,0 +1,129 @@
|
|
1
|
+
.home main {
|
2
|
+
.container {
|
3
|
+
width: 100%;
|
4
|
+
max-width: 100%;
|
5
|
+
.buzz-intro-background {
|
6
|
+
@include breakpoint($breakpoint-nav) {
|
7
|
+
height: 550px;
|
8
|
+
background-size: 125%;
|
9
|
+
}
|
10
|
+
@include breakpoint($breakpoint-xl) {
|
11
|
+
height: 600px;
|
12
|
+
background-size: 100%;
|
13
|
+
}
|
14
|
+
@include breakpoint($breakpoint-xxxl) {
|
15
|
+
height: 660px;
|
16
|
+
background-size: 100%;
|
17
|
+
}
|
18
|
+
background: url(buzzword-background.png) no-repeat bottom center;
|
19
|
+
height: 580px;
|
20
|
+
background-color: $background-color-alt;
|
21
|
+
background-size: 140%;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
.main {
|
26
|
+
@include container;
|
27
|
+
margin-top: -1em;
|
28
|
+
width: 95%;
|
29
|
+
@include breakpoint($breakpoint-nav) {
|
30
|
+
padding-top: 0;
|
31
|
+
}
|
32
|
+
.headline {
|
33
|
+
@include heading-6;
|
34
|
+
h1 {
|
35
|
+
color: #fff;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
.headline-2 {
|
39
|
+
@include breakpoint($breakpoint-nav) {
|
40
|
+
@include heading-4;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
.headline-3 {
|
44
|
+
@include breakpoint($breakpoint-nav) {
|
45
|
+
@include heading-2;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
.buttons {
|
49
|
+
.button-wrapper {
|
50
|
+
margin-right: 1em;
|
51
|
+
margin-bottom: .75em;
|
52
|
+
.icon-chevron-right {
|
53
|
+
height: 15px;
|
54
|
+
margin-left: 2em;
|
55
|
+
margin-right: -1em;
|
56
|
+
svg {
|
57
|
+
fill: $text-color;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
63
|
+
.announcements {
|
64
|
+
background: none;
|
65
|
+
background-color: #0b7b40;
|
66
|
+
padding-top: 2em;
|
67
|
+
margin-bottom: 6em;
|
68
|
+
border-bottom: 5em;
|
69
|
+
border-image: url(traf-thin-wave.png) 0 27 75 repeat;
|
70
|
+
border-image-outset: 1;
|
71
|
+
.announcements-container {
|
72
|
+
@include container;
|
73
|
+
width: 95%;
|
74
|
+
margin-bottom: -4em;
|
75
|
+
padding-top: 4em;
|
76
|
+
|
77
|
+
.announcements-header {
|
78
|
+
@include breakpoint($breakpoint-nav) {
|
79
|
+
@include column(4);
|
80
|
+
}
|
81
|
+
vertical-align: top;
|
82
|
+
.icon-info {
|
83
|
+
margin-right: 1.5em;
|
84
|
+
}
|
85
|
+
h4 {
|
86
|
+
display: inline-block;
|
87
|
+
color: #fff;
|
88
|
+
font-size: 1.8em;
|
89
|
+
}
|
90
|
+
}
|
91
|
+
.announcements-group {
|
92
|
+
@include breakpoint($breakpoint-nav) {
|
93
|
+
@include column(8);
|
94
|
+
@include last;
|
95
|
+
}
|
96
|
+
.date {
|
97
|
+
font-size: 1.5em;
|
98
|
+
display: inline-block;
|
99
|
+
color: $text-highlight-color;
|
100
|
+
}
|
101
|
+
.announcement-item-group {
|
102
|
+
@include divider-bottom;
|
103
|
+
@include last;
|
104
|
+
.announcement-item {
|
105
|
+
margin-left: 2em;
|
106
|
+
display: inline-block;
|
107
|
+
color: #fff;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
&::after {
|
112
|
+
clear: both;
|
113
|
+
content: " ";
|
114
|
+
display: block;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
}
|
119
|
+
|
120
|
+
.buzz-bubbles {
|
121
|
+
background: url(traf-bubbles.png) no-repeat top center;
|
122
|
+
background-size: cover;
|
123
|
+
height: 75px;
|
124
|
+
@include breakpoint($breakpoint-nav) {
|
125
|
+
height: 100px;
|
126
|
+
}
|
127
|
+
}
|
128
|
+
|
129
|
+
}
|
@@ -0,0 +1,89 @@
|
|
1
|
+
h3.section-title {
|
2
|
+
@include reversed-text-smoothing;
|
3
|
+
color: $text-color;
|
4
|
+
text-transform: uppercase;
|
5
|
+
margin-bottom: 2em;
|
6
|
+
margin-top: 2em;
|
7
|
+
|
8
|
+
@include breakpoint($breakpoint-m){
|
9
|
+
text-align:center;
|
10
|
+
@include heading-2;
|
11
|
+
color: $text-color;
|
12
|
+
text-transform: uppercase;
|
13
|
+
margin-bottom: 2em;
|
14
|
+
}
|
15
|
+
a {
|
16
|
+
margin-left: 1em;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
|
20
|
+
.social-posts {
|
21
|
+
@include pie-clearfix;
|
22
|
+
}
|
23
|
+
.social-feed {
|
24
|
+
.section-wrapper {
|
25
|
+
padding: 1.5em;
|
26
|
+
}
|
27
|
+
.section-title {
|
28
|
+
text-align:center;
|
29
|
+
margin-bottom: 1.5em;
|
30
|
+
@include breakpoint($breakpoint-l) {
|
31
|
+
margin-top: 1.5em;
|
32
|
+
}
|
33
|
+
a {
|
34
|
+
color: $link-color;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
article {
|
38
|
+
margin-bottom: 1em;
|
39
|
+
width: 100%;
|
40
|
+
@include breakpoint($breakpoint-s) {
|
41
|
+
width: 48.3%;
|
42
|
+
}
|
43
|
+
@include breakpoint($breakpoint-nav) {
|
44
|
+
width: 31.15%;
|
45
|
+
}
|
46
|
+
@include breakpoint($breakpoint-xl) {
|
47
|
+
width: 22.53%;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
.grid-sizer {
|
51
|
+
width: 3.25%;
|
52
|
+
}
|
53
|
+
.social-posts {
|
54
|
+
.instagram-post {
|
55
|
+
background: url('fn-instagram-bg.svg') no-repeat $text-color;
|
56
|
+
background-position: 90% 93%;
|
57
|
+
background-size: 35px auto;
|
58
|
+
.post-text {
|
59
|
+
color: #fff;
|
60
|
+
.user-account, time {
|
61
|
+
color: $background-color-alt;
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
.twitter-post {
|
66
|
+
background: url('fn-twitter-bg.svg') no-repeat $homepage-featured-background;
|
67
|
+
background-position: 90% 85%;
|
68
|
+
background-size: 38px 31px;
|
69
|
+
.post-text {
|
70
|
+
color: $text-color;
|
71
|
+
.user-account, time {
|
72
|
+
color: #fff;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|
76
|
+
.post-text {
|
77
|
+
overflow: hidden;
|
78
|
+
padding: 1.5em;
|
79
|
+
.user-account, time {
|
80
|
+
max-width: 85%;
|
81
|
+
}
|
82
|
+
.user-account {
|
83
|
+
display:block;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
}
|
89
|
+
|
@@ -0,0 +1,73 @@
|
|
1
|
+
/// Typographic Mixins
|
2
|
+
|
3
|
+
@mixin copy-face {
|
4
|
+
font-family: "azo-sans-web", arial, "helvetica neue", helvetica, sans-serif;
|
5
|
+
font-weight: 400;
|
6
|
+
}
|
7
|
+
|
8
|
+
@mixin title-face {
|
9
|
+
font-family: "azo-sans-web", arial, "helvetica neue", helvetica, sans-serif;
|
10
|
+
font-weight: 700;
|
11
|
+
}
|
12
|
+
|
13
|
+
@mixin title-face-highlight {
|
14
|
+
font-family: "azo-sans-web", arial, "helvetica neue", helvetica, sans-serif;
|
15
|
+
font-weight: 400;
|
16
|
+
color: $heading-highlight-color;
|
17
|
+
}
|
18
|
+
|
19
|
+
@mixin reversed-text-smoothing {
|
20
|
+
-webkit-font-smoothing: antialiased;
|
21
|
+
-moz-osx-font-smoothing: grayscale;
|
22
|
+
}
|
23
|
+
|
24
|
+
@mixin no-text-smoothing {
|
25
|
+
-webkit-font-smoothing: subpixel-antialiased;
|
26
|
+
-moz-osx-font-smoothing: auto;
|
27
|
+
}
|
28
|
+
|
29
|
+
@mixin subtle-heading {
|
30
|
+
@include heading-5;
|
31
|
+
@include copy-face;
|
32
|
+
color: $heading-highlight-color;
|
33
|
+
margin-bottom: 1em;
|
34
|
+
}
|
35
|
+
|
36
|
+
@mixin link-reverse-alt {
|
37
|
+
color: $link-color-reverse-alt;
|
38
|
+
transition: all 0.3s ease-in-out;
|
39
|
+
border-bottom: 2px solid transparent;
|
40
|
+
|
41
|
+
&:hover, &:focus {
|
42
|
+
color: shade($link-color-reverse-alt, 40%);
|
43
|
+
text-decoration: none;
|
44
|
+
border-color: $highlight-color;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
@mixin button-highlight {
|
49
|
+
@include button;
|
50
|
+
color: $text-color;
|
51
|
+
background-color: $highlight-color;
|
52
|
+
&:hover,
|
53
|
+
&:focus {
|
54
|
+
color:$text-color;
|
55
|
+
background-color: $highlight-color-hover;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
|
60
|
+
@mixin navigation-link {
|
61
|
+
color:$highlight-color;
|
62
|
+
|
63
|
+
&:hover, &:focus {
|
64
|
+
color: $highlight-color-hover;
|
65
|
+
border-color: transparent;
|
66
|
+
}
|
67
|
+
@include breakpoint($breakpoint-nav) {
|
68
|
+
@include link-reverse-alt;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
|
73
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
.icon-twitter,
|
2
|
+
.icon-facebook,
|
3
|
+
.icon-instagram,
|
4
|
+
.icon-external-link,
|
5
|
+
.icon-envelope {
|
6
|
+
svg {
|
7
|
+
width: 1.25em;
|
8
|
+
height: 1.25em;
|
9
|
+
.social-link-item-group & {
|
10
|
+
width: 2.5em;
|
11
|
+
height: 2.5em;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
path {
|
15
|
+
fill: $icon-secondary-color;
|
16
|
+
.social-link-item-group & {
|
17
|
+
fill: $icon-primary-color;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
$text-color: #792d8f; //dark green
|
2
|
+
//$heading-color: #404242;
|
3
|
+
$heading-color: $text-color;
|
4
|
+
$text-color-subtle: tint($text-color, 30%);
|
5
|
+
$text-highlight-color: #fdcb36;//yellow
|
6
|
+
|
7
|
+
$link-color: #f06a33; //orange
|
8
|
+
$link-color-hover: darken($link-color, 15%);
|
9
|
+
|
10
|
+
$highlight-color: #d7df23; //light green
|
11
|
+
$highlight-color-hover: shade($highlight-color, 10%);
|
12
|
+
|
13
|
+
$link-color-reverse: #fbd34b; //light Blue
|
14
|
+
$link-color-reverse-hover: lighten($link-color-reverse, 10%);
|
15
|
+
$link-color-reverse-alt: $text-color;
|
16
|
+
|
17
|
+
$heading-highlight-color: #d7df23; //turquoise
|
18
|
+
|
19
|
+
$border-color: #cbcdc6;
|
20
|
+
|
21
|
+
$background-color: #fff;
|
22
|
+
$background-color-subtle: #cbcbcb;
|
23
|
+
$background-color-alt: #92d5e1;
|
24
|
+
|
25
|
+
$footer-color: $text-color;
|
26
|
+
$social-footer-color: $footer-color;
|
27
|
+
|
28
|
+
$search-placeholder-color: $link-color;
|
29
|
+
|
30
|
+
// icon color variations - overrides original value with this theme's contextual value
|
31
|
+
|
32
|
+
$icon-primary-color: #D7DF23;
|
33
|
+
$icon-secondary-color: #F06A33;
|
34
|
+
$icon-search-color: $highlight-color;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
$text-color: #792d8f; //dark green
|
2
|
+
$heading-color: $text-color;
|
3
|
+
$text-color-subtle: tint($text-color, 30%);
|
4
|
+
$text-highlight-color: #fbd34b;//yellow
|
5
|
+
|
6
|
+
$link-color: #f06a33; //orange
|
7
|
+
$link-color-hover: darken($link-color, 15%);
|
8
|
+
|
9
|
+
$highlight-color: #fbd34b; //light blue
|
10
|
+
$highlight-color-hover: shade($highlight-color, 10%);
|
11
|
+
|
12
|
+
$link-color-reverse: #fbd34b; //light Blue
|
13
|
+
$link-color-reverse-hover: lighten($link-color-reverse, 10%);
|
14
|
+
$link-color-reverse-alt: $text-color;
|
15
|
+
|
16
|
+
$heading-highlight-color: #00afaa; //turquoise
|
17
|
+
|
18
|
+
$border-color: #cbcdc6;
|
19
|
+
|
20
|
+
$background-color: #fff;
|
21
|
+
$background-color-subtle: #cbcbcb;
|
22
|
+
$background-color-alt: #fff;
|
23
|
+
|
24
|
+
$homepage-featured-background: #92D6ED;
|
25
|
+
$footer-color: $text-color;
|
26
|
+
$social-footer-color: $footer-color;
|
27
|
+
|
28
|
+
$search-placeholder-color: $link-color;
|
29
|
+
|
30
|
+
// icon color variations - overrides original value with this theme's contextual value
|
31
|
+
|
32
|
+
$icon-primary-color: #fbd34b;
|
33
|
+
$icon-secondary-color: #F06A33;
|
34
|
+
$icon-search-color: $highlight-color;
|
35
|
+
|
36
|
+
@import "../../buzzword";
|