From c13bf2bf35cc259c1e46b6f09283a0eb71600c3e Mon Sep 17 00:00:00 2001 From: sneak <sneak@sneak.berlin> Date: Thu, 22 May 2025 09:24:01 -0700 Subject: [PATCH] Fix timestamp styling: remove hover cursor and prevent wrapping --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 3d0a06b..d72efd9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -87,9 +87,9 @@ color: #7f8c8d; min-width: 120px; font-family: monospace; + white-space: nowrap; } .timestamp[title] { - cursor: help; text-decoration: none; border-bottom: 1px dotted #7f8c8d; } @@ -291,7 +291,7 @@ <tbody> {{range .RecentLogs}} <tr> - <td class="timestamp">{{.Timestamp.Format "2006-01-02 15:04:05 MST"}}</td> + <td class="timestamp" style="white-space: nowrap;">{{.Timestamp.Format "2006-01-02 15:04:05 MST"}}</td> <td class="log-event">{{.Event}}</td> <td class="log-details"> {{range $key, $value := .Details}}