Fix <> appearing for nicks in chat messages on mobile
This commit is contained in:
parent
1378ca9322
commit
67af7ef3fe
12
theme.css
12
theme.css
|
@ -274,6 +274,10 @@ body {
|
||||||
color: #f0c079;
|
color: #f0c079;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#chat .msg .text .user {
|
||||||
|
border-bottom: 1px dotted #555;
|
||||||
|
}
|
||||||
|
|
||||||
#chat .channel .highlight,
|
#chat .channel .highlight,
|
||||||
#chat .channel .highlight .time,
|
#chat .channel .highlight .time,
|
||||||
#chat .channel .highlight .from,
|
#chat .channel .highlight .from,
|
||||||
|
@ -288,10 +292,6 @@ body {
|
||||||
border-color: #ad1457;
|
border-color: #ad1457;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .msg .text .user {
|
|
||||||
border-bottom: 1px dotted #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
#windows .header .topic,
|
#windows .header .topic,
|
||||||
#chat table.channel-list td {
|
#chat table.channel-list td {
|
||||||
color: #999;
|
color: #999;
|
||||||
|
@ -331,11 +331,11 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 479px) {
|
@media (max-width: 479px) {
|
||||||
#chat .message .user::before {
|
#chat .message .from .user::before {
|
||||||
content: "<";
|
content: "<";
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .message .user::after {
|
#chat .message .from .user::after {
|
||||||
content: ">";
|
content: ">";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue