Skip to content

Commit

Permalink
Update source
Browse files Browse the repository at this point in the history
  • Loading branch information
CapnKitten committed Oct 26, 2024
1 parent 1864d55 commit 6377a4f
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions Themes/Material-Discord/src/chat/_textarea.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,21 @@
}

%channelTextAreaStackedBars {
background-color: var(--main-textarea-color);
position: relative;
background: var(--main-textarea-color);
border-radius: var(--main-textarea-radius) var(--main-textarea-radius) 0 0;

&:after {
position: absolute;
content: " ";
width: calc(100% - 24px);
height: 1px;
left: 0;
bottom: 0;
margin: 0 12px;
background-color: var(--main-textarea-border);
}

%replyBar {
background: transparent;
}
Expand All @@ -124,25 +136,17 @@
background-color: transparent;
border: none;

&:before,
&:after {
&:before {
position: absolute;
content: " ";
width: calc(100% - 24px);
height: 1px;
top: 0;
left: 0;
margin: 0 12px;
background-color: var(--main-textarea-border);
}

&:before {
top: 0;
}

&:after {
bottom: 0;
}

%replySuggestionCreateThreadButton {
color: hsl(var(--accent-hsl)) !important;
}
Expand Down

0 comments on commit 6377a4f

Please sign in to comment.