Skip to content

Commit

Permalink
fix a few things
Browse files Browse the repository at this point in the history
  • Loading branch information
refact0r committed Jul 16, 2024
1 parent 25627e9 commit f7faacf
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
15 changes: 12 additions & 3 deletions system24.css
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ svg[class^=slider_] > rect[fill="white"] /* settings checkbuttons slider */ {
.container_a6d69a /* forum */,
[class^=profilePanel_] /* dm profile panel */,
[class^=searchResultsWrap_] /* search results */,
.scroller_fb4810 /* new thread */ {
.scroller_fb4810 /* new thread */,
[class^=chat_] > [class*=container_] {
border: var(--border-width) solid var(--border-color);
transition: border-color var(--border-transition);
&:hover {
Expand Down Expand Up @@ -261,6 +262,15 @@ svg[class^=slider_] > rect[fill="white"] /* settings checkbuttons slider */ {
box-sizing: border-box;
}

/* fix chat bar when no chat bar */
[class^='form_'] > [class^='wrapper_'] {
margin: 0;
padding: 0;
height: var(--custom-channel-textarea-text-area-height);
border: var(--border-width) solid var(--border-color);
margin-top: var(--pad);
}

/* add text labels */
[class^='sidebar_'] > [class^='container_']::after,
.container_fc4f04::after,
Expand Down Expand Up @@ -478,8 +488,7 @@ aside[class^='profilePanel_'] {
display: none;
}
/* re-add status indicators */
[class^='wrapper_'][class*='avatar']:has(rect)::after,
[class^='wrapper_'][class*='Avatar']::after,
[class^='wrapper_'][class*='vatar']:has(rect)::after,
[class^='avatar'] > [class^='wrapper_']:has(rect)::after {
content: '';
display: block;
Expand Down
12 changes: 12 additions & 0 deletions test
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

[data-list-item-id="guildsnav___home"] > [class^=childWrapper_] > svg {
display: none;
}
[data-list-item-id="guildsnav___home"] > [class^=childWrapper_]::after {
content: ' # # # # # #\A # # # # # # # # # # # # # # #\A # # # # # # # # # # # # # # # # #\A # # # # # # # # # # # # # # # # #\A # # # # # # # # # # # # # # # # # # #\A # # # # # # # # # # # # # # # # # # # \A # # # # # # # # # # # # # # # \A # # # # # # # # # # # \A# # # # # # # # # # # # #\A# # # # # # # # # # # # # # # # #\A# # # # # # # # # # # # # # # # # # # # #\A# # # # # # # # # # # # # # # # # # # # #\A# # # # # # # # # # # # # # # # #\A # # # # # # # # ';
display: block;
white-space: pre;
font-size: 1.6px;
font-weight: bold;
letter-spacing: -0.2ch;
}

0 comments on commit f7faacf

Please sign in to comment.