commit 6a1ec23321d573d792e70ad6c185545f8d7843f8
parent ec4e19c3fcf203025c8d5d2c66648147b6e5bef9
Author: n0tr1v <n0tr1v@protonmail.com>
Date: Tue, 23 May 2023 18:37:18 -0700
fix initial color
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pkg/web/handlers/api/v1/messages.qtpl b/pkg/web/handlers/api/v1/messages.qtpl
@@ -177,7 +177,7 @@
.notif, .notif:hover { color: #e74c3c; }
#msg-err { background-color: #8f2d2d; color: #ffffff; padding: 1px 5px 2px 5px; display: block; text-decoration: none; }
#http-alive-indicator {
- background-color: red;
+ background-color: #fafa6e;
width: 20px;
height: 20px;
position: absolute;
diff --git a/pkg/web/handlers/api/v1/messages.qtpl.go b/pkg/web/handlers/api/v1/messages.qtpl.go
@@ -235,7 +235,7 @@ func StreamGenerateStyle(qw422016 *qt422016.Writer, AuthUser *database.User, Dat
.notif, .notif:hover { color: #e74c3c; }
#msg-err { background-color: #8f2d2d; color: #ffffff; padding: 1px 5px 2px 5px; display: block; text-decoration: none; }
#http-alive-indicator {
- background-color: red;
+ background-color: #fafa6e;
width: 20px;
height: 20px;
position: absolute;
diff --git a/pkg/web/handlers/handlers.go b/pkg/web/handlers/handlers.go
@@ -4939,7 +4939,7 @@ func ChatStreamMessagesHandler(c echo.Context) error {
"#1f5f70",
"#2a4858",
}
- clrIdx := 0
+ clrIdx := 1
i := 0
Loop: