From f36e9019f4e4a35b8b61ae55df30a63c57363b20 Mon Sep 17 00:00:00 2001 From: insects Date: Sun, 9 Feb 2025 18:00:49 +0100 Subject: [PATCH] add note about auto-refresh --- src/changelog.rs | 1 + src/templates.rs | 5 ++++- static/style.css | 7 +++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/changelog.rs b/src/changelog.rs index ec673b1..08fa5b0 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -12,6 +12,7 @@ pub fn changelog_page() -> Markup { li { "Improved display of fish conditions, the weather constraints are now shown" } li { "The fishing hole name is now also shown next to the fish"} li { "Color-coded the patch display badges" } + li { "Added a note about website auto-refresh next to the Eorzea clock"} } } diff --git a/src/templates.rs b/src/templates.rs index b6a32f0..3fff20b 100644 --- a/src/templates.rs +++ b/src/templates.rs @@ -42,7 +42,10 @@ pub fn layout(content: Markup) -> Markup { pub fn main_page(data: ViewData) -> Markup { let list = html! { - h2.clock { "ET " (clock::get_current_eorzea_date().format("%H:%M")) } + h2.clock { + "ET " (clock::get_current_eorzea_date().format("%H:%M")) + small { "refreshes every ~10 seconds" } + } (fish_list(&data)) script src="/static/scripts/dates.js" type="text/javascript" {} }; diff --git a/static/style.css b/static/style.css index ced716a..78fd7c5 100644 --- a/static/style.css +++ b/static/style.css @@ -198,6 +198,13 @@ summary:hover { background: #e5b522; } +h2 small { + font-size: 16px; + font-weight: normal; + color: gray; + margin-left: 4px; +} + .zone { font-size: 13px; color: gray;