HexaWetter v1.2.0: Security, Admin, Radar, UI

This commit is contained in:
TheOnlyMace
2026-06-18 23:59:08 +02:00
parent 7ba9687619
commit 3589f7fdcf
72 changed files with 695 additions and 409 deletions

View File

@@ -307,6 +307,19 @@ html[data-theme="light"] .search-results { background: #fff; }
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 12px;
}
.hourly-chart-wrap {
position: relative;
height: min(340px, 48vh);
margin-bottom: 1.25rem;
padding: 0.75rem 0.5rem 0.25rem;
border: 1px solid var(--glass-border);
border-radius: var(--radius-xl);
background: rgba(0, 0, 0, 0.14);
}
html[data-theme="light"] .hourly-chart-wrap {
background: rgba(255, 255, 255, 0.55);
}
.hour-card span { display: block; font-size: 1.35rem; font-weight: 800; margin: 0.4rem 0; }
.bar { height: 6px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,0.12); margin: 0.7rem 0; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent-color-2), var(--primary-color)); }