From 212f4be3c3513059b0b42f113db3f3a7e1308a9f Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Fri, 1 Mar 2019 14:23:58 +0200 Subject: [PATCH] Fix (dis)connect icons in context menu being reverse of what they should be --- client/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/css/style.css b/client/css/style.css index 133c420b..69b4f32e 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -295,8 +295,8 @@ kbd { .context-menu-user::before { content: "\f007"; /* http://fontawesome.io/icon/user/ */ } .context-menu-close::before { content: "\f00d"; /* http://fontawesome.io/icon/times/ */ } .context-menu-list::before { content: "\f03a"; /* http://fontawesome.io/icon/list/ */ } -.context-menu-disconnect::before { content: "\f0c1"; /* https://fontawesome.com/icons/unlink?style=solid */ } -.context-menu-connect::before { content: "\f127"; /* https://fontawesome.com/icons/link?style=solid */ } +.context-menu-disconnect::before { content: "\f127"; /* https://fontawesome.com/icons/unlink?style=solid */ } +.context-menu-connect::before { content: "\f0c1"; /* https://fontawesome.com/icons/link?style=solid */ } .context-menu-action-whois::before { content: "\f05a"; /* http://fontawesome.io/icon/info-circle/ */ } .context-menu-action-kick::before { content: "\f05e"; /* http://fontawesome.io/icon/ban/ */ } .context-menu-action-op::before { content: "\f1fa"; /* http://fontawesome.io/icon/at/ */ }