Skip to content

Commit

Permalink
threads fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
Leozard committed Jun 20, 2024
1 parent 1251d8f commit 574ecdd
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 9 deletions.
14 changes: 13 additions & 1 deletion lib/selectors/selectorPlaceholders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,12 @@
.header_b56bbc {
@extend %gifPickerHeader !optional;
}
.searchBar_b56bbc {
@extend %gifPickerSearch !optional;
}
.input_c18ec9 {
@extend %gifPickerSearchInput !optional;
}
.clear__9f79a {
@extend %gifPickerSearchIconClear !optional;
}
Expand Down Expand Up @@ -1253,7 +1259,7 @@
@extend %newGuildTooltipPointer !optional;
}
.container_cfbfb9 {
@extend %newGuilTooltipCard !optional;
@extend %newGuildTooltipCard !optional;
}
.wrapper_fea3ef {
@extend %guildsWrapper !optional;
Expand Down Expand Up @@ -4272,9 +4278,15 @@ pre {
.calloutContainer_fd8ff1 {
@extend %inboxChattingAbout !optional;
}
.container_fb4810 {
@extend %createThreadContainer !optional;
}
.container_e664f3 {
@extend %threadsPopoutContainer !optional;
}
.searchBox_e664f3 {
@extend %threadsSearch !optional;
}
.header_e664f3 {
@extend %threadsPopoutHeader !optional;
}
Expand Down
1 change: 0 additions & 1 deletion main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ $version: '6.9.0';
@import 'src/chat/stageCall';
@import 'src/chat/textArea';
@import 'src/chat/textAreaAutoComplete';
@import 'src/chat/treads';
@import 'src/chat/modView';

// GENERAL ELEMENTS
Expand Down
11 changes: 11 additions & 0 deletions src/chat/chat.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,14 @@
div[aria-checked="true"] %replyMentionButton {
color: $main-color !important;
}

// THREAD
%createThreadContainer {
background-color: transparent;
}
%threadIconWrapper {
background-color: $main-color;
svg path {
fill: #fff;
}
}
7 changes: 0 additions & 7 deletions src/chat/treads.scss

This file was deleted.

13 changes: 13 additions & 0 deletions src/popouts/gifPicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
%gifPickerHeader {
background-color: transparent;
}
%gifPickerSearch {
background-color: rgba(255,255,255,.07);
border: none;
box-shadow: 0 0 0 2px rgba(255,255,255,.09);
margin-top: 2px;
&:focus-within {
box-shadow: 0 0 2px 2px $main-color;
transition: all 0.15s ease-in-out;
}
}
%gifPickerSearchInput::placeholder {
color: hsla(0, 0%, 100%, 0.3);
}

%gifPickerContent {
// CATEGORIES
Expand Down
6 changes: 6 additions & 0 deletions src/popouts/threadPopout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
%threadsSearch {
background: hsla(0, 0%, 100%, 0.07);
&::placeholder {
color: hsla(0, 0%, 100%, 0.3);
}
}
%threadsPopoutHeader {
background-color: transparent;
}
Expand Down

0 comments on commit 574ecdd

Please sign in to comment.