From 1c877a71ab57ead81ce21a54ca53227304c6d988 Mon Sep 17 00:00:00 2001 From: Maxime Poulin Date: Thu, 25 Feb 2016 02:29:51 -0500 Subject: [PATCH] Fix built-in themes broken by #75. Fixes #101 --- client/themes/crypto.css | 4 ++++ client/themes/zenburn.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/client/themes/crypto.css b/client/themes/crypto.css index 0530f9e3..a3b388a9 100644 --- a/client/themes/crypto.css +++ b/client/themes/crypto.css @@ -84,6 +84,10 @@ a:hover, color: #00ff0e; } +#sidebar .chan .name:after { + background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); +} + #sidebar button, #sidebar .chan, #sidebar .sign-out, diff --git a/client/themes/zenburn.css b/client/themes/zenburn.css index 1aa0a4c0..a7837fe9 100644 --- a/client/themes/zenburn.css +++ b/client/themes/zenburn.css @@ -61,6 +61,10 @@ body { bottom: 48px; } +#sidebar .chan .name:after { + background: linear-gradient(to right, rgba(43, 43, 43, 0) 0%, rgba(43, 43, 43, 1) 100%); +} + #footer { background: #33332f; border-top: 1px solid #000;