@eeacms/volto-n2k 1.1.2 → 1.1.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.md +13 -0
- package/package.json +2 -2
- package/src/components/manage/Blocks/ImageText/Edit.jsx +1 -2
- package/src/components/manage/Blocks/SiteHabitatsList/Filters/HabitatsGroups.jsx +49 -0
- package/src/components/manage/Blocks/SiteHabitatsList/Filters/SortBy.jsx +52 -0
- package/src/components/manage/Blocks/SiteHabitatsList/Filters/View.jsx +201 -0
- package/src/components/manage/Blocks/SiteHabitatsList/Filters/index.js +4 -0
- package/src/components/manage/Blocks/SiteHabitatsList/View.jsx +214 -84
- package/src/components/manage/Blocks/SiteHabitatsList/style.less +256 -45
- package/src/components/manage/Blocks/SiteHabitatsList/utils.js +33 -0
- package/src/components/manage/Blocks/SiteHabitatsListOld/View.jsx +106 -0
- package/src/components/manage/Blocks/SiteHabitatsListOld/index.js +17 -0
- package/src/components/manage/Blocks/SiteHabitatsListOld/schema.js +19 -0
- package/src/components/manage/Blocks/SiteHabitatsListOld/style.less +70 -0
- package/src/components/manage/Blocks/SiteProtectedHabitats/View.jsx +11 -9
- package/src/components/manage/Blocks/SiteProtectedSpecies/View.jsx +11 -9
- package/src/components/manage/Blocks/SiteSpeciesList/Filters/SortBy.jsx +1 -1
- package/src/components/manage/Blocks/SiteSpeciesList/Filters/SpeciesGroups.jsx +10 -4
- package/src/components/manage/Blocks/SiteSpeciesList/Filters/View.jsx +1 -0
- package/src/components/manage/Blocks/SiteSpeciesList/style.less +30 -22
|
@@ -49,39 +49,47 @@ div#view .site-species-list .species-list .ui.container > * {
|
|
|
49
49
|
.species-groups {
|
|
50
50
|
margin-bottom: 1rem;
|
|
51
51
|
background-color: #00a390;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
52
|
+
white-space: nowrap;
|
|
53
|
+
|
|
54
|
+
button.species-group {
|
|
55
|
+
padding: 1rem;
|
|
56
|
+
border: none;
|
|
57
|
+
background-color: transparent;
|
|
58
|
+
color: #fff !important;
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
font-size: 16px;
|
|
61
|
+
text-transform: uppercase;
|
|
62
|
+
|
|
63
|
+
&::after {
|
|
64
|
+
display: block;
|
|
65
|
+
width: calc(100% + 8px);
|
|
66
|
+
height: 3px;
|
|
67
|
+
margin-top: 2px;
|
|
68
|
+
background: transparent;
|
|
69
|
+
content: '';
|
|
70
|
+
transform: translateX(-4px);
|
|
61
71
|
}
|
|
62
72
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
color: #fff !important;
|
|
68
|
-
cursor: pointer;
|
|
69
|
-
font-size: 16px;
|
|
70
|
-
text-transform: uppercase;
|
|
71
|
-
|
|
72
|
-
&.active,
|
|
73
|
-
&:hover {
|
|
74
|
-
padding-bottom: calc(1rem - 3px);
|
|
75
|
-
border-bottom: 3px solid #fff;
|
|
73
|
+
&.active,
|
|
74
|
+
&:hover {
|
|
75
|
+
&::after {
|
|
76
|
+
background: #ffffff;
|
|
76
77
|
}
|
|
77
78
|
}
|
|
78
79
|
}
|
|
80
|
+
|
|
81
|
+
.ui.container {
|
|
82
|
+
display: block;
|
|
83
|
+
overflow-x: auto;
|
|
84
|
+
text-align: center;
|
|
85
|
+
}
|
|
79
86
|
}
|
|
80
87
|
|
|
81
88
|
.ui.sidebar {
|
|
82
89
|
background-color: #fff !important;
|
|
83
90
|
|
|
84
91
|
&.right.visible {
|
|
92
|
+
z-index: 800;
|
|
85
93
|
box-shadow: 0px 0px 13px -5px #000000;
|
|
86
94
|
}
|
|
87
95
|
|