mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-29 09:05:30 +00:00
deployment prep
This commit is contained in:
@@ -875,7 +875,7 @@ class Y extends HTMLElement {
|
||||
}));
|
||||
}
|
||||
setPointActive(e) {
|
||||
e.setAttribute("r", "0.8"), e.setAttribute("fill", "#dc2626"), e.setAttribute("stroke", "#b91c1c"), e.setAttribute("stroke-width", "0.12"), e.setAttribute("opacity", "1"), e.setAttribute("filter", "drop-shadow(0 0.05 0.1 rgba(0,0,0,0.2))"), e.parentNode && e.parentNode.appendChild(e);
|
||||
e.setAttribute("r", "0.6"), e.setAttribute("fill", "#dc2626"), e.setAttribute("stroke", "#b91c1c"), e.setAttribute("stroke-width", "0.12"), e.setAttribute("opacity", "1"), e.setAttribute("filter", "drop-shadow(0 0.05 0.1 rgba(0,0,0,0.2))"), e.parentNode && e.parentNode.appendChild(e);
|
||||
}
|
||||
setPointInactive(e) {
|
||||
e.setAttribute("r", "0.4"), e.setAttribute("fill", "white"), e.setAttribute("stroke", "none"), e.setAttribute("opacity", "0.7"), e.setAttribute("filter", "drop-shadow(0 0.05 0.08 rgba(0,0,0,0.15))");
|
||||
|
||||
@@ -1,10 +1,14 @@
|
||||
<meta charset="UTF-8" />
|
||||
{{ if .noIndex }}
|
||||
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet">
|
||||
<meta name="googlebot" content="noindex, nofollow">
|
||||
{{ end }}
|
||||
|
||||
{{ block "head" . }}
|
||||
<!-- Default Head elements -->
|
||||
{{ end }}
|
||||
|
||||
{{ if .isDev }}
|
||||
{{ if or .isDev .isStaging }}
|
||||
<link rel="icon" href="/assets/logo/dev_favicon.png" />
|
||||
{{ else }}
|
||||
<link rel="icon" href="/assets/logo/favicon.png" />
|
||||
|
||||
@@ -623,7 +623,7 @@ export class PlacesMap extends HTMLElement {
|
||||
|
||||
setPointActive(circle) {
|
||||
// Active state: darker red circle with wider dark border and small shadow
|
||||
circle.setAttribute("r", "0.8"); // Bigger radius in % units
|
||||
circle.setAttribute("r", "0.6"); // Bigger radius in % units
|
||||
circle.setAttribute("fill", "#dc2626");
|
||||
circle.setAttribute("stroke", "#b91c1c");
|
||||
circle.setAttribute("stroke-width", "0.12");
|
||||
|
||||
Reference in New Issue
Block a user