@appdirect/sfb-theme-plaza 0.0.1

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 (141) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +3 -0
  3. package/assets/css/platform-global/global-index.scss +1 -0
  4. package/assets/css/theme/components/_sticky-button-page-scroll.scss +15 -0
  5. package/assets/css/theme/definitions/_accessibility.scss +42 -0
  6. package/assets/css/theme/definitions/_colors.scss +58 -0
  7. package/assets/css/theme/definitions/_functions.scss +11 -0
  8. package/assets/css/theme/definitions/_mixins.scss +111 -0
  9. package/assets/css/theme/definitions/_typography.scss +48 -0
  10. package/assets/css/theme/definitions/_variables.scss +7 -0
  11. package/assets/css/theme/generic/_default.scss +126 -0
  12. package/assets/css/theme/generic/_normalize.scss +351 -0
  13. package/assets/css/theme/grid/_bootstrap-grid.scss +32 -0
  14. package/assets/css/theme/grid/_functions.scss +49 -0
  15. package/assets/css/theme/grid/_grid.scss +52 -0
  16. package/assets/css/theme/grid/_mock-grid.scss +36 -0
  17. package/assets/css/theme/grid/_variables.scss +42 -0
  18. package/assets/css/theme/layout/_reset.scss +5 -0
  19. package/assets/css/theme/mixins/_breakpoints.scss +123 -0
  20. package/assets/css/theme/mixins/_grid-framework.scss +67 -0
  21. package/assets/css/theme/mixins/_grid.scss +52 -0
  22. package/assets/css/theme/mixins/_scroll-button.scss +17 -0
  23. package/assets/css/theme/pages/_bundle.scss +10 -0
  24. package/assets/css/theme/pages/_listing.scss +3 -0
  25. package/assets/css/theme/pages/_product.scss +3 -0
  26. package/assets/css/theme/pages/_profile.scss +89 -0
  27. package/assets/css/theme/theme-index.scss +9 -0
  28. package/assets/css/theme/utilities/_display.scss +38 -0
  29. package/assets/css/theme/utilities/_flex.scss +51 -0
  30. package/assets/fonts/AppDirectIcons.woff +0 -0
  31. package/assets/fonts/slick/slick.eot +0 -0
  32. package/assets/fonts/slick/slick.svg +14 -0
  33. package/assets/fonts/slick/slick.ttf +0 -0
  34. package/assets/fonts/slick/slick.woff +0 -0
  35. package/assets/images/logo_white_2x.png +0 -0
  36. package/assets/js/listing.js +26 -0
  37. package/assets/js/polyfills/ie11CustomProperties.js +2 -0
  38. package/content/layout/base.html +80 -0
  39. package/content/layout/bundle.html +12 -0
  40. package/content/layout/profile.html +22 -0
  41. package/content/macros/profile/profile-navigation.html +38 -0
  42. package/content/macros/sfb-components-bundles.html +26 -0
  43. package/content/macros/sfb-custom-components-bundles.html +6 -0
  44. package/content/pages/bundle/bundle.html +9 -0
  45. package/content/pages/compare/compare.html +14 -0
  46. package/content/pages/error/error.html +49 -0
  47. package/content/pages/help/help.html +15 -0
  48. package/content/pages/home/home.html +14 -0
  49. package/content/pages/listing/listing-items.html +1 -0
  50. package/content/pages/listing/listing.html +25 -0
  51. package/content/pages/orderConfirmation/orderConfirmation.html +7 -0
  52. package/content/pages/profile/profile-add-lead.html +13 -0
  53. package/content/pages/profile/profile-add-question.html +13 -0
  54. package/content/pages/profile/profile-add-review.html +13 -0
  55. package/content/pages/profile/profile-configure.html +15 -0
  56. package/content/pages/profile/profile-cross-sell-management.html +12 -0
  57. package/content/pages/profile/profile-editions.html +17 -0
  58. package/content/pages/profile/profile-features.html +14 -0
  59. package/content/pages/profile/profile-questions.html +14 -0
  60. package/content/pages/profile/profile-resources.html +14 -0
  61. package/content/pages/profile/profile-reviews.html +14 -0
  62. package/content/pages/profile/profile-standaloneDomains.html +22 -0
  63. package/content/pages/profile/profile-support.html +15 -0
  64. package/content/pages/profile/profile-variants.html +15 -0
  65. package/content/pages/profile/profile.html +24 -0
  66. package/design-properties.json +18 -0
  67. package/editor-properties.json +231 -0
  68. package/env-data.json +2 -0
  69. package/header-footer/checkout.html +14 -0
  70. package/header-footer/css/footer/_INDEX.scss +264 -0
  71. package/header-footer/css/header-components/_INDEX.scss +11 -0
  72. package/header-footer/css/header-components/_MPLogo.scss +47 -0
  73. package/header-footer/css/header-components/_cart.scss +514 -0
  74. package/header-footer/css/header-components/_dropdown.scss +110 -0
  75. package/header-footer/css/header-components/_header.scss +85 -0
  76. package/header-footer/css/header-components/_icons.scss +123 -0
  77. package/header-footer/css/header-components/_mobile-menu.scss +46 -0
  78. package/header-footer/css/header-components/_myapps-dropdown.scss +111 -0
  79. package/header-footer/css/header-components/_notifications.scss +50 -0
  80. package/header-footer/css/header-components/_responsive.scss +78 -0
  81. package/header-footer/css/header-components/_search-bar.scss +17 -0
  82. package/header-footer/css/header-components/_tooltips.scss +60 -0
  83. package/header-footer/css/header-index.scss +4 -0
  84. package/header-footer/css/settings/_INDEX.scss +3 -0
  85. package/header-footer/css/settings/_custom-variables.scss +70 -0
  86. package/header-footer/css/settings/_font-icons.scss +53 -0
  87. package/header-footer/css/settings/_static-variables.scss +24 -0
  88. package/header-footer/footer.html +53 -0
  89. package/header-footer/logged-in.html +37 -0
  90. package/header-footer/logged-out.html +25 -0
  91. package/header-footer/sso.html +14 -0
  92. package/package.json +15 -0
  93. package/settings-schema.json +4 -0
  94. package/settings.json +1873 -0
  95. package/translations/cs-cz.yml +136 -0
  96. package/translations/cs.yml +136 -0
  97. package/translations/da-dk.yml +136 -0
  98. package/translations/da.yml +136 -0
  99. package/translations/de-de.yml +136 -0
  100. package/translations/de.yml +136 -0
  101. package/translations/el-gr.yml +136 -0
  102. package/translations/en-us.yml +177 -0
  103. package/translations/es-es.yml +136 -0
  104. package/translations/es-la.yml +136 -0
  105. package/translations/es.yml +136 -0
  106. package/translations/fi-fi.yml +136 -0
  107. package/translations/fi.yml +136 -0
  108. package/translations/fr-ca.yml +136 -0
  109. package/translations/fr-fr.yml +136 -0
  110. package/translations/fr.yml +136 -0
  111. package/translations/hr-hr.yml +136 -0
  112. package/translations/hr.yml +136 -0
  113. package/translations/hu-hu.yml +136 -0
  114. package/translations/hu.yml +136 -0
  115. package/translations/id-id.yml +136 -0
  116. package/translations/it-it.yml +136 -0
  117. package/translations/it.yml +136 -0
  118. package/translations/ja-jp.yml +136 -0
  119. package/translations/ja.yml +136 -0
  120. package/translations/ko-kr.yml +136 -0
  121. package/translations/ko.yml +136 -0
  122. package/translations/lt-lt.yml +136 -0
  123. package/translations/lt.yml +136 -0
  124. package/translations/nl-nl.yml +136 -0
  125. package/translations/nl.yml +136 -0
  126. package/translations/no-no.yml +136 -0
  127. package/translations/no.yml +136 -0
  128. package/translations/pt-br.yml +136 -0
  129. package/translations/pt.yml +136 -0
  130. package/translations/ru-ru.yml +136 -0
  131. package/translations/ru.yml +136 -0
  132. package/translations/sq-al.yml +136 -0
  133. package/translations/sq.yml +136 -0
  134. package/translations/sv-se.yml +136 -0
  135. package/translations/sv.yml +136 -0
  136. package/translations/th-th.yml +136 -0
  137. package/translations/th.yml +136 -0
  138. package/translations/tr-tr.yml +136 -0
  139. package/translations/tr.yml +136 -0
  140. package/translations/zh-cn.yml +136 -0
  141. package/translations/zh-tw.yml +136 -0
