From b9bb8c28b4f145a7099d04d5751985eac51ad9c4 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Sun, 24 Nov 2024 13:39:13 -0800 Subject: [PATCH] Chat online indicator to match the current theme --- web/static/css/theme-blue-pink.css | 6 ++++++ web/static/css/theme-blue.css | 6 ++++++ web/static/css/theme-green.css | 6 ++++++ web/static/css/theme-orange.css | 6 ++++++ web/static/css/theme-pink.css | 6 ++++++ web/static/css/theme-purple.css | 6 ++++++ web/static/css/theme-red.css | 6 ++++++ web/static/css/theme-yellow.css | 6 ++++++ 8 files changed, 48 insertions(+) diff --git a/web/static/css/theme-blue-pink.css b/web/static/css/theme-blue-pink.css index 9907d6d..ed60fb6 100644 --- a/web/static/css/theme-blue-pink.css +++ b/web/static/css/theme-blue-pink.css @@ -22,4 +22,10 @@ .nonshy-forum-box-3 { /* Nested box: Topics/Posts/Users/View counters */ background-color: #e7c2ff; +} + +/* Chat members in top nav bar on desktop */ +.nonshy-navbar-notification-tag.is-link { + background-color: rgb(255, 104, 247); + color: #606; } \ No newline at end of file diff --git a/web/static/css/theme-blue.css b/web/static/css/theme-blue.css index df1e669..0ccb1a2 100644 --- a/web/static/css/theme-blue.css +++ b/web/static/css/theme-blue.css @@ -21,4 +21,10 @@ .nonshy-forum-box-3 { /* Nested box: Topics/Posts/Users/View counters */ background-color: #c2d2ff; +} + +/* Chat members in top nav bar on desktop */ +.nonshy-navbar-notification-tag.is-link { + background-color: rgb(66, 142, 255); + color: #fff; } \ No newline at end of file diff --git a/web/static/css/theme-green.css b/web/static/css/theme-green.css index e9c91ce..2083158 100644 --- a/web/static/css/theme-green.css +++ b/web/static/css/theme-green.css @@ -21,4 +21,10 @@ .nonshy-forum-box-3 { /* Nested box: Topics/Posts/Users/View counters */ background-color: #c2ffe8; +} + +/* Chat members in top nav bar on desktop */ +.nonshy-navbar-notification-tag.is-link { + background-color: rgb(28, 133, 33); + color: #fff; } \ No newline at end of file diff --git a/web/static/css/theme-orange.css b/web/static/css/theme-orange.css index 0c92985..4e2d447 100644 --- a/web/static/css/theme-orange.css +++ b/web/static/css/theme-orange.css @@ -20,4 +20,10 @@ .nonshy-forum-box-3 { /* Nested box: Topics/Posts/Users/View counters */ background-color: #ffcbc2; +} + +/* Chat members in top nav bar on desktop */ +.nonshy-navbar-notification-tag.is-link { + background-color: rgb(255, 110, 66); + color: #fff; } \ No newline at end of file diff --git a/web/static/css/theme-pink.css b/web/static/css/theme-pink.css index 46a8a45..ab4548f 100644 --- a/web/static/css/theme-pink.css +++ b/web/static/css/theme-pink.css @@ -21,4 +21,10 @@ .nonshy-forum-box-3 { /* Nested box: Topics/Posts/Users/View counters */ background-color: #e7c2ff; +} + +/* Chat members in top nav bar on desktop */ +.nonshy-navbar-notification-tag.is-link { + background-color: rgb(255, 104, 247); + color: #606; } \ No newline at end of file diff --git a/web/static/css/theme-purple.css b/web/static/css/theme-purple.css index 5b4b5db..8df2cd2 100644 --- a/web/static/css/theme-purple.css +++ b/web/static/css/theme-purple.css @@ -22,4 +22,10 @@ .nonshy-forum-box-3 { /* Nested box: Topics/Posts/Users/View counters */ background-color: #d7c2ff; +} + +/* Chat members in top nav bar on desktop */ +.nonshy-navbar-notification-tag.is-link { + background-color: rgb(170, 66, 255); + color: #fff; } \ No newline at end of file diff --git a/web/static/css/theme-red.css b/web/static/css/theme-red.css index b2cb2f9..dcdb8c6 100644 --- a/web/static/css/theme-red.css +++ b/web/static/css/theme-red.css @@ -21,4 +21,10 @@ .nonshy-forum-box-3 { /* Nested box: Topics/Posts/Users/View counters */ background-color: #ffd0c2; +} + +/* Chat members in top nav bar on desktop */ +.nonshy-navbar-notification-tag.is-link { + background-color: rgb(255, 66, 66); + color: #fff; } \ No newline at end of file diff --git a/web/static/css/theme-yellow.css b/web/static/css/theme-yellow.css index 9e521c0..d89b42a 100644 --- a/web/static/css/theme-yellow.css +++ b/web/static/css/theme-yellow.css @@ -22,4 +22,10 @@ .nonshy-forum-box-3 { /* Nested box: Topics/Posts/Users/View counters */ background-color: #ffcbc2; +} + +/* Chat members in top nav bar on desktop */ +.nonshy-navbar-notification-tag.is-link { + background-color: rgb(163, 145, 40); + color: #fff; } \ No newline at end of file