@eeacms/volto-clms-theme 1.0.45 → 1.0.49
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 +53 -0
- package/Jenkinsfile +15 -5
- package/README.md +86 -0
- package/package.json +7 -1
- package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/CclVerticalTabsView.jsx +21 -7
- package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/TabsWidget.jsx +78 -15
- package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/custom.less +5 -0
- package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/subTabSchema.js +19 -0
- package/src/components/CLMSDatasetDetailView/BoundingBoxComponent.jsx +20 -0
- package/src/components/CLMSDatasetDetailView/CLMSDatasetDetailView.jsx +16 -22
- package/src/components/CLMSDatasetDetailView/ContactComponent.jsx +44 -0
- package/src/components/CLMSDatasetDetailView/DistributionInfoComponent.jsx +20 -0
- package/src/components/CLMSDatasetDetailView/MetadataContent.jsx +209 -80
- package/src/components/CLMSEventView/CLMSEventView.jsx +15 -13
- package/src/components/CLMSNewsItemView/CLMSNewsItemView.jsx +13 -11
- package/src/components/CclCard/CclCard.jsx +8 -5
- package/src/components/CclInfoDescription/CclInfoDescription.jsx +9 -8
- package/src/components/CclLoginModal/CclLoginModal.jsx +0 -6
- package/src/components/CclTab/CclTab.jsx +8 -11
- package/src/components/CclTab/CclTabs.jsx +23 -8
- package/theme/clms/css/block-form.less +62 -0
- package/theme/clms/css/menu.css +4 -0
- package/theme/clms/css/styles.less +9 -2
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
@import url('home.css');
|
|
4
4
|
@import url('menu.css');
|
|
5
5
|
@import url('forms.css');
|
|
6
|
+
@import url('block-form.less');
|
|
6
7
|
/*@import url("cards.css");*/
|
|
7
8
|
@import url('maps.less');
|
|
8
9
|
|
|
@@ -102,8 +103,8 @@ li {
|
|
|
102
103
|
|
|
103
104
|
.ul-list li::marker,
|
|
104
105
|
.ol-list li::marker,
|
|
105
|
-
ul > li,
|
|
106
|
-
ol > li {
|
|
106
|
+
ul > li::marker,
|
|
107
|
+
ol > li::marker {
|
|
107
108
|
color: #a0b128;
|
|
108
109
|
}
|
|
109
110
|
|
|
@@ -1112,12 +1113,18 @@ body.section-map-viewer #page-document.ui.container {
|
|
|
1112
1113
|
width: 100% !important;
|
|
1113
1114
|
}
|
|
1114
1115
|
|
|
1116
|
+
/*DataSet catalogue */
|
|
1115
1117
|
body.searchlib-page div#page-document {
|
|
1116
1118
|
top: 0em !important;
|
|
1117
1119
|
width: 1127px !important;
|
|
1118
1120
|
max-width: 1127px !important;
|
|
1119
1121
|
}
|
|
1120
1122
|
|
|
1123
|
+
div#page-document h1.documentFirstHeading {
|
|
1124
|
+
display: block !important;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
/**/
|
|
1121
1128
|
.metadata.image img {
|
|
1122
1129
|
max-width: 100%;
|
|
1123
1130
|
}
|