@eox/pages-theme-eox 0.11.4 → 1.0.0
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.
- package/.gitlab-ci.yml +30 -0
- package/.release-it.json +15 -0
- package/CHANGELOG.md +8 -0
- package/README.md +235 -0
- package/cypress/support/commands.js +25 -0
- package/cypress/support/component-index.html +11 -0
- package/cypress/support/component.js +22 -0
- package/cypress/support/mocks/features.data.js +9 -0
- package/cypress/support/mocks/helpers.js +48 -0
- package/cypress/support/mocks/vitepress.js +83 -0
- package/cypress.config.js +46 -0
- package/package.json +12 -2
- package/src/components/CTASection.cy.js +72 -0
- package/src/components/CookieBanner.cy.js +49 -0
- package/src/components/CookieSettings.cy.js +73 -0
- package/src/components/DataTable.cy.js +58 -0
- package/src/components/FeatureCard.cy.js +83 -0
- package/src/components/FeatureCard.vue +13 -6
- package/src/components/FeatureSection.cy.js +63 -0
- package/src/components/FeaturesGallery.cy.js +45 -0
- package/src/components/FeaturesGallery.vue +6 -3
- package/src/components/Footer.cy.js +52 -0
- package/src/components/Footer.vue +26 -7
- package/src/components/HeroSection.cy.js +66 -0
- package/src/components/LogoSection.cy.js +53 -0
- package/src/components/MobileNavDropdown.cy.js +67 -0
- package/src/components/MobileNavDropdown.vue +47 -0
- package/src/components/NavBar.cy.js +106 -0
- package/src/components/NavBar.vue +55 -3
- package/src/components/NavDropdown.cy.js +71 -0
- package/src/components/NavDropdown.vue +61 -0
- package/src/components/NewsBanner.cy.js +23 -0
- package/src/components/NewsBanner.vue +0 -1
- package/src/components/NotFound.cy.js +16 -0
- package/src/components/PricingTable.cy.js +91 -0
- package/src/helpers.js +53 -0
- package/src/index.js +1 -0
- package/src/style.css +121 -4
package/src/style.css
CHANGED
|
@@ -44,6 +44,11 @@ body {
|
|
|
44
44
|
font-weight: bold;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
.Layout {
|
|
48
|
+
padding-top: var(--vp-nav-height);
|
|
49
|
+
transition: padding-top 0.3s ease-in-out;
|
|
50
|
+
}
|
|
51
|
+
|
|
47
52
|
*:has(> nav.top:not(.s, .m, .l)) {
|
|
48
53
|
padding-block-start: 0;
|
|
49
54
|
}
|
|
@@ -128,10 +133,6 @@ body {
|
|
|
128
133
|
display: none;
|
|
129
134
|
}
|
|
130
135
|
|
|
131
|
-
.VPLocalNav {
|
|
132
|
-
display: none;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
136
|
.vp-doc.container {
|
|
136
137
|
padding-left: 24px;
|
|
137
138
|
padding-right: 24px;
|
|
@@ -140,6 +141,9 @@ body {
|
|
|
140
141
|
/**/
|
|
141
142
|
footer {
|
|
142
143
|
margin-top: 0 !important;
|
|
144
|
+
position: relative;
|
|
145
|
+
z-index: 50;
|
|
146
|
+
background: var(--surface-container-low);
|
|
143
147
|
}
|
|
144
148
|
|
|
145
149
|
/**/
|
|
@@ -174,3 +178,116 @@ button.text:hover,
|
|
|
174
178
|
hsl(from var(--primary) h s calc(l - 20)) 100%
|
|
175
179
|
) !important;
|
|
176
180
|
}
|
|
181
|
+
|
|
182
|
+
/* Fix for nested details icon rotation inheriting from parent */
|
|
183
|
+
details summary i.mdi-chevron-down {
|
|
184
|
+
transform: rotate(0deg);
|
|
185
|
+
transition: transform 0.2s;
|
|
186
|
+
}
|
|
187
|
+
details[open] > summary > i.mdi-chevron-down {
|
|
188
|
+
transform: rotate(180deg);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/* Sidebar Fixes */
|
|
192
|
+
.Layout:not(.layout-doc) .VPSidebar {
|
|
193
|
+
display: none;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.Layout:not(.layout-doc) .VPContent.has-sidebar {
|
|
197
|
+
--vp-sidebar-width: 0;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.VPSidebar {
|
|
201
|
+
top: var(--vp-nav-height) !important;
|
|
202
|
+
padding-top: 0 !important;
|
|
203
|
+
padding-left: 0 !important;
|
|
204
|
+
margin-top: -2px;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.VPSidebar > nav,
|
|
208
|
+
.VPSidebar .group,
|
|
209
|
+
.VPSidebar .items {
|
|
210
|
+
display: flex !important;
|
|
211
|
+
flex-direction: column !important;
|
|
212
|
+
padding-top: 0 !important;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.VPSidebar .group {
|
|
216
|
+
border-top: none !important;
|
|
217
|
+
padding: 0 24px 12px !important;
|
|
218
|
+
width: 100% !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.VPSidebar .group h2,
|
|
222
|
+
.VPSidebar .group > p.title {
|
|
223
|
+
margin-top: 0 !important;
|
|
224
|
+
padding-top: 6px !important;
|
|
225
|
+
margin-bottom: 4px !important;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.VPSidebar ul {
|
|
229
|
+
display: flex !important;
|
|
230
|
+
flex-direction: column !important;
|
|
231
|
+
padding-left: 0 !important;
|
|
232
|
+
margin: 0 !important;
|
|
233
|
+
list-style: none !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.VPSidebar .VPLink {
|
|
237
|
+
display: block !important;
|
|
238
|
+
padding: 3px 0 !important;
|
|
239
|
+
font-size: 14px;
|
|
240
|
+
line-height: 20px;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.social-links {
|
|
244
|
+
display: flex !important;
|
|
245
|
+
align-items: center;
|
|
246
|
+
gap: 0.25rem;
|
|
247
|
+
list-style: none !important;
|
|
248
|
+
padding-left: 0 !important;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/* Local Nav (Sidebar Toggle) Fixes */
|
|
252
|
+
.VPSidebarNav,
|
|
253
|
+
.VPLocalNavOutlineDropdown {
|
|
254
|
+
background: transparent !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/* Ensure the toggle button is visible and colored correctly if needed */
|
|
258
|
+
.VPLocalNav button.menu,
|
|
259
|
+
.VPLocalNavOutlineDropdown button {
|
|
260
|
+
background: transparent;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.Layout:not(.layout-doc) .VPLocalNavOutlineDropdown,
|
|
264
|
+
.Layout:not(.layout-doc) .VPLocalNav {
|
|
265
|
+
display: none;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.VPLocalNavOutlineDropdown ul li {
|
|
269
|
+
list-style: none;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/* Doc layout fixes */
|
|
273
|
+
.Layout.layout-doc .content-container,
|
|
274
|
+
.VPDocFooter {
|
|
275
|
+
background: transparent;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/* TOC */
|
|
279
|
+
.table-of-contents ul {
|
|
280
|
+
display: block;
|
|
281
|
+
flex-direction: column;
|
|
282
|
+
align-items: flex-start;
|
|
283
|
+
padding: 0 0 0 40px !important;
|
|
284
|
+
margin: 0;
|
|
285
|
+
}
|
|
286
|
+
.table-of-contents ul li {
|
|
287
|
+
display: list-item;
|
|
288
|
+
list-style: disc !important;
|
|
289
|
+
}
|
|
290
|
+
.table-of-contents ul li a {
|
|
291
|
+
text-decoration: underline;
|
|
292
|
+
color: var(--primary);
|
|
293
|
+
}
|