Skip to content

Commit

Permalink
Update source
Browse files Browse the repository at this point in the history
  • Loading branch information
CapnKitten committed Jun 24, 2024
1 parent 96365f9 commit 1f12e3e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Themes/Material-Discord/src/chat/_textarea.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
}

%replyMentionButton {
--text-link: hsl(var(--accent-hsl));
--text-link: hsl(var(--warning-hsl));
}

%replySuggestion {
Expand Down
19 changes: 19 additions & 0 deletions Themes/Material-Discord/src/messages/_messages.scss
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@
%messageButtonContainer {
margin-top: 8px;
margin-left: 0;
z-index: 3;

%button {
--button-height: 24px;
Expand Down Expand Up @@ -271,6 +272,24 @@
}
}

%replyingToIndicator {
z-index: 2;

%messageContent {
&:before {
position: absolute;
content: " ";
width: calc(100% - 8px);
height: calc(100% - 8px);
top: 4px;
left: 4px;
background-color: hsl(var(--warning-hsl),0.2);
border-radius: calc(var(--message-radius) / 1.3);
pointer-events: none;
}
}
}

%messageListItem,
%messageBackgroundFlash {
&:hover {
Expand Down

0 comments on commit 1f12e3e

Please sign in to comment.