ar-poncho 2.0.256 → 2.0.258
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 +8 -7
- package/dist/css/poncho.min.css +1 -1
- package/dist/js/poncho.js +83 -29
- package/dist/js/poncho.min.js +1 -1
- package/package.json +1 -1
package/dist/css/poncho.css
CHANGED
|
@@ -8932,10 +8932,11 @@ body .main-footer {
|
|
|
8932
8932
|
--slider-bottom: 10px;
|
|
8933
8933
|
--slider-radius: 16px;
|
|
8934
8934
|
--slider-media-mobile-height: 45%;
|
|
8935
|
+
--tooltip: #333;
|
|
8936
|
+
--tooltip-color: white;
|
|
8935
8937
|
--active-marker-color: 255, 206, 0;
|
|
8936
8938
|
--active-marker-alpha: 0.5;
|
|
8937
8939
|
--background-color: var(--map-background);
|
|
8938
|
-
--accesible-background: #37bbed;
|
|
8939
8940
|
--accesible-background: #f2f2f2;
|
|
8940
8941
|
overflow: hidden;
|
|
8941
8942
|
position: relative;
|
|
@@ -9045,10 +9046,10 @@ body .main-footer {
|
|
|
9045
9046
|
filter: drop-shadow(2px 2px 2px rgb(249, 168, 34));
|
|
9046
9047
|
}
|
|
9047
9048
|
.poncho-map *:focus {
|
|
9048
|
-
outline:
|
|
9049
|
+
outline: 3px solid var(--cielo, #039BE5) !important;
|
|
9049
9050
|
box-sizing: border-box;
|
|
9050
9051
|
border-radius: 3px;
|
|
9051
|
-
box-shadow: 0 0 8px #
|
|
9052
|
+
box-shadow: 0 0 8px var(--cielo, #039BE5) !important;
|
|
9052
9053
|
}
|
|
9053
9054
|
.poncho-map .accesible-nav {
|
|
9054
9055
|
outline: none;
|
|
@@ -9182,10 +9183,6 @@ body .main-footer {
|
|
|
9182
9183
|
.poncho-map .filter-container .poncho-map-filters .form-check .form-check-label {
|
|
9183
9184
|
color: var(--color-base) !important;
|
|
9184
9185
|
}
|
|
9185
|
-
.poncho-map :root {
|
|
9186
|
-
--tooltip: #333;
|
|
9187
|
-
--tooltip-color: white;
|
|
9188
|
-
}
|
|
9189
9186
|
.poncho-map .leaflet-tooltip-left:before {
|
|
9190
9187
|
right: 0;
|
|
9191
9188
|
margin-right: -12px;
|
|
@@ -9324,6 +9321,10 @@ input[type=search].js-poncho-map-search__input::-webkit-search-cancel-button {
|
|
|
9324
9321
|
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
9322
|
}
|
|
9326
9323
|
|
|
9324
|
+
.leaflet-control-attribution .leaflet-attribution-flag {
|
|
9325
|
+
display: none !important;
|
|
9326
|
+
}
|
|
9327
|
+
|
|
9327
9328
|
.dashboard ol {
|
|
9328
9329
|
padding: 15px;
|
|
9329
9330
|
}
|