Skip to content

Commit

Permalink
Merge pull request #140 from Lioncat6/main
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
Gibbu authored Aug 27, 2024
2 parents 4fed9e1 + 6a54fb4 commit 771dfff
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 7 deletions.
9 changes: 9 additions & 0 deletions src/theme/app/_toolbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,15 @@
pointer-events: none;
top: 0;
}

// Fix notice banner
.notice_b5000b {
border-radius: 0;
.closeButton_be03aa{
left: 15px;
}
}

}

//fixed the shit -lion
Expand Down
3 changes: 3 additions & 0 deletions src/theme/chat/_forums.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#app-mount {
.container_a6d69a{
background: var(--bg-secondary);
}
.container-3wLKDe {
background: var(--bg-secondary);
border-right: 1px solid var(--border);
Expand Down
15 changes: 14 additions & 1 deletion src/theme/chat/_textbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@
background: var(--input-background);
width: 58px !important;
height: 58px !important;
border: 2px solid transparent;
transition: var(--transition);
transition-property: border-color, box-shadow;
&.buttonActive_df39bd {
border-color: rgb(var(--accent));
box-shadow: 0 0 calc(var(--input-glow-intensity) * 12px) calc(var(--input-glow-intensity) * 2px)
rgb(var(--accent), 0.25);
}
}
.attachButtonInner_f298d4 {
margin-bottom: 5px;
}
.button_dd4f85 {
height: 100%;
Expand All @@ -35,7 +46,9 @@
}
&.active_f9af59 {
filter: drop-shadow(0 0 calc(var(--chat-glow-intensity) * 5px) rgb(var(--accent)));

svg {
background: rgb(var(--accent)) !important;
}
}
}
}
Expand Down
9 changes: 8 additions & 1 deletion src/theme/inputs/_textbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
.input_f8bc55:not(.multiInput-1VARjC):not(.multiInputField-1zyopx),
.input_f8bc55.multiInput-1VARjC {
padding: 10px 16px;
height: auto;
height: 42px;
border: 2px solid transparent;
background: var(--input-background);
border-radius: 6px;
transition: var(--transition);
transition-property: border-color, box-shadow;
color: var(--text-normal);
margin-top: -1px;

&:hover {
border-color: var(--input-border);
}
Expand Down Expand Up @@ -39,4 +41,9 @@
padding-left: 48px !important;
}
}

//Status editing field fix
.inputContainer_d5bea8 .input_d5bea8 {
text-indent: 28px;
}
}
10 changes: 10 additions & 0 deletions src/theme/popouts/_appsmenu.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#app-mount {
//Apps and commands popout
.contentWrapper_f7506e{
backdrop-filter: blur(var(--blur));
background: var(--bg-primary);
}
.container_e5da8b {
background-color: var(--fg-secondary);
}
}
7 changes: 7 additions & 0 deletions src/theme/popouts/_emojipicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -234,4 +234,11 @@
#gif-picker-tab-panel .content_b56bbc {
border-top: 1px solid var(--border);
}

//Fix tenor gif picker not being theme color
.container_b56bbc, .header_b56bbc {
background: var(--bg-primary);
background-color: transparent;
}

}
1 change: 1 addition & 0 deletions src/theme/popouts/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
@forward './emojiorigin';
@forward './statuspicker';
@forward './customstatus';
@forward './appsmenu'
2 changes: 1 addition & 1 deletion src/theme/popouts/_menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
}

.menu_d90b3d:not(#account.menu_d90b3d) {
border: 1px solid var(--border);
border: none !important;
box-shadow: none;
border-radius: 6px;

Expand Down
3 changes: 2 additions & 1 deletion src/theme/profile/_popout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@
);
opacity: 0.5;
pointer-events: none;
//z-index: -1;
z-index: 0;
position: absolute;
}
.input_f8bc55:focus-within {
border-color: var(--profile-gradient-primary-color, rgb(var(--accent))) !important;
Expand Down
10 changes: 8 additions & 2 deletions src/theme/settings/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,11 @@
padding-right: 10px;
}
}

}
.searchBar_e7c031 {
background: var(--fg-secondary);
margin-top: 8px;
margin-left: 8px;
width: 95%;
margin-bottom: 0px;
}
}
4 changes: 3 additions & 1 deletion src/theme/sidebar/_dms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@
border-bottom: 1px solid var(--border);
padding: 0 12px;
margin-top: -1px;
.searchBarComponent_f0963d {
background-color: var(--input-background);
}
}

.privateChannelsHeaderContainer_c47fa9 {
padding: 18px;
height: auto;
Expand Down

0 comments on commit 771dfff

Please sign in to comment.