kcc-gem-theme 1.33.15 → 1.34.15

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.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/_data/cache_bust_css.yml +1 -1
  3. data/_data/theme_hash.yml +1 -1
  4. data/_includes/header-global.html +24 -0
  5. data/_includes/nav-global-bottom.html +23 -0
  6. data/_includes/nav-global-local.html +29 -0
  7. data/_includes/nav-global-top.html +14 -0
  8. data/_includes/nav-local.html +3 -3
  9. data/_includes/scripts/kcc-mega-nav.html +2 -0
  10. data/_includes/scripts/kcc-nav.html +2 -0
  11. data/_includes/svg/kcc.html +62 -0
  12. data/_layouts/default-core.html +28 -0
  13. data/_layouts/default.html +1 -0
  14. data/assets/css/kcc-theme.css +1 -1
  15. data/assets/js/theme/dist/kcc-mega-nav.bundle.js +1 -0
  16. data/assets/js/theme/dist/kcc-nav.bundle.js +1 -0
  17. data/assets/js/theme/dist/kcc-theme-landing.bundle.js +1 -1
  18. data/assets/js/theme/dist/kcc-theme.bundle.js +1 -1
  19. data/assets/js/theme/nav/closeMegaNavOnClick.js +50 -0
  20. data/assets/js/theme/{src/closeMenuOnClick.js → nav/closeNavOnClick.js} +4 -0
  21. data/assets/js/theme/nav/googleCustomSearch.js +112 -0
  22. data/assets/js/theme/{src → nav}/highlightCurrentNav.js +0 -0
  23. data/assets/js/theme/nav/megaNav.js +9 -0
  24. data/assets/js/theme/{src → nav}/moveSearchIcon.js +0 -0
  25. data/assets/js/theme/nav/nav.js +13 -0
  26. data/assets/js/theme/nav/searchToggleMegaNav.js +96 -0
  27. data/assets/js/theme/{src/searchToggle.js → nav/searchToggleNav.js} +2 -2
  28. data/assets/js/theme/nav/toggleMenuOnWindowResize.js +26 -0
  29. data/assets/js/theme/nav/toggleSearchDropdownOnWindowResize.js +57 -0
  30. data/assets/js/theme/src/all.js +5 -15
  31. data/assets/scss/0-tools/_bootstrap-overrides.scss +20 -2
  32. data/assets/scss/0-tools/_gsc-overrides.scss +93 -11
  33. data/assets/scss/0-tools/_vars.scss +1 -0
  34. data/assets/scss/1-base/_header-global.scss +410 -0
  35. data/assets/scss/1-base/_links.scss +15 -0
  36. data/assets/scss/1-base/_typography.scss +75 -3
  37. data/assets/scss/3-layout/_padding.scss +12 -0
  38. data/assets/scss/3-layout/_positioning.scss +22 -6
  39. data/assets/scss/kcc-theme.scss +3 -1
  40. metadata +24 -6
@@ -1,2 +1,14 @@
1
1
  // Padding Styles
2
2
  // ==========================
3
+
4
+ .padding__col--mobile-none {
5
+ padding-left: 0;
6
+ padding-right: 0;
7
+ }
8
+
9
+ @media screen and (min-width: 992px) {
10
+ .padding__col--mobile-none {
11
+ padding-left: 15px;
12
+ padding-right: 15px;
13
+ }
14
+ }
@@ -31,13 +31,13 @@
31
31
  }
32
32
 
33
33
  .position__offset-fixed-nav {
34
- margin-top: 120px;
34
+ margin-top: 105px;
35
35
  }
36
36
 
37
37
 
38
38
  @media screen and (min-width: 360px) {
39
39
  .position__offset-fixed-nav {
40
- margin-top: 125px;
40
+ margin-top: 110px;
41
41
  }
42
42
  }
43
43
 
@@ -47,15 +47,21 @@
47
47
  }
48
48
  }
49
49
 
50
- @media screen and (min-width:576px) {
50
+ @media screen and (min-width: 576px) {
51
51
  .position__offset-fixed-nav {
52
- margin-top: 145px;
52
+ margin-top: 125px;
53
53
  }
54
54
  }
55
55
 
56
- @media screen and (min-width:768px) {
56
+ @media screen and (min-width: 768px) {
57
57
  .position__offset-fixed-nav {
58
- margin-top: 135px;
58
+ margin-top: 130px;
59
+ }
60
+ }
61
+
62
+ @media screen and (min-width: 992px) {
63
+ .position__offset-fixed-nav {
64
+ margin-top: 170px;
59
65
  }
60
66
  }
61
67
 
@@ -274,3 +280,13 @@
274
280
  min-height: 9rem;
275
281
  }
276
282
  }
283
+
284
+ .position__offset-core-nav {
285
+ margin-top: 109px;
286
+ }
287
+
288
+ @media screen and (min-width: 992px) {
289
+ .position__offset-core-nav {
290
+ margin-top: 93px;
291
+ }
292
+ }
@@ -11,12 +11,12 @@
11
11
  @import '1-base/links';
12
12
  @import '1-base/buttons';
13
13
  @import '1-base/img';
14
+ @import '1-base/header-global';
14
15
 
