@kitconcept/volto-light-theme 8.0.0-alpha.23 → 8.0.0-alpha.25
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,12 @@
|
|
|
1
|
-
## 8.0.0-alpha.
|
|
1
|
+
## 8.0.0-alpha.25 (2026-05-06)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Bugfix
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
|
|
5
|
+
- Fix Footer aligned with content @iRohitSingh [#838](https://github.com/kitconcept/volto-light-theme/pull/838)
|
|
6
|
+
- Fixed a bug that closed the Navigation when scrolling down with the scrollbar. @ TimoBroeskamp
|
|
7
|
+
- Fixed underlined items in the controlpanel and the contents tab. @TimoBroeskamp
|
|
8
|
+
- Upgrade Volto 19a33.
|
|
9
|
+
Upgrade `volto-calendar-block` 1.0.0a9
|
|
10
|
+
https://github.com/plone/volto/releases/tag/19.0.0-alpha.33 @sneridagh
|
|
7
11
|
|
|
8
12
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,23 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 8.0.0-alpha.25 (2026-05-06)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Fix Footer aligned with content @iRohitSingh [#838](https://github.com/kitconcept/volto-light-theme/pull/838)
|
|
16
|
+
- Fixed a bug that closed the Navigation when scrolling down with the scrollbar. @ TimoBroeskamp
|
|
17
|
+
- Fixed underlined items in the controlpanel and the contents tab. @TimoBroeskamp
|
|
18
|
+
- Upgrade Volto 19a33.
|
|
19
|
+
Upgrade `volto-calendar-block` 1.0.0a9
|
|
20
|
+
https://github.com/plone/volto/releases/tag/19.0.0-alpha.33 @sneridagh
|
|
21
|
+
|
|
22
|
+
## 8.0.0-alpha.24 (2026-04-30)
|
|
23
|
+
|
|
24
|
+
### Bugfix
|
|
25
|
+
|
|
26
|
+
- Remove the padding added by header-wrapper for search-wrapper and center ther search. @Tishasoumya-02 [#846](https://github.com/kitconcept/volto-light-theme/pull/846)
|
|
27
|
+
|
|
11
28
|
## 8.0.0-alpha.23 (2026-04-29)
|
|
12
29
|
|
|
13
30
|
### Breaking
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/volto-light-theme",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.25",
|
|
4
4
|
"description": "Volto Light Theme by kitconcept",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"release-it": "^19.0.3",
|
|
48
48
|
"typescript": "^5.7.3",
|
|
49
49
|
"vitest": "^3.1.2",
|
|
50
|
-
"@plone/types": "2.0.0-alpha.
|
|
50
|
+
"@plone/types": "2.0.0-alpha.18"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@dnd-kit/core": "6.0.8",
|
|
@@ -103,10 +103,26 @@ const Navigation = ({ pathname }: NavigationProps) => {
|
|
|
103
103
|
setCurrentOpenIndex(null);
|
|
104
104
|
};
|
|
105
105
|
|
|
106
|
+
// this function doesn't close the navigation when clicking the scrollbar
|
|
107
|
+
const doesScrollbarContainClick = (event: MouseEvent): boolean => {
|
|
108
|
+
const clickedVerticalScrollbar =
|
|
109
|
+
event.clientX >= document.documentElement.clientWidth &&
|
|
110
|
+
event.clientX <= window.innerWidth;
|
|
111
|
+
|
|
112
|
+
const clickedHorizontalScrollbar =
|
|
113
|
+
event.clientY >= document.documentElement.clientHeight &&
|
|
114
|
+
event.clientY <= window.innerHeight;
|
|
115
|
+
|
|
116
|
+
return clickedVerticalScrollbar || clickedHorizontalScrollbar;
|
|
117
|
+
};
|
|
118
|
+
|
|
106
119
|
useEffect(() => {
|
|
107
120
|
const handleClickOutside = (event: MouseEvent) => {
|
|
108
121
|
if (navigation.current && doesNodeContainClick(navigation.current, event))
|
|
109
122
|
return;
|
|
123
|
+
// check if scrollbar is clicked
|
|
124
|
+
if (doesScrollbarContainClick(event)) return;
|
|
125
|
+
|
|
110
126
|
closeMenu();
|
|
111
127
|
};
|
|
112
128
|
|
package/src/theme/_footer.scss
CHANGED
package/src/theme/_header.scss
CHANGED
|
@@ -158,6 +158,10 @@
|
|
|
158
158
|
height 600ms ease-in-out;
|
|
159
159
|
transition-property: top, height;
|
|
160
160
|
|
|
161
|
+
@media only screen and (max-width: ($large-monitor-width + 36px)) {
|
|
162
|
+
left: -1em;
|
|
163
|
+
width: calc(100% + 2em);
|
|
164
|
+
}
|
|
161
165
|
&.active {
|
|
162
166
|
top: 0;
|
|
163
167
|
height: 188px;
|
|
@@ -184,7 +188,6 @@
|
|
|
184
188
|
padding-bottom: 0.5rem;
|
|
185
189
|
border-bottom: 2px solid $black;
|
|
186
190
|
border-left: none;
|
|
187
|
-
margin-left: 12.6rem;
|
|
188
191
|
|
|
189
192
|
@media only screen and (max-width: $tablet-breakpoint) {
|
|
190
193
|
padding-top: 2rem;
|
|
@@ -31,11 +31,14 @@ header .navigation .item {
|
|
|
31
31
|
font-family: $page-font;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
.
|
|
35
|
-
.
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
34
|
+
.public-ui,
|
|
35
|
+
.cms-ui.view-editview {
|
|
36
|
+
.content-area,
|
|
37
|
+
.breadcrumbs {
|
|
38
|
+
a:not(.card-primary-link, .label, .item) {
|
|
39
|
+
color: var(--link-foreground-color, var(--theme-foreground-color));
|
|
40
|
+
text-decoration: underline;
|
|
41
|
+
}
|
|
39
42
|
}
|
|
40
43
|
}
|
|
41
44
|
|