diff --git a/ts3-client/swing/src/main/java/com/ts3client/ui/ChatPanel.java b/ts3-client/swing/src/main/java/com/ts3client/ui/ChatPanel.java index f44aeb9..b266390 100644 --- a/ts3-client/swing/src/main/java/com/ts3client/ui/ChatPanel.java +++ b/ts3-client/swing/src/main/java/com/ts3client/ui/ChatPanel.java @@ -322,10 +322,10 @@ public final class ChatPanel extends JPanel { // Client references look exactly like a message author's name. css.addRule("a." + BBCode.IDENTITY_LINK_CLASS + " { color:" + hex(Theme.CHAT_NAME) + "; font-weight:bold; text-decoration:none; }"); - // Channel (and other TeamSpeak protocol) references, which the log leans on - // heavily: same weight as the text around them, but their own colour. + // Channel (and other TeamSpeak protocol) references stand out of a line the + // same way a client's name does. css.addRule("a." + BBCode.TS_LINK_CLASS - + " { color:" + hex(Theme.CHAT_NAME) + "; text-decoration:none; }"); + + " { color:" + hex(Theme.CHAT_NAME) + "; font-weight:bold; text-decoration:none; }"); // External links are underlined so they can't be mistaken for an identity. css.addRule("a." + BBCode.EXTERNAL_LINK_CLASS + " { color:" + hex(Theme.LINK) + "; text-decoration:underline; }");