15
16
  // Modular components
16
17
  @import '2-modules/header';
17
18
  @import '2-modules/footer';
18
19
  @import '2-modules/sliders';
19
- @import '2-modules/nav-local';
20
20
  @import '2-modules/social-icons';
21
21
  @import '2-modules/nav-landing'; // Styles for the navbar in landing pages.
22
22
  @import '2-modules/nav-global'; // Remove after implimenting the new header-global with mega-nav.
@@ -29,6 +29,8 @@
29
29
  @import '2-modules/contacts';
30
30
  @import '2-modules/accordion';
31
31
  @import '2-modules/loader';
32
+ @import '2-modules/nav-global';
33
+ @import '2-modules/nav-local';
32
34
 
33
35
  // Layout items
34
36
  // @import "3-layout/...";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kcc-gem-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.15
4
+ version: 1.34.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - wdzajicek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-16 00:00:00.000000000 Z
11
+ date: 2020-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -74,9 +74,13 @@ files:
74
74
  - _includes/document-head.html
75
75
  - _includes/foot.html
76
76
  - _includes/footer.html
77
+ - _includes/header-global.html
77
78
  - _includes/header.html
78
79
  - _includes/hero-slider.html
79
80
  - _includes/image-slider.html
81
+ - _includes/nav-global-bottom.html
82
+ - _includes/nav-global-local.html
83
+ - _includes/nav-global-top.html
80
84
  - _includes/nav-global.html
81
85
  - _includes/nav-landing.html
82
86
  - _includes/nav-local.html
@@ -85,6 +89,8 @@ files:
85
89
  - _includes/scripts/custom.html
86
90
  - _includes/scripts/google-noscript.html
87
91
  - _includes/scripts/google-tag.html
92
+ - _includes/scripts/kcc-mega-nav.html
93
+ - _includes/scripts/kcc-nav.html
88
94
  - _includes/scripts/kcc-theme-landing.html
89
95
  - _includes/scripts/kcc-theme.html
90
96
  - _includes/scripts/table-cdn.html
@@ -95,11 +101,13 @@ files:
95
101
  - _includes/styles/vendor.html
96
102
  - _includes/svg/check.html
97
103
  - _includes/svg/goals.html
104
+ - _includes/svg/kcc.html
98
105
  - _includes/svg/love.html
99
106
  - _includes/svg/save-money.html
100
107
  - _includes/targetx-form.html
101
108
  - _includes/targetx-head.html
102
109
  - _includes/translate.html
110
+ - _layouts/default-core.html
103
111
  - _layouts/default-landing.html
104
112
  - _layouts/default.html
105
113
  - _layouts/landing-page.html
@@ -155,19 +163,28 @@ files:
155
163
  - assets/img/yt-loading.png
156
164
  - assets/img/zippia.png
157
165
  - assets/js/dist/main.bundle.js
166
+ - assets/js/theme/dist/kcc-mega-nav.bundle.js
167
+ - assets/js/theme/dist/kcc-nav.bundle.js
158
168
  - assets/js/theme/dist/kcc-theme-landing.bundle.js
159
169
  - assets/js/theme/dist/kcc-theme.bundle.js
160
170
  - assets/js/theme/landing/landing.js
161
171
  - assets/js/theme/landing/landingPage.js
172
+ - assets/js/theme/nav/closeMegaNavOnClick.js
173
+ - assets/js/theme/nav/closeNavOnClick.js
174
+ - assets/js/theme/nav/googleCustomSearch.js
175
+ - assets/js/theme/nav/highlightCurrentNav.js
176
+ - assets/js/theme/nav/megaNav.js
177
+ - assets/js/theme/nav/moveSearchIcon.js
178
+ - assets/js/theme/nav/nav.js
179
+ - assets/js/theme/nav/searchToggleMegaNav.js
180
+ - assets/js/theme/nav/searchToggleNav.js
181
+ - assets/js/theme/nav/toggleMenuOnWindowResize.js
182
+ - assets/js/theme/nav/toggleSearchDropdownOnWindowResize.js
162
183
  - assets/js/theme/src/accordion.js
163
184
  - assets/js/theme/src/all.js
164
185
  - assets/js/theme/src/babelTest.js
165
- - assets/js/theme/src/closeMenuOnClick.js
166
186
  - assets/js/theme/src/footerDate.js
167
- - assets/js/theme/src/highlightCurrentNav.js
168
187
  - assets/js/theme/src/lazyLoad.js
169
- - assets/js/theme/src/moveSearchIcon.js
170
- - assets/js/theme/src/searchToggle.js
171
188
  - assets/js/theme/src/sliders.js
172
189
  - assets/js/theme/src/test.js
173
190
  - assets/js/theme/src/translate.js
@@ -180,6 +197,7 @@ files:
180
197
  - assets/scss/0-tools/_targetx-overrides.scss
181
198
  - assets/scss/0-tools/_vars.scss
182
199
  - assets/scss/1-base/_buttons.scss
200
+ - assets/scss/1-base/_header-global.scss
183
201
  - assets/scss/1-base/_img.scss
184
202
  - assets/scss/1-base/_links.scss
185
203
  - assets/scss/1-base/_typography.scss