From 8d4475ff84725324cc86515d8f2090b647e1fedc Mon Sep 17 00:00:00 2001 From: William Boman Date: Thu, 8 Mar 2018 20:22:09 +0100 Subject: [PATCH 1/2] client/themes: fix background color when hovering users in the user list --- client/themes/morning.css | 4 ++++ client/themes/zenburn.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/client/themes/morning.css b/client/themes/morning.css index 6b646f52..314f76cb 100644 --- a/client/themes/morning.css +++ b/client/themes/morning.css @@ -59,6 +59,10 @@ body { color: #fefefe; } +#chat .userlist .user.active { + background-color: #242a33; +} + /* Nicknames */ #chat .user { color: #b0bacf; diff --git a/client/themes/zenburn.css b/client/themes/zenburn.css index 3c1e7ee0..4dcc17cb 100644 --- a/client/themes/zenburn.css +++ b/client/themes/zenburn.css @@ -85,6 +85,10 @@ body { color: #dcdccc; } +#chat .userlist .user.active { + background-color: #333; +} + /* Nicknames */ #chat .user { color: #bc8cbc; From 7cad5063f2c39d9269199d78e77a05ca60e1385f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Thu, 8 Mar 2018 19:28:20 -0500 Subject: [PATCH 2/2] Fix userlist search background/color in darker themes --- client/themes/morning.css | 4 ++-- client/themes/zenburn.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/themes/morning.css b/client/themes/morning.css index 314f76cb..57caa68b 100644 --- a/client/themes/morning.css +++ b/client/themes/morning.css @@ -37,11 +37,11 @@ body { background: #333c4a; } -#chat .count { +#chat .userlist .count { background-color: #2e3642; } -#chat .search { +#chat .userlist .search { color: #ccc; padding: 15px 16px; } diff --git a/client/themes/zenburn.css b/client/themes/zenburn.css index 4dcc17cb..d9b6c4c5 100644 --- a/client/themes/zenburn.css +++ b/client/themes/zenburn.css @@ -63,11 +63,11 @@ body { border-top: 1px solid #000; } -#chat .count { +#chat .userlist .count { background-color: #434443; } -#chat .search { +#chat .userlist .search { color: #88b090; padding: 15px 16px; }