@eeacms/volto-clms-theme 1.0.149 → 1.0.150
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
CHANGED
|
@@ -4,6 +4,14 @@ 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.0.150](https://github.com/eea/volto-clms-theme/compare/1.0.149...1.0.150) - 30 November 2022
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: CLMS-1588 add min-height to text-link in carousel [joewdavies - [`71fcc48`](https://github.com/eea/volto-clms-theme/commit/71fcc4898da1bf8e2ea99951f75e8f281b94306d)]
|
|
12
|
+
- fix: CLMS-1587 prevent dropdowns from overflowing out of plone left sidemenu [joewdavies - [`8f4b4bf`](https://github.com/eea/volto-clms-theme/commit/8f4b4bfc0289ccd8d1662a1159574893b7b86730)]
|
|
13
|
+
- fix: prevent map viewer from overlapping plone sidemenu [joewdavies - [`b3f60a2`](https://github.com/eea/volto-clms-theme/commit/b3f60a27aef5a94bd02556fb428ec38c613474a3)]
|
|
14
|
+
|
|
7
15
|
### [1.0.149](https://github.com/eea/volto-clms-theme/compare/1.0.148...1.0.149) - 25 November 2022
|
|
8
16
|
|
|
9
17
|
#### :bug: Bug Fixes
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@ const CclTextLinkCarouselView = (props) => {
|
|
|
20
20
|
|
|
21
21
|
return (
|
|
22
22
|
<>
|
|
23
|
-
<div className="ccl-container">
|
|
23
|
+
<div className="ccl-container carousel-text-link-container">
|
|
24
24
|
<Slider {...settings} ref={slider} className="text-carousel">
|
|
25
25
|
{data?.textLink?.items.map((item, index) => (
|
|
26
26
|
<div className="text-link-carousel-block" key={index}>
|
|
@@ -1280,4 +1280,18 @@ div#page-document h1.documentFirstHeading {
|
|
|
1280
1280
|
// CLMS-1542
|
|
1281
1281
|
main {
|
|
1282
1282
|
overflow: visible !important;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
// CLMS-1587
|
|
1286
|
+
.toolbar-content {
|
|
1287
|
+
z-index: 9 !important;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
.pastanaga-menu-list li {
|
|
1291
|
+
margin-left: unset !important;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
// CLMS-1588
|
|
1295
|
+
.carousel-text-link-container {
|
|
1296
|
+
min-height: 30px;
|
|
1283
1297
|
}
|