Skip to content

Commit

Permalink
suggestion bar + blur again
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuah345 committed Mar 11, 2024
1 parent 9e5c435 commit cefda5f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
7 changes: 6 additions & 1 deletion Themes/Unity/Unity.css
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,11 @@ nav.wrapper_a7e7a8 .scroller__3d071 {
.form__13a2c .channelTextArea__2e60f {
margin-bottom: 8px;
}
.form__13a2c .channelTextArea__2e60f .threadSuggestionBar_b633f7 {
border-radius: var(--unity-border-radius);
margin-top: 5px;
box-shadow: none;
}
:root.full-motion .form__13a2c .channelTextArea__2e60f {
transition: margin-bottom ease-out 0.2s;
}
Expand Down Expand Up @@ -1224,7 +1229,7 @@ div[id^=popout]:not(:has(#account, [class*=userPopout])) > div {
div[id^=popout] .streamPreview__1846c {
background: transparent;
}
div[id^=popout]::after {
div[id^=popout]:not(:has(#account)):after {
height: 100%;
width: 100%;
content: " ";
Expand Down
7 changes: 6 additions & 1 deletion Themes/Unity/dist/Unity.css
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,11 @@ nav.wrapper_a7e7a8 .scroller__3d071 {
.form__13a2c .channelTextArea__2e60f {
margin-bottom: 8px;
}
.form__13a2c .channelTextArea__2e60f .threadSuggestionBar_b633f7 {
border-radius: var(--unity-border-radius);
margin-top: 5px;
box-shadow: none;
}
:root.full-motion .form__13a2c .channelTextArea__2e60f {
transition: margin-bottom ease-out 0.2s;
}
Expand Down Expand Up @@ -1224,7 +1229,7 @@ div[id^=popout]:not(:has(#account, [class*=userPopout])) > div {
div[id^=popout] .streamPreview__1846c {
background: transparent;
}
div[id^=popout]::after {
div[id^=popout]:not(:has(#account)):after {
height: 100%;
width: 100%;
content: " ";
Expand Down
6 changes: 6 additions & 0 deletions Themes/Unity/src/theme/chat/_textarea.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@

.channelTextArea__2e60f {
margin-bottom: 8px;

.threadSuggestionBar_b633f7 {
border-radius: var(--unity-border-radius);
margin-top: 5px;
box-shadow: none;
}


:root.full-motion & {
Expand Down
2 changes: 1 addition & 1 deletion Themes/Unity/src/theme/popouts/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
.streamPreview__1846c {
background: transparent;
}
&::after {
&:not(:has(#account)):after {
height: 100%;
width: 100%;
content: " ";
Expand Down

0 comments on commit cefda5f

Please sign in to comment.