@kitconcept/volto-light-theme 7.8.2 → 7.8.4
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/.changelog.draft
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
## 7.8.
|
|
1
|
+
## 7.8.4 (2026-04-02)
|
|
2
2
|
|
|
3
3
|
### Bugfix
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
- Fix mobile sticky menu not showing from 768 to 620px. @iFlameing
|
|
5
|
+
- Reduce sticky menu z-index to prevent overlap issues with mobile navigation. @jackahl
|
|
7
6
|
|
|
8
7
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,19 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 7.8.4 (2026-04-02)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Reduce sticky menu z-index to prevent overlap issues with mobile navigation. @jackahl
|
|
16
|
+
|
|
17
|
+
## 7.8.3 (2026-03-25)
|
|
18
|
+
|
|
19
|
+
### Bugfix
|
|
20
|
+
|
|
21
|
+
- Fix image size grid-block in editmode. @TimoBroeskamp
|
|
22
|
+
- Fix spacing for Teasers in Grid and navigation ntems when using the Intranet header. @danlavrz
|
|
23
|
+
|
|
11
24
|
## 7.8.2 (2026-03-09)
|
|
12
25
|
|
|
13
26
|
### Bugfix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/volto-light-theme",
|
|
3
|
-
"version": "7.8.
|
|
3
|
+
"version": "7.8.4",
|
|
4
4
|
"description": "Volto Light Theme by kitconcept",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"release-it": "^19.0.3",
|
|
46
46
|
"typescript": "^5.7.3",
|
|
47
47
|
"vitest": "^3.1.2",
|
|
48
|
-
"@plone/types": "
|
|
48
|
+
"@plone/types": "1.6.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@dnd-kit/core": "6.0.8",
|
|
@@ -21,7 +21,7 @@ const DefaultSummary = (props: DefaultSummaryProps) => {
|
|
|
21
21
|
<HeadingTag className="title" id={a11yLabelId}>
|
|
22
22
|
{item.title ? item.title : item.id}
|
|
23
23
|
</HeadingTag>
|
|
24
|
-
{!hide_description && (
|
|
24
|
+
{!hide_description && item?.description !== '' && (
|
|
25
25
|
<p className="description">{smartTextRenderer(item.description)}</p>
|
|
26
26
|
)}
|
|
27
27
|
</>
|
package/src/theme/_header.scss
CHANGED
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
flex: 3.5 1 0;
|
|
371
371
|
align-self: center;
|
|
372
372
|
justify-content: center;
|
|
373
|
-
margin-bottom:
|
|
373
|
+
margin-bottom: 11px;
|
|
374
374
|
|
|
375
375
|
@media only screen and (max-width: $largest-mobile-screen) {
|
|
376
376
|
display: none;
|
|
@@ -410,6 +410,19 @@
|
|
|
410
410
|
}
|
|
411
411
|
}
|
|
412
412
|
}
|
|
413
|
+
|
|
414
|
+
.desktop-menu {
|
|
415
|
+
.item {
|
|
416
|
+
padding-top: 15px;
|
|
417
|
+
&:hover::before,
|
|
418
|
+
&.active::before {
|
|
419
|
+
bottom: -20px;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
.submenu-wrapper {
|
|
423
|
+
margin-top: 11px;
|
|
424
|
+
}
|
|
425
|
+
}
|
|
413
426
|
}
|
|
414
427
|
|
|
415
428
|
.complementary-logo {
|
|
@@ -411,6 +411,19 @@
|
|
|
411
411
|
}
|
|
412
412
|
}
|
|
413
413
|
}
|
|
414
|
+
|
|
415
|
+
.four {
|
|
416
|
+
.teaser {
|
|
417
|
+
.card {
|
|
418
|
+
.card-summary {
|
|
419
|
+
padding-top: $spacing-small;
|
|
420
|
+
h2.title:last-child {
|
|
421
|
+
margin-bottom: 0 !important;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
}
|
|
414
427
|
}
|
|
415
428
|
|
|
416
429
|
// Teasers in grids specific
|