@@ -0,0 +1,264 @@
1
+ @mixin tablet-up {
2
+ @media (min-width: 640px) {
3
+ @content;
4
+ }
5
+ }
6
+ @mixin desktop-up {
7
+ @media (min-width: 1025px) {
8
+ @content;
9
+ }
10
+ }
11
+ @mixin tablet-down {
12
+ @media (max-width: 1024px) {
13
+ @content;
14
+ }
15
+ }
16
+
17
+ .custom-footer {
18
+ &__wrapper {
19
+ margin-top: 0px;
20
+ padding: 14px 24px;
21
+ background-color: #fff;
22
+ color: #575757;
23
+ }
24
+
25
+ max-width: 1292px;
26
+ margin: 0 auto;
27
+ font-size: 14px;
28
+ display: flex;
29
+ flex-wrap: wrap;
30
+ flex-direction: column !important;
31
+
32
+ @include desktop-up {
33
+ flex-direction: row !important;
34
+ }
35
+
36
+ &__container {
37
+ display: flex;
38
+ justify-content: space-around;
39
+ flex-wrap: wrap;
40
+
41
+ @include desktop-up {
42
+ flex: 2 0 1px;
43
+ -webkit-box-align: center;
44
+ -ms-flex-align: center;
45
+ align-items: center;
46
+ display: -webkit-box;
47
+ display: -ms-flexbox;
48
+ display: flex;
49
+ -webkit-box-pack: justify;
50
+ -ms-flex-pack: justify;
51
+ justify-content: space-between;
52
+ }
53
+
54
+ @include tablet-down {
55
+ display: flex;
56
+ flex-flow: column;
57
+ }
58
+ }
59
+
60
+ &__adlogo {
61
+ display: flex;
62
+ width: 100%;
63
+ margin-top: 50px;
64
+ text-align: left;
65
+ }
66
+
67
+ &__item:first-child {
68
+ margin: 14px 0;
69
+ line-height: 29px;
70
+
71
+ @include tablet-down {
72
+ margin-top: 0;
73
+ }
74
+ }
75
+ &__item .language-select {
76
+ background: #fff;
77
+ border: none;
78
+ font-size: 14px;
79
+ }
80
+
81
+ &__lang {
82
+ @include desktop-up {
83
+ flex: 1 0 1px;
84
+ text-align: center;
85
+ }
86
+ }
87
+
88
+ &__nav {
89
+ display: flex;
90
+ flex-wrap: wrap;
91
+ flex-shrink: 0;
92
+ padding-left: 0;
93
+
94
+ @include tablet-down {
95
+ display: flex;
96
+ flex-flow: column;
97
+ list-style-type: none;
98
+ }
99
+
100
+ @include desktop-up {
101
+ flex: 1 0 1px;
102
+ text-align: center;
103
+ overflow: hidden;
104
+ white-space: nowrap;
105
+ }
106
+ &-item {
107
+ display: flex;
108
+ align-items: center;
109
+ padding-bottom: 14px;
110
+
111
+ @include desktop-up {
112
+ padding-bottom: 0 !important;
113
+ margin: 0 12px;
114
+ &:first-child {
115
+ margin-left: 0;
116
+ }
117
+ &:last-child {
118
+ margin-right: 0;
119
+ }
120
+ }
121
+ @include tablet-down {
122
+ padding-top: 14px;
123
+ }
124
+
125
+ &__powered-by {
126
+ font-size: 14px;
127
+ font-weight: 500;
128
+ line-height: 17px;
129
+
130
+ @include desktop-up {
131
+ flex: 1 0 1px;
132
+ text-align: left;
133
+ white-space: nowrap;
134
+ }
135
+
136
+ @include tablet-down {
137
+ font-size: 12px;
138
+ }
139
+ }
140
+ }
141
+ &-link {
142
+ margin: 0;
143
+ border-left: none;
144
+ font-size: 14px;
145
+ font-weight: 500;
146
+ line-height: 17px;
147
+ color: #575757;
148
+ white-space: nowrap;
149
+ text-decoration: none;
150
+
151
+ @include tablet-down {
152
+ font-size: 16px;
153
+ }
154
+
155
+ &:hover {
156
+ color: #575757;
157
+ text-decoration: underline;
158
+ }
159
+ }
160
+ }
161
+
162
+ .footer_icons {
163
+ display: flex;
164
+ align-items: center;
165
+ justify-content: center;
166
+ flex-direction: row;
167
+
168
+ @include tablet-down {
169
+ margin-left: 0;
170
+ justify-content: left;
171
+ }
172
+
173
+ @include tablet-up {
174
+ margin-left: 0;
175
+ }
176
+
177
+ @include desktop-up {
178
+ margin-left: 0;
179
+ }
180
+
181
+ &-icon {
182
+ margin-right: 16px;
183
+ margin-left: 16px;
184
+
185
+ &:first-child {
186
+ margin-left: 0;
187
+ }
188
+ }
189
+ }
190
+
191
+ .ad-dropdown-unav {
192
+ font-size: 14px;
193
+ font-weight: 500;
194
+ line-height: 17px;
195
+ position: relative;
196
+ cursor: pointer;
197
+ display: inline-block;
198
+ line-height: 1.6em;
199
+ height: 28px;
200
+ border-radius: 3px;
201
+ padding-right: 28px;
202
+ border: 1px solid transparent;
203
+
204
+ @include tablet-down {
205
+ margin-left: -10px;
206
+ font-size: 16px;
207
+ }
208
+
209
+ &:hover {
210
+ box-shadow: inset 0 1px 0 0 #fff, 0 1px 3px -1px rgba(147, 147, 147, 0.4);
211
+ background: #fff;
212
+ text-indent: 0;
213
+ color: #0a0a0a;
214
+ border: 1px solid #a7a7a7;
215
+ text-shadow: 0 1px 0 #fefefe;
216
+
217
+ @include tablet-down {
218
+ border-color: transparent;
219
+ box-shadow: none;
220
+ }
221
+
222
+ svg path {
223
+ fill: #0a0a0a;
224
+ }
225
+ }
226
+
227
+ svg {
228
+ position: absolute;
229
+ right: 5px;
230
+ top: 5px;
231
+
232
+ path {
233
+ fill: #575757;
234
+ }
235
+ }
236
+
237
+ &-label {
238
+ padding: 4px 8px;
239
+ overflow: hidden;
240
+ text-overflow: ellipsis;
241
+ white-space: nowrap;
242
+ display: inline-block;
243
+ font-size: 14px;
244
+ line-height: 19px;
245
+ vertical-align: middle;
246
+ color: #575757;
247
+ z-index: 1;
248
+ background: 0 0;
249
+ }
250
+
251
+ select {
252
+ cursor: pointer;
253
+ opacity: 0;
254
+ position: absolute;
255
+ top: 0;
256
+ left: 0;
257
+ z-index: 5;
258
+ width: 100%;
259
+ height: 100%;
260
+ border: 0;
261
+ background: 0 0;
262
+ }
263
+ }
264
+ }
@@ -0,0 +1,11 @@
1
+ @import 'header';
2
+ @import 'MPLogo';
3
+ @import 'icons';
4
+ @import 'dropdown';
5
+ @import 'myapps-dropdown';
6
+ @import 'notifications';
7
+ @import 'search-bar';
8
+ @import 'tooltips';
9
+ @import 'mobile-menu';
10
+ @import 'responsive';
11
+ @import 'cart';
@@ -0,0 +1,47 @@
1
+ .ad-uniheader__logo-container {
2
+ height: calc(max(var(--headerNavPadding, 20px), var(--logoHeight) + 20px));
3
+ list-style: none;
4
+
5
+ &--link {
6
+ display: none;
7
+ }
8
+
9
+ &--image {
10
+ display: none;
11
+ }
12
+
13
+ // replace unav logo
14
+ #plaza-theme-logo{
15
+ display: flex !important;
16
+ align-items: center;
17
+ justify-content: center;
18
+ cursor: pointer;
19
+ padding: 0 $nav-item-padding-horizontal - 6px 0 0;
20
+
21
+ height: calc(max(var(--headerNavPadding, 20px), var(--logoHeight) + 20px));
22
+
23
+ &:hover {
24
+ background-color: transparent;
25
+ color: transparent;
26
+ text-decoration: none;
27
+ }
28
+
29
+ img {
30
+ // match Logo.scss in sfb-theme-components
31
+ object-fit: contain;
32
+ object-position: center center;
33
+
34
+ min-width: 30px;
35
+ height: var(--logoHeight, $nav-logo-height);
36
+ }
37
+ }
38
+ }
39
+ .ad-sso-header {
40
+ .ad-uniheader__logo-container--link {
41
+ padding-left: 14px;
42
+ }
43
+
44
+ #plaza-theme-logo {
45
+ padding-left: 14px;
46
+ }
47
+ }