ar-poncho 2.0.258 → 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 +35 -1
- package/dist/css/poncho.min.css +1 -1
- package/dist/js/poncho.js +180 -78
- 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);
|
|
@@ -8950,7 +8984,6 @@ body .main-footer {
|
|
|
8950
8984
|
/* leaflet popup */
|
|
8951
8985
|
/* leaflet controls*/
|
|
8952
8986
|
}
|
|
8953
|
-
.poncho-map .title,
|
|
8954
8987
|
.poncho-map *.text-primary {
|
|
8955
8988
|
color: var(--primary, #0072bb) !important;
|
|
8956
8989
|
}
|
|
@@ -9044,6 +9077,7 @@ body .main-footer {
|
|
|
9044
9077
|
}
|
|
9045
9078
|
.poncho-map path.marker--active {
|
|
9046
9079
|
filter: drop-shadow(2px 2px 2px rgb(249, 168, 34));
|
|
9080
|
+
fill-opacity: 0.8 !important;
|
|
9047
9081
|
}
|
|
9048
9082
|
.poncho-map *:focus {
|
|
9049
9083
|
outline: 3px solid var(--cielo, #039BE5) !important;
|