mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
Fix styles for system notifications in HTML
This commit is contained in:
parent
a80ee2943f
commit
4f41c4fff3
|
|
@ -73,7 +73,9 @@
|
|||
@{/* System notification content */}
|
||||
@if(message.Kind == MessageKind.ChannelPinnedMessage)
|
||||
{
|
||||
<span class="chatlog__system-notification"> pinned</span><span class="chatlog__system-message-reference-link chatlog__reference-link" onclick="scrollToMessage(event, '@message.Reference?.MessageId')"> a message</span><span class="chatlog__system-message"> to this channel.</span>
|
||||
<span class="chatlog__system-notification"> pinned</span>
|
||||
<span class="chatlog__system-notification-reference-link chatlog__reference-link" onclick="scrollToMessage(event, '@message.Reference?.MessageId')"> a message</span>
|
||||
<span class="chatlog__system-notification"> to this channel.</span>
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -255,12 +255,12 @@
|
|||
}
|
||||
|
||||
.chatlog__system-notification {
|
||||
color: @Themed("rgb(150, 152, 157)", "rgb(94, 103, 114)")
|
||||
color: @Themed("#96989d", "#5e6772")
|
||||
}
|
||||
|
||||
.chatlog__system-notification-reference-link {
|
||||
font-weight: 500;
|
||||
color: #ffffff
|
||||
color: @Themed("#ffffff", "#2f3136");
|
||||
}
|
||||
|
||||
.chatlog__system-notification-icon {
|
||||
|
|
|
|||
Loading…
Reference in a new issue