From 4ec46f288b5736f104d58c83cbd74868a1024b1d Mon Sep 17 00:00:00 2001 From: WardenPotato Date: Thu, 29 Jun 2023 15:33:24 +0200 Subject: [PATCH] Many theme fixes --- src/theme/app/_background.scss | 7 ++++++- src/theme/chat/_messages.scss | 6 +++--- src/theme/popouts/_index.scss | 2 ++ src/theme/popouts/_linkedaccounts.scss | 7 +++++++ src/theme/popouts/_soundboard.scss | 12 ++++++++++++ 5 files changed, 30 insertions(+), 4 deletions(-) create mode 100644 src/theme/popouts/_linkedaccounts.scss create mode 100644 src/theme/popouts/_soundboard.scss diff --git a/src/theme/app/_background.scss b/src/theme/app/_background.scss index 4fd7477..a4150ca 100644 --- a/src/theme/app/_background.scss +++ b/src/theme/app/_background.scss @@ -41,7 +41,12 @@ .userProfileModalOuter-1FYL8T, .container-2O1UgZ, .container-18GwIk, - .popout-TdhJ6Z { + .popout-TdhJ6Z, + .reactionTooltip-3IOBwg, + .picker-20lcBA, + .container-3a5mk-, + .popout-VbwYm1, + .popout-15UxD6 { overflow: hidden !important; position: relative; border-radius: 3px; diff --git a/src/theme/chat/_messages.scss b/src/theme/chat/_messages.scss index c81f87c..b5a30ec 100644 --- a/src/theme/chat/_messages.scss +++ b/src/theme/chat/_messages.scss @@ -10,11 +10,11 @@ // Attachments,pings,codeblocks ect... .message-2CShn3 { background: transparent !important; - .reaction-1hd86g { + .reaction-3vwAF2 { background: var(--foreground); - &.reactionMe-wv5HKu { + &.reactionMe-1PwQAc { background: var(--gradient); - .reactionCount-2mvXRV { + .reactionCount-26U4As { color: var(--text-normal); } } diff --git a/src/theme/popouts/_index.scss b/src/theme/popouts/_index.scss index b1c0fab..99b5f46 100644 --- a/src/theme/popouts/_index.scss +++ b/src/theme/popouts/_index.scss @@ -10,3 +10,5 @@ @forward './quickaddrole'; @forward './threads'; @forward './forumtags'; +@forward './soundboard'; +@forward './linkedaccounts'; diff --git a/src/theme/popouts/_linkedaccounts.scss b/src/theme/popouts/_linkedaccounts.scss new file mode 100644 index 0000000..591fbd9 --- /dev/null +++ b/src/theme/popouts/_linkedaccounts.scss @@ -0,0 +1,7 @@ +#app-mount { + .popout-VbwYm1 { + border: none; + background: var(--foreground); + animation: fadeIn 0.3s ease forwards; + } +} diff --git a/src/theme/popouts/_soundboard.scss b/src/theme/popouts/_soundboard.scss new file mode 100644 index 0000000..aaf7bf4 --- /dev/null +++ b/src/theme/popouts/_soundboard.scss @@ -0,0 +1,12 @@ +#app-mount { + .picker-20lcBA { + border: none; + background: var(--foreground); + animation: fadeIn 0.3s ease forwards; + + // Searchbar + .inner-1NoIT5 { + background: var(--background-secondary); + } + } +}