@appdirect/sfb-theme-plaza 0.0.41 → 0.0.45

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 (47) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/assets/css/theme/components/_sticky-button-page-scroll.scss +15 -0
  3. package/assets/css/theme/definitions/_accessibility.scss +42 -0
  4. package/assets/css/theme/definitions/_mixins.scss +2 -0
  5. package/assets/css/theme/definitions/_variables.scss +7 -0
  6. package/assets/css/theme/generic/_default.scss +28 -21
  7. package/assets/css/theme/mixins/_scroll-button.scss +17 -0
  8. package/assets/css/theme/pages/_bundle.scss +10 -0
  9. package/assets/css/theme/theme-index.scss +3 -2
  10. package/content/layout/base.html +36 -23
  11. package/content/layout/profile.html +2 -1
  12. package/content/pages/bundle/bundle.html +5 -7
  13. package/content/pages/help/help.html +5 -4
  14. package/content/pages/home/home.html +7 -1
  15. package/content/pages/listing/listing.html +5 -1
  16. package/content/pages/profile/profile-add-lead.html +1 -1
  17. package/content/pages/profile/profile-add-question.html +1 -1
  18. package/content/pages/profile/profile-add-review.html +1 -1
  19. package/content/pages/profile/profile-configure.html +1 -1
  20. package/content/pages/profile/profile-cross-sell-management.html +12 -0
  21. package/content/pages/profile/profile-editions.html +5 -1
  22. package/content/pages/profile/profile-features.html +5 -1
  23. package/content/pages/profile/profile-questions.html +6 -2
  24. package/content/pages/profile/profile-resources.html +6 -2
  25. package/content/pages/profile/profile-reviews.html +6 -2
  26. package/content/pages/profile/profile-standaloneDomains.html +3 -1
  27. package/content/pages/profile/profile-support.html +6 -2
  28. package/content/pages/profile/profile.html +5 -1
  29. package/design-properties.json +8 -8
  30. package/editor-properties.json +61 -30
  31. package/header-footer/css/footer/_INDEX.scss +1 -1
  32. package/header-footer/css/header-components/_MPLogo.scss +29 -16
  33. package/header-footer/css/header-components/_cart.scss +17 -5
  34. package/header-footer/css/header-components/_dropdown.scss +7 -7
  35. package/header-footer/css/header-components/_header.scss +17 -11
  36. package/header-footer/css/header-components/_icons.scss +22 -7
  37. package/header-footer/css/header-components/_notifications.scss +2 -0
  38. package/header-footer/css/header-components/_responsive.scss +9 -2
  39. package/header-footer/css/header-components/_search-bar.scss +1 -1
  40. package/header-footer/css/settings/_custom-variables.scss +1 -1
  41. package/header-footer/footer.html +0 -6
  42. package/header-footer/logged-in.html +1 -1
  43. package/header-footer/logged-out.html +1 -1
  44. package/package.json +1 -1
  45. package/settings.json +806 -4
  46. package/translations/en-us.yml +46 -1
  47. package/assets/css/theme/components/_secondary-nav.scss +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,29 @@
