@kitconcept/volto-light-theme 7.8.1 → 7.8.3
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,7 +1,8 @@
|
|
|
1
|
-
## 7.8.
|
|
1
|
+
## 7.8.3 (2026-03-25)
|
|
2
2
|
|
|
3
3
|
### Bugfix
|
|
4
4
|
|
|
5
|
-
- Fix
|
|
5
|
+
- Fix image size grid-block in editmode. @TimoBroeskamp
|
|
6
|
+
- Fix spacing for Teasers in Grid and navigation ntems when using the Intranet header. @danlavrz
|
|
6
7
|
|
|
7
8
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,20 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 7.8.3 (2026-03-25)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Fix image size grid-block in editmode. @TimoBroeskamp
|
|
16
|
+
- Fix spacing for Teasers in Grid and navigation ntems when using the Intranet header. @danlavrz
|
|
17
|
+
|
|
18
|
+
## 7.8.2 (2026-03-09)
|
|
19
|
+
|
|
20
|
+
### Bugfix
|
|
21
|
+
|
|
22
|
+
- Fix image size grid-block in editmode. @TimoBroeskamp
|
|
23
|
+
- Fix mobile sticky menu not showing from 768 to 620px. @iFlameing
|
|
24
|
+
|
|
11
25
|
## 7.8.1 (2026-02-25)
|
|
12
26
|
|
|
13
27
|
### Bugfix
|
package/package.json
CHANGED
|
@@ -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 {
|
|
@@ -178,6 +178,9 @@
|
|
|
178
178
|
.block-editor-image {
|
|
179
179
|
padding: 0;
|
|
180
180
|
margin: 0.5rem !important;
|
|
181
|
+
figure {
|
|
182
|
+
max-width: unset;
|
|
183
|
+
}
|
|
181
184
|
}
|
|
182
185
|
|
|
183
186
|
.block.listing {
|
|
@@ -408,6 +411,19 @@
|
|
|
408
411
|
}
|
|
409
412
|
}
|
|
410
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
|
+
}
|
|
411
427
|
}
|
|
412
428
|
|
|
413
429
|
// Teasers in grids specific
|