diff --git a/client/css/style.css b/client/css/style.css index 8eef81e5..72c96a6e 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -225,6 +225,7 @@ kbd { .context-menu-close::before { content: "\f00d"; /* http://fontawesome.io/icon/times/ */ } .context-menu-list::before { content: "\f03a"; /* http://fontawesome.io/icon/list/ */ } +.context-menu-network::before, #sidebar .chan.lobby::before, #chat .lobby .title::before { content: "\f0a0"; /* http://fontawesome.io/icon/hdd-o/ */ } diff --git a/client/js/lounge.js b/client/js/lounge.js index 22e86684..b6fa32f5 100644 --- a/client/js/lounge.js +++ b/client/js/lounge.js @@ -84,7 +84,7 @@ $(function() { }); } else if (target.hasClass("chan")) { output = templates.contextmenu_item({ - class: "chan", + class: target.hasClass("lobby") ? "network" : "chan", text: target.data("title"), data: target.data("target"), });