1
+ # CHANGELOG
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.0.44] - (2021-07-30)
8
+
9
+ #### Added
10
+ - Added menus support [126](https://github.com/AppDirect/sfb-theme-mp2/pull/126)
11
+
12
+ #### Added
13
+ - Added cross-selling page under profile, for cross-selling domains with products [124](https://github.com/AppDirect/sfb-theme-mp2/pull/124)
14
+
15
+
16
+ #### Fixed
17
+ - Fixed issue with cart label overlapping wit the cart icon [122](https://github.com/AppDirect/sfb-theme-mp2/pull/122)
18
+ - Cart icon will show below 1280px, instead of cart label [122](https://github.com/AppDirect/sfb-theme-mp2/pull/122)
19
+ - Fixed issue with the search bar not having enough space/width to be usable for smaller screens [122](https://github.com/AppDirect/sfb-theme-mp2/pull/122)
20
+
21
+ #### Added
22
+ - Added noIndex meta tag to prevent getting indexed by search engine [123](https://github.com/AppDirect/sfb-theme-mp2/pull/123)
23
+
24
+ #### Added
25
+ - Added scroll to top button to Home and Product profile page [121](https://github.com/AppDirect/sfb-theme-mp2/pull/121)
26
+
27
+ ## [0.0.43] - (2021-04-12)
28
+ #### Fixed
29
+ - Added missing localized strings for light and dark logos [120](https://github.com/AppDirect/sfb-theme-mp2/pull/120)
@@ -0,0 +1,15 @@
1
+ @import '../../theme/mixins/scroll-button';
2
+
3
+ .stickyButtonPageScroll {
4
+ &_wrapper {
5
+ // Have higher z-index than cms toolbar on the right side
6
+ z-index: 100000;
7
+
8
+
9
+ .buttonPageScroll {
10
+ &_button {
11
+ @include scroll-button-offset-position;
12
+ }
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,42 @@
1
+ // Only display content to screen readers
2
+ //
3
+ // See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
4
+ // See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
5
+
6
+ @mixin sr-only() {
7
+ position: absolute;
8
+ width: 1px;
9
+ height: 1px;
10
+ padding: 0;
11
+ margin: -1px; // Fix for https://github.com/twbs/bootstrap/issues/25686
12
+ overflow: hidden;
13
+ clip: rect(0, 0, 0, 0);
14
+ white-space: nowrap;
15
+ border: 0;
16
+ }
17
+
18
+ // Use in conjunction with .sr-only to only display content when it's focused.
19
+ //
20
+ // Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
21
+ //
22
+ // Credit: HTML5 Boilerplate
23
+
24
+ @mixin sr-only-focusable() {
25
+ &:active,
26
+ &:focus {
27
+ position: static;
28
+ width: auto;
29
+ height: auto;
30
+ overflow: visible;
31
+ clip: auto;
32
+ white-space: normal;
33
+ }
34
+ }
35
+
36
+ .sr-only {
37
+ @include sr-only();
38
+ }
39
+
40
+ .sr-only-focusable {
41
+ @include sr-only-focusable();
42
+ }
@@ -1,5 +1,7 @@
1
1
  @import 'colors';
2
2
  @import 'typography';
3
+ @import 'variables';
4
+ @import 'accessibility';
3
5
 
4
6
  @mixin html {
5
7
  @include default($genericFontSize);
@@ -0,0 +1,7 @@
1
+ //Global
2
+ $page-spacing-top: 25px;
3
+ $page-spacing-top-mobile: 15px;
4
+
5
+ // Components
6
+ $product-tabs-spacing-top: 48px;
7
+ $product-tabs-spacing-bottom: 40px;
@@ -1,17 +1,9 @@
1
1
  @import '../definitions/mixins';
2
2
 
3
- /*
4
- __html
5
- */
6
-
7
3
  html {
8
4
  @include html;
9
5
  }
10
6
 
11
- a, button {
12
- outline: 0;
13
- }
14
-
15
7
  .ad-uniheader {
16
8
  height: 52px;
17
9
  background: #2d2a27;
@@ -27,19 +19,14 @@ body {
27
19
  @include text-4;
28
20
  }
29
21
 
30
- #header-universal, #footer-universal {
31
- @include default($genericFontSize);
32
- }
33
-
34
- #footer-universal {
35
- position: absolute;
36
- bottom: 0;
37
- width: 100%;
38
- height: 12rem;
39
- }
22
+ .page-wrapper {
23
+ display: flex;
24
+ flex-direction: column;
25
+ min-height: 100vh;
40
26
 
41
- .main-region {
42
- padding-bottom: 12rem;
27
+ .main-footer {
28
+ margin-top: auto;
29
+ }
43
30
  }
44
31
 
45
32
  blockquote {
@@ -106,8 +93,11 @@ blockquote {
106
93
  .global-component-spacer {
107
94
  padding: 30px 0;
108
95
  }
96
+ .global-component-spacer-top {
97
+ padding-top: 30px;
98
+ }
109
99
  .global-component-spacer-bottom {
110
- padding: 0 0 30px 0;
100
+ padding-bottom: 30px;
111
101
  }
112
102
 
113
103
  .global-component-nospacer {
@@ -117,3 +107,20 @@ blockquote {
117
107
  .hidden {
118
108
  display: none !important;
119
109
  }
110
+
111
+ .skip-to-content {
112
+ position: absolute;
113
+ left: 0;
114
+ top: 0;
115
+
116
+ .skip-link {
117
+ &:focus {
118
+ position: relative;
119
+ padding: 5px 10px;
120
+ background-color: #fff;
121
+ color: #000;
122
+ border: 1px solid #000;
123
+ z-index: 9999;
124
+ }
125
+ }
126
+ }
@@ -0,0 +1,17 @@
1
+ @import '../grid/variables';
2
+
3
+ @function get-page-container-spacing($container-width, $grid-gutter-width: 28px) {
4
+ @return calc((100vw - (#{$container-width} - #{$grid-gutter-width})) / 2);
5
+ }
6
+
7
+ @mixin scroll-button-offset-position {
8
+ $button-offset: 15px;
9
+
10
+ @each $breakpoint, $container-max-width in $container-max-widths {
11
+ @include media-breakpoint-up($breakpoint, $grid-breakpoints) {
12
+ $page-container-spacing: get-page-container-spacing($container-max-width);
13
+
14
+ margin-right: calc(#{$page-container-spacing} * -1 + #{$button-offset});
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,10 @@
1
+ .product-bundle {
2
+ $spacing-top: 42px;
3
+ $spacing-mobile-top: 30px;
4
+
5
+ margin-top: $spacing-mobile-top;
6
+
7
+ @include media-breakpoint-up(lg) {
8
+ margin-top: $spacing-top;
9
+ }
10
+ }
@@ -1,8 +1,9 @@
1
1
  @import "generic/normalize";
2
2
  @import "generic/default";
3
3
  @import "grid/bootstrap-grid";
4
- @import "components/secondary-nav";
5
4
  @import "pages/product";
6
5
  @import "pages/profile";
6
+ @import "pages/bundle";
7
7
  @import "pages/listing";
8
- @import "layout/reset"
8
+ @import "layout/reset";
9
+ @import "components/sticky-button-page-scroll";
@@ -2,6 +2,9 @@
2
2
 
3
3
  <html lang="{{ config.locale.code }}">
4
4
  <head>
5
+ {% if meta.noIndex %}
6
+ <meta name="robots" content="noindex" />
7
+ {% endif %}
5
8
  <meta name="viewport" content="width=device-width, initial-scale=1" />
6
9
  {% block meta_title %}<title>{{ meta.title }}</title>{% endblock %}
7
10
  {% block meta_description %}<meta name="description" content="{{ meta.description }}">{% endblock %}
@@ -28,7 +31,7 @@
28
31
  <!-- test custom components orchard <link rel="stylesheet" type="text/css" href="{{ r("/assets/js/components/sfb-components.css") }}"> -->
29
32
  <!-- local testing <link rel="stylesheet" type="text/css" href="/sfb-theme-components/sfb-components.css"> -->
30
33
  <!-- local testing custom components <link rel="stylesheet" type="text/css" href="/sfb-toolkit-assets/js/components/sfb-components.css"> -->
31
- <link rel="preload" as="font" href="{{ r("/assets/fonts/slick/slick.woff") }}" type="font/woff2" crossorigin="anonymous">
34
+ <link rel="preload" as="font" href="{{ r("/assets/fonts/slick/slick.woff") }}" type="font/woff2" crossorigin="anonymous">
32
35
  <link rel="stylesheet" type="text/css" href="{{ config.channelSettings.channelCanonicalBaseUrl }}/sfb-theme-components@0/sfb-components.css">
33
36
  <link rel="stylesheet" type="text/css" href="{{ r("/assets/css/theme/theme-index.css") }}">
34
37
  <!-- local testing <script src="/sfb-theme-components/sfb-components.js"></script> -->
@@ -39,31 +42,41 @@
39
42
  </head>
40
43
 
41
44
  <body data-page="{% block dataPage %}{% endblock %}">
42
- {% block header %}
43
- <div id="header-universal" role="heading" aria-level="1"></div>
44
- {% endblock %}
45
- <div class="main-region page_content page_content__condensed {% block mainRegionClass %}{% endblock %}" role="main">
46
- <div class="layout-default">
47
- <div class="container">
48
- <component name="SecondaryNav" id="SecondaryNav1"></component>
49
- </div>
50
- </div>
51
- {% block headContent %}{% endblock %}
52
- <div class="profile-content">
53
- {% block contentFullWidthContainer %}
54
- {% block contentFullWidth %}{% endblock %}
55
- {% endblock %}
56
- <div class="layout-default">
45
+ <div class="skip-to-content">
46
+ <a class="skip-link sr-only sr-only-focusable" href="#mainContent">{{i18n.skipToMain}}</a>
47
+ </div>
48
+ <div class="page-wrapper">
49
+ {% block header %}
50
+ <header class="main-header" id="mainHeader">
57
51
  <div class="container">
58
- {% block content %}{% endblock %}
52
+ <component name="Header" id="Header"></component>
53
+ </div>
54
+ </header>
55
+ {% endblock %}
56
+
57
+ <main id="mainContent" class="main-region page_content page_content__condensed {% block mainRegionClass %}{% endblock %}" role="main">
58
+ {% block mainTitle %}{% endblock %}
59
+ {% block headContent %}{% endblock %}
60
+ <div class="profile-content">
61
+ {% block contentFullWidthContainer %}
62
+ {% block contentFullWidth %}{% endblock %}
63
+ {% endblock %}
64
+ <div class="layout-default">
65
+ <div class="container">
66
+ {% block content %}{% endblock %}
67
+ </div>
59
68
  </div>
60
69
  </div>
61
- </div>
70
+ </main>
71
+
72
+ {% block footer %}
73
+ <footer class="main-footer" id="mainFooter">
74
+ <div class="container">
75
+ <component name="Footer" id="Footer"></component>
76
+ </div>
77
+ </footer>
78
+ {% endblock %}
62
79
  </div>
63
-
64
- {% block footer %}
65
- <div id="footer-universal" role="contentinfo"></div>
66
- {% endblock %}
67
- <component name="GlobalAlerts" id="GlobalAlerts"></component>
80
+ <component name="GlobalAlerts" id="GlobalAlerts" editorVisible="false"></component>
68
81
  </body>
69
82
  </html>
@@ -18,4 +18,5 @@
18
18
  <component name="ProductSimilarApps" id="ProductSimilarApps"></component>
19
19
  {% endblock %}
20
20
  </div>
21
- {% endblock %}
21
+ <component name="StickyButtonPageScroll" id="StickyButtonPageScroll"></component>
22
+ {% endblock %}
@@ -1,11 +1,9 @@
1
-
2
-
3
1
  {% extends "/layout/bundle.html" %}
4
2
 
5
3
  {% block bundleContent %}
6
- <component name="ProductBanner" id="ProductBanner"></component>
7
- <div class="global-component-spacer">
8
- <component name="ProductBundleViewer" id="ProductBundleViewer"></component>
4
+ <component name="BundleBanner" id="BundleBanner"></component>
5
+ <component name="ProductBundleViewer" id="ProductBundleViewer"></component>
6
+ <div class="product-bundle">
7
+ <component name="ProductBundles" id="ProductBundles"></component>
9
8
  </div>
10
- <component name="ProductBundles" id="ProductBundles"></component>
11
- {% endblock %}
9
+ {% endblock %}
@@ -1,13 +1,14 @@
1
1
  {% extends "/layout/base.html" %}
2
2
 
3
+ {% block mainTitle %}
4
+ <h1 class="sr-only">{{i18n.frequentlyAskedQuestions}}</h1>
5
+ {% endblock %}
6
+
3
7
  {% block content %}
4
8
  <div class="global-component-spacer">
5
9
  <div class="row">
6
10
  <div class="col">
7
- <component
8
- name="Faq"
9
- id="Faq1">
10
- </component>
11
+ <component name="Faq" id="Faq1"></component>
11
12
  </div>
12
13
  </div>
13
14
  </div>
@@ -2,7 +2,13 @@
2
2
  {% block data %}
3
3
  <data type="navigator" />
4
4
  {% endblock %}
5
+ {% block dataPage %}home{% endblock %}
6
+
7
+ {% block mainTitle %}
8
+ <h1 class="sr-only">{{config.marketplaceName}}</h1>
9
+ {% endblock %}
5
10
 
6
11
  {% block content %}
7
12
  <PageOrderableContainer name="PageOrderableContainer" id="PageOrderableContainer1"></PageOrderableContainer>
8
- {% endblock %}
13
+ <component name="StickyButtonPageScroll" id="StickyButtonPageScroll"></component>
14
+ {% endblock %}
@@ -4,9 +4,13 @@
4
4
  <data type="navigator" />
5
5
  {% endblock %}
6
6
 
7
+ {% block mainTitle %}
8
+ <h1 class="sr-only">{{listingProducts.i18n.allApplications}}</h1>
9
+ {% endblock %}
10
+
7
11
  {% block content %}
8
12
  <div class="global-component-spacer js-listing">
9
- <component name="ProductListingControls" id="CategoryListingControls-ListingPage"></component>
13
+ <component name="ProductListingControls" id="CategoryListingControls-ListingPage" editorVisible="false"></component>
10
14
  <div class="row listing listing-page row--spaced">
11
15
  <div class="col-md-3 col-sm-12 category-sidebar js-sidebar">
12
16
  <component name="CategorySidebar" id="CategorySidebar-ListingPage"></component>
@@ -3,7 +3,7 @@
3
3
 
4
4
  {% block data %}
5
5
  <data type="navigator" />
6
- <data type="application-additional-content" value="none" />
6
+ <data type="application-additional-content" value="questions" />
7
7
  {% endblock %}
8
8
 
9
9
  {% block profileContentHeader %}{% endblock %}
@@ -3,7 +3,7 @@
3
3
 
4
4
  {% block data %}
5
5
  <data type="navigator" />
6
- <data type="application-additional-content" value="none" />
6
+ <data type="application-additional-content" value="questions" />
7
7
  {% endblock %}
8
8
 
9
9
  {% block profileContentHeader %}{% endblock %}
@@ -3,7 +3,7 @@
3
3
 
4
4
  {% block data %}
5
5
  <data type="navigator" />
6
- <data type="application-additional-content" value="none" />
6
+ <data type="application-additional-content" value="questions" />
7
7
  {% endblock %}
8
8
 
9
9
  {% block profileContentHeader %}{% endblock %}
@@ -2,7 +2,7 @@
2
2
 
3
3
  {% block data %}
4
4
  <data type="navigator" />
5
- <data type="application-additional-content" value="addonProducts" />
5
+ <data type="application-additional-content" value="addonProducts,questions" />
6
6
  {% endblock %}
7
7
 
8
8
  {% block profileContentHeader %}{% endblock %}
@@ -0,0 +1,12 @@
1
+ {% extends "/layout/profile.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ <data type="application-additional-content" value="addonProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block profileContentHeader %}{% endblock %}
9
+
10
+ {% block profileContent %}
11
+ <component name="ProductAssociatedDomain" id="ProductAssociatedDomain1"></component>
12
+ {% endblock %}
@@ -3,7 +3,11 @@
3
3
 
4
4
  {% block data %}
5
5
  <data type="navigator" />
6
- <data type="application-additional-content" value="recommendations,addonProducts,callToActionsEditions" />
6
+ <data type="application-additional-content" value="recommendations,addonProducts,callToActionsEditions,questions" />
7
+ {% endblock %}
8
+
9
+ {% block mainTitle %}
10
+ <h1 class="sr-only">{{application.summary.title}}</h1>
7
11
  {% endblock %}
8
12
 
9
13
  {% block profileContent %}
@@ -2,7 +2,11 @@
2
2
 
3
3
  {% block data %}
4
4
  <data type="navigator" />
5
- <data type="application-additional-content" value="recommendations,relatedProducts" />
5
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block mainTitle %}
9
+ <h1 class="sr-only">{{application.summary.title}}</h1>
6
10
  {% endblock %}
7
11
 
8
12
  {% block profileContent %}
@@ -2,9 +2,13 @@
2
2
 
3
3
  {% block data %}
4
4
  <data type="navigator" />
5
- <data type="application-additional-content" value="recommendations,relatedProducts" />
5
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block mainTitle %}
9
+ <h1 class="sr-only">{{application.summary.title}}</h1>
6
10
  {% endblock %}
7
11
 
8
12
  {% block profileContent %}
9
13
  <component name="ProductQuestions" id="ProductQuestions1"></component>
10
- {% endblock %}
14
+ {% endblock %}
@@ -2,9 +2,13 @@
2
2
 
3
3
  {% block data %}
4
4
  <data type="navigator" />
5
- <data type="application-additional-content" value="recommendations,relatedProducts" />
5
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block mainTitle %}
9
+ <h1 class="sr-only">{{application.summary.title}}</h1>
6
10
  {% endblock %}
7
11
 
8
12
  {% block profileContent %}
9
13
  <component name="ProductResources" id="ProductResources1"></component>
10
- {% endblock %}
14
+ {% endblock %}
@@ -2,9 +2,13 @@
2
2
 
3
3
  {% block data %}
4
4
  <data type="navigator" />
5
- <data type="application-additional-content" value="recommendations,relatedProducts" />
5
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block mainTitle %}
9
+ <h1 class="sr-only">{{application.summary.title}}</h1>
6
10
  {% endblock %}
7
11
 
8
12
  {% block profileContent %}
9
13
  <component name="ProductReviews" id="ProductReviews1"></component>
10
- {% endblock %}
14
+ {% endblock %}
@@ -12,7 +12,9 @@
12
12
  {% endblock %}
13
13
 
14
14
  {% block profileContent %}
15
- <component name="DomainApp" id="DomainApp"></component>
15
+ <div class="global-component-spacer">
16
+ <component name="DomainApp" id="DomainApp"></component>
17
+ </div>
16
18
  {% endblock %}
17
19
 
18
20
  {% block belowProfileContent %}
@@ -3,9 +3,13 @@
3
3
 
4
4
  {% block data %}
5
5
  <data type="navigator" />
6
- <data type="application-additional-content" value="none" />
6
+ <data type="application-additional-content" value="questions" />
7
+ {% endblock %}
8
+
9
+ {% block mainTitle %}
10
+ <h1 class="sr-only">{{application.summary.title}}</h1>
7
11
  {% endblock %}
8
12
 
9
13
  {% block profileContent %}
10
14
  <component class="support-page" name="ProductAdditionalInfo" id="ProductAdditionalInfo1"></component>
11
- {% endblock %}
15
+ {% endblock %}
@@ -6,6 +6,10 @@
6
6
  <data type="application-additional-content" value="recommendations,relatedProducts,questions,answers,reviews" />
7
7
  {% endblock %}
8
8
 
9
+ {% block mainTitle %}
10
+ <h1 class="sr-only">{{application.summary.title}}</h1>
11
+ {% endblock %}
12
+
9
13
  {% block profileContentHeader %}
10
14
  <component name="ProductBanner" id="ProductBanner"></component>
11
15
  <component name="ProductTabMenu" id="ProductTabMenu"></component>
@@ -17,4 +21,4 @@
17
21
 
18
22
  {% block belowProfileContent %}
19
23
  <component name="ProductSimilarApps" id="ProductSimilarApps"></component>
20
- {% endblock %}
24
+ {% endblock %}
@@ -1,18 +1,18 @@
1
1
  {
2
- "headerNavBg": "#2d2a27",
3
- "headerNavBorderColor": "#242424",
4
- "headerNavItemBgHover": "#3e3b37",
5
- "headerNavItemBgSelected": "#24221e",
6
- "headerNavFontColor": "#999",
2
+ "headerNavBg": "#0076ce",
3
+ "headerNavBorderColor": "#0076ce",
4
+ "headerNavItemBgHover": "#1187df",
5
+ "headerNavItemBgSelected": "#006dc5",
6
+ "headerNavFontColor": "#ffffff",
7
7
  "headerNavFontHoverColor": "#d2d5d9",
8
- "headerNavFontSelectedColor": "#fff",
8
+ "headerNavFontSelectedColor": "#fcfdfd",
9
9
  "headerNavTooltipBg": "#2d2a27",
10
10
  "headerNavTooltipFontColor": "#fff",
11
- "headerNavDropdownFontColor": "#575757",
11
+ "headerNavDropdownFontColor": "#474747",
12
12
  "headerNavDropdownBg": "#fff",
13
13
  "headerNavDropdownBorderColor": "#eaeaea",
14
14
  "headerNavDropdownBorderColorHover": "#007b99",
15
- "headerNavDropdownBgHover": "#009abf",
15
+ "headerNavDropdownBgHover": "#0076ce30",
16
16
  "headerNavDropdownFontColorHover": "#fff",
17
17
  "headerNavDropdownMarginRight": "0"
18
18
  }