diff --git a/data/www/index.html b/data/www/index.html
index f287cda..ffb3ceb 100644
--- a/data/www/index.html
+++ b/data/www/index.html
@@ -1 +1 @@
-
Bojler
🌡️ bojler
Aktuální teplota
-- °C
Stav ventilu
❓ Neznámý
📈 Historie teploty
\ No newline at end of file
+ Bojler
🌡️ bojler
Aktuální teplota
-- °C
Stav ventilu
❓ Neznámý
📈 Historie teploty
\ No newline at end of file
diff --git a/res/index.html b/res/index.html
index 48db01b..fe6b46c 100644
--- a/res/index.html
+++ b/res/index.html
@@ -94,6 +94,12 @@
background: rgba(150, 150, 150, 0.3);
border-radius: 4px;
}
+
+ .valve-warning {
+ color: var(--color-ok);
+ font-size: 80%;
+ font-weight: normal;
+ }
@@ -248,9 +254,9 @@
let warningHtml = "";
if (!isOpen && data.temp > data.t1) {
- warningHtml = ' ⚠️';
+ warningHtml = ' ⚠️ Otevřete ventil';
} else if (isOpen && data.temp < data.t0) {
- warningHtml = ' ⚠️';
+ warningHtml = ' ⚠️ Zavřete ventil';
}
if (isOpen) {