ar-poncho 2.0.257 → 2.0.259
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/dist/css/poncho.css +43 -8
- package/dist/css/poncho.min.css +1 -1
- package/dist/js/poncho.js +255 -99
- package/dist/js/poncho.min.js +1 -1
- package/marker-poncho.zip +0 -0
- package/package.json +1 -1
package/dist/css/poncho.css
CHANGED
|
@@ -8918,6 +8918,40 @@ body .main-footer {
|
|
|
8918
8918
|
opacity: 1;
|
|
8919
8919
|
}
|
|
8920
8920
|
}
|
|
8921
|
+
/* Mensajes de error y warning */
|
|
8922
|
+
.poncho-map--message {
|
|
8923
|
+
padding: 0.25em 0.75em;
|
|
8924
|
+
border-radius: 8px;
|
|
8925
|
+
margin: 1em 0;
|
|
8926
|
+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
8927
|
+
color: black;
|
|
8928
|
+
}
|
|
8929
|
+
.poncho-map--message.danger {
|
|
8930
|
+
background: var(--tomate, #EF5350);
|
|
8931
|
+
color: white;
|
|
8932
|
+
}
|
|
8933
|
+
.poncho-map--message.danger .title {
|
|
8934
|
+
color: white !important;
|
|
8935
|
+
}
|
|
8936
|
+
.poncho-map--message.danger pre {
|
|
8937
|
+
color: rgba(255, 255, 255, 0.9);
|
|
8938
|
+
}
|
|
8939
|
+
.poncho-map--message.warning {
|
|
8940
|
+
background: var(--maiz, #FFCE00);
|
|
8941
|
+
color: rgba(0, 0, 0, 0.8);
|
|
8942
|
+
}
|
|
8943
|
+
.poncho-map--message.warning .title {
|
|
8944
|
+
color: rgba(0, 0, 0, 0.8) !important;
|
|
8945
|
+
}
|
|
8946
|
+
.poncho-map--message.warning pre {
|
|
8947
|
+
color: black;
|
|
8948
|
+
}
|
|
8949
|
+
.poncho-map--message pre {
|
|
8950
|
+
background: rgba(0, 0, 0, 0.1);
|
|
8951
|
+
border: none;
|
|
8952
|
+
}
|
|
8953
|
+
|
|
8954
|
+
/**/
|
|
8921
8955
|
.poncho-map {
|
|
8922
8956
|
--slider-width: 326px;
|
|
8923
8957
|
--color-primary: var(--primary, black);
|
|
@@ -8932,10 +8966,11 @@ body .main-footer {
|
|
|
8932
8966
|
--slider-bottom: 10px;
|
|
8933
8967
|
--slider-radius: 16px;
|
|
8934
8968
|
--slider-media-mobile-height: 45%;
|
|
8969
|
+
--tooltip: #333;
|
|
8970
|
+
--tooltip-color: white;
|
|
8935
8971
|
--active-marker-color: 255, 206, 0;
|
|
8936
8972
|
--active-marker-alpha: 0.5;
|
|
8937
8973
|
--background-color: var(--map-background);
|
|
8938
|
-
--accesible-background: #37bbed;
|
|
8939
8974
|
--accesible-background: #f2f2f2;
|
|
8940
8975
|
overflow: hidden;
|
|
8941
8976
|
position: relative;
|
|
@@ -8949,7 +8984,6 @@ body .main-footer {
|
|
|
8949
8984
|
/* leaflet popup */
|
|
8950
8985
|
/* leaflet controls*/
|
|
8951
8986
|
}
|
|
8952
|
-
.poncho-map .title,
|
|
8953
8987
|
.poncho-map *.text-primary {
|
|
8954
8988
|
color: var(--primary, #0072bb) !important;
|
|
8955
8989
|
}
|
|
@@ -9043,12 +9077,13 @@ body .main-footer {
|
|
|
9043
9077
|
}
|
|
9044
9078
|
.poncho-map path.marker--active {
|
|
9045
9079
|
filter: drop-shadow(2px 2px 2px rgb(249, 168, 34));
|
|
9080
|
+
fill-opacity: 0.8 !important;
|
|
9046
9081
|
}
|
|
9047
9082
|
.poncho-map *:focus {
|
|
9048
|
-
outline:
|
|
9083
|
+
outline: 3px solid var(--cielo, #039BE5) !important;
|
|
9049
9084
|
box-sizing: border-box;
|
|
9050
9085
|
border-radius: 3px;
|
|
9051
|
-
box-shadow: 0 0 8px #
|
|
9086
|
+
box-shadow: 0 0 8px var(--cielo, #039BE5) !important;
|
|
9052
9087
|
}
|
|
9053
9088
|
.poncho-map .accesible-nav {
|
|
9054
9089
|
outline: none;
|
|
@@ -9182,10 +9217,6 @@ body .main-footer {
|
|
|
9182
9217
|
.poncho-map .filter-container .poncho-map-filters .form-check .form-check-label {
|
|
9183
9218
|
color: var(--color-base) !important;
|
|
9184
9219
|
}
|
|
9185
|
-
.poncho-map :root {
|
|
9186
|
-
--tooltip: #333;
|
|
9187
|
-
--tooltip-color: white;
|
|
9188
|
-
}
|
|
9189
9220
|
.poncho-map .leaflet-tooltip-left:before {
|
|
9190
9221
|
right: 0;
|
|
9191
9222
|
margin-right: -12px;
|
|
@@ -9324,6 +9355,10 @@ input[type=search].js-poncho-map-search__input::-webkit-search-cancel-button {
|
|
|
9324
9355
|
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='10' fill='whitesmoke'/><polygon points='15.35 6.03 13.97 4.65 10 8.63 6.03 4.65 4.65 6.03 8.63 10 4.65 13.97 6.03 15.35 10 11.38 13.97 15.35 15.35 13.97 11.38 10 15.35 6.03' fill='black'/></svg>");
|
|
9325
9356
|
}
|
|
9326
9357
|
|
|
9358
|
+
.leaflet-control-attribution .leaflet-attribution-flag {
|
|
9359
|
+
display: none !important;
|
|
9360
|
+
}
|
|
9361
|
+
|
|
9327
9362
|
.dashboard ol {
|
|
9328
9363
|
padding: 15px;
|
|
9329
9364
|
}
|