Skip to content

Commit

Permalink
Fix thread margins for sidebar utils, change some backgrounds
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTipson committed Feb 4, 2024
1 parent 9ef09fa commit eaee2f0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ background-floating overrides
.container__20de0 /* unreads */,
.container__23c08 /* inbox (for you) */,
.container__8261a /* threads (next to pins) */,
.autocomplete_df266d /* autocomplete commands */{
.autocomplete_df266d.autocomplete_df266d /* autocomplete commands */{
background-color: var(--background-floating);
}
/*
Expand Down Expand Up @@ -164,6 +164,14 @@ Text input background
background-color: var(--input-background);
}

/* friends tab - active now */
.outer_a41cf3.outer_a41cf3.interactive__01cfa:hover /* friends tab - active now */ {
background-color: var(--background-modifier-hover);
}
.outer_a41cf3.outer_a41cf3.active__76f42 /* friends tab - active now */ {
background-color: var(--background-modifier-active);
}

/*
Progress bars / draggables
*/
Expand All @@ -187,6 +195,8 @@ Background removals
.container__7590f.container__7590f /* browse channels body (inner) */{
background-color: unset;
}
.panel_bd8c76.panel_bd8c76 /* current/suggested streamed window/app */,
.container__0a6a9 /* friends tab - active now */,
.container_d667ff /* user island duplicate styling */ {
background: unset;
}
Expand Down
8 changes: 4 additions & 4 deletions css/channel-sidebar-utils.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ SOFTWARE.
--csu-bg-selected: var(--background-modifier-selected);
}

.containerDefault__3187b .wrapper__7bcde /* channel padding*/{
.containerDefault__3187b .wrapper__7bcde:not(.typeThread__2f91c) /* channel padding*/{
padding: 0;
margin-left: 0;
}
Expand All @@ -58,12 +58,12 @@ SOFTWARE.
left: 0;
}
/* Bumper */
.containerDefault__3187b:hover .wrapper__7bcde::before /* text channel */,
.containerDefault__3187b.selected__3b4cb .wrapper__7bcde:before /* selected text channel */{
.containerDefault__3187b:hover::before /* text channel */,
.containerDefault__3187b.selected__3b4cb:before /* selected text channel */{
padding-right: var(--csu-bumper-width);
transition: none;
}
.containerDefault__3187b .wrapper__7bcde:before /* text channel */{
.containerDefault__3187b:before /* text channel */{
content: "";
display:inline-block;
background: var(--csu-bumper-color);
Expand Down

0 comments on commit eaee2f0

Please sign in to comment.