ublo-lib 1.31.15 → 1.31.17
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/es/common/components/editable-map/editable-map.module.css +7 -7
- package/es/common/components/editable-map/icons/esf-pralognan.js +1186 -0
- package/es/common/components/editable-map/icons/index.js +1 -0
- package/es/common/components/editable-map/marker-list.js +3 -3
- package/es/common/components/editable-map/marker-list.module.css +19 -18
- package/es/common/components/editable-map/slopes-toggle.module.css +1 -1
- package/package.json +1 -1
|
@@ -112,9 +112,9 @@
|
|
|
112
112
|
left: 1px;
|
|
113
113
|
width: calc(100% - 2px);
|
|
114
114
|
height: calc(100% - 2px);
|
|
115
|
-
background-color: var(--ds-grey-
|
|
115
|
+
background-color: var(--ds-grey-000, #fff);
|
|
116
116
|
border-radius: 50%;
|
|
117
|
-
opacity: 0.
|
|
117
|
+
opacity: 0.85;
|
|
118
118
|
pointer-events: none;
|
|
119
119
|
filter: drop-shadow(var(--ds-shadow-100, 0px 3px 6px rgba(0, 0, 0, 0.12)));
|
|
120
120
|
transition: transform 160ms
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
|
|
141
141
|
.map :global(.leaflet-tooltip) {
|
|
142
142
|
padding: 10px 16px;
|
|
143
|
-
font-size:
|
|
143
|
+
font-size: 16px;
|
|
144
144
|
font-weight: 700;
|
|
145
145
|
font-family: inherit;
|
|
146
146
|
text-shadow: -1px 0px 1px white, 0px -1px 1px white, 1px 0px 1px white,
|
|
@@ -190,14 +190,14 @@
|
|
|
190
190
|
|
|
191
191
|
.map:global(.leaflet-touch .leaflet-control-layers a:first-child),
|
|
192
192
|
.map:global(.leaflet-touch .leaflet-bar a:first-child) {
|
|
193
|
-
border-top-left-radius: var(--ds-radius-200,
|
|
194
|
-
border-top-right-radius: var(--ds-radius-200,
|
|
193
|
+
border-top-left-radius: var(--ds-radius-200, 10px);
|
|
194
|
+
border-top-right-radius: var(--ds-radius-200, 10px);
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
.map:global(.leaflet-touch .leaflet-control-layers a:last-child),
|
|
198
198
|
.map:global(.leaflet-touch .leaflet-bar a:last-child) {
|
|
199
|
-
border-bottom-left-radius: var(--ds-radius-200,
|
|
200
|
-
border-bottom-right-radius: var(--ds-radius-200,
|
|
199
|
+
border-bottom-left-radius: var(--ds-radius-200, 10px);
|
|
200
|
+
border-bottom-right-radius: var(--ds-radius-200, 10px);
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
.map:global(.leaflet-touch .leaflet-control-layers a span),
|