@eeacms/volto-bise-policy 1.2.20 → 1.2.21
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.md +7 -0
- package/package.json +1 -1
- package/theme/extras/tocnav.less +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [1.2.21](https://github.com/eea/volto-bise-policy/compare/1.2.20...1.2.21) - 7 August 2025
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: toc padding [nileshgulia1 - [`ccef744`](https://github.com/eea/volto-bise-policy/commit/ccef744db5a8d4b66ce5178ae92e4e8e47b43c23)]
|
|
12
|
+
- fix: toc styles for sidenav [nileshgulia1 - [`fcf0627`](https://github.com/eea/volto-bise-policy/commit/fcf0627ae095ebe071d8d4a089c20691c41ae014)]
|
|
13
|
+
|
|
7
14
|
### [1.2.20](https://github.com/eea/volto-bise-policy/compare/1.2.19...1.2.20) - 30 June 2025
|
|
8
15
|
|
|
9
16
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
package/theme/extras/tocnav.less
CHANGED
|
@@ -124,10 +124,17 @@
|
|
|
124
124
|
// Table of contents - accordion menu
|
|
125
125
|
.table-of-contents.accordionMenu {
|
|
126
126
|
.ui.accordion {
|
|
127
|
+
.accordion {
|
|
128
|
+
margin: 1em 0em 0em !important;
|
|
129
|
+
padding: 0em;
|
|
130
|
+
}
|
|
131
|
+
.title {
|
|
132
|
+
padding: 0.75em 2em;
|
|
133
|
+
}
|
|
127
134
|
.content {
|
|
135
|
+
--bg-color: initial !important;
|
|
128
136
|
ul {
|
|
129
|
-
padding
|
|
130
|
-
padding-bottom: 1.3rem;
|
|
137
|
+
padding: 0.5rem 10px 1.3rem 50px;
|
|
131
138
|
}
|
|
132
139
|
.accordion-list-bulleted li::marker {
|
|
133
140
|
content: '\25CB';
|