mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-22 10:55:15 -04:00
Fix styles for system notifications in HTML
This commit is contained in:
parent
a80ee2943f
commit
4f41c4fff3
2 changed files with 5 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue