From f2c4d08801903d2fcbfed46cf5d6aee85bc838eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Fri, 30 Sep 2016 01:50:54 -0400 Subject: [PATCH] Fix title icons for channels and channel lists This bug slipped when adding `/list` support in #258. --- client/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/css/style.css b/client/css/style.css index 9bd5569a..65bba699 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -185,7 +185,7 @@ button { #chat .channel .title:before { content: "\f0f6"; /* http://fontawesome.io/icon/file-text-o/ */ } #sidebar .chan.special:before, -#chat .channel .title:before { content: "\f03a"; /* http://fontawesome.io/icon/list/ */ } +#chat .special .title:before { content: "\f03a"; /* http://fontawesome.io/icon/list/ */ } #footer .sign-in:before { content: "\f023"; /* http://fontawesome.io/icon/lock/ */ } #footer .connect:before { content: "\f067"; /* http://fontawesome.io/icon/plus/ */ }