#compact members bar and direct messages
1 messages · Page 1 of 1 (latest)
the avatar decorations seem a little bit off to me hmm
[class^=avatarDecoration-] {
left: -10px;
}
this fixes, nice
looks like discord uses some weird css for decorations
so this is more compatible i think
.container-2o3qEW .avatarDecoration-2Wb1Au,
.privateChannels-oVe7HL .avatarDecoration-2Wb1Au {
left: calc((.5 - var(--decoration-to-avatar-ratio))*100%);
}
also the thread has a different members tab, didnt know about that
the member tab in threads and group DMs are still like normal
yeah im fixing them rn
:is(.membersWrap-3NUR2t, .privateChannels-oVe7HL) .wrapper-3Un6-K > svg,
:is(.membersWrap-3NUR2t, .privateChannels-oVe7HL) .layout-1LjVue,
:is(.membersWrap-3NUR2t, .privateChannels-oVe7HL) .layout-1qmrhw { height: 24px }
.membersWrap-3NUR2t .avatar-6qzftW,
.privateChannels-oVe7HL .avatar-1HDIsL { width: 16px; height: 24px }
:is(.membersWrap-3NUR2t, .privateChannels-oVe7HL) .wrapper-3Un6-K { height: 20px !important }
.privateChannels-oVe7HL .wrapper-3Un6-K svg[width="40"] { width: 24px }
.privateChannels-oVe7HL .wrapper-3Un6-K svg[width="32"] { width: 20px }
.subText-OGOWMj, .subText-3Sk0zy { display: none }
.container-2o3qEW, .membersWrap-3NUR2t { overflow: hidden }
.membersWrap-3NUR2t,
.scroller-WSmht3 {
max-height: 200%;
min-height: 160%;
}
:is(.membersWrap-3NUR2t, .privateChannels-oVe7HL) .avatarDecoration-2Wb1Au {
left: calc((.5 - var(--decoration-to-avatar-ratio))*100%);
}
i tried my best but it still breaks when pasting in a bunch of text
nothing i can do about that i think
well the only way is to remove
.membersWrap-3NUR2t,
.scroller-WSmht3 {
max-height: 200%;
min-height: 160%;
}
but then not all members are loaded in
off topic but i love that role indicator bar on the top...what theme is it from
found another issue within the new snippet, that members who are not online will have their pfp slightly bigger and offset from the others
will try to fix it
i already fixed it
doesnt affect favourite tabs
where
found it and fixing it
looks like internally it's treated as a server so i can't really differentiate between them
also it already looks somewhat compact?
the wrapper* uses the same classes as channels
you can add
.container-1NXEtd[aria-label="Favorites (server)"] {
max-height: 200%;
min-height: 110%;
}
.container-1NXEtd[aria-label="Favorites (server)"] ~ .panels-3wFtMD {
position: absolute;
bottom: 0;
}
.container-1NXEtd[aria-label="Favorites (server)"] .mainContent-20q_Hp,
.iconItem-1EjiK0 { padding: 2px 0 }
.container-1NXEtd[aria-label="Favorites (server)"] .wrapper-NhbLHG,
.container-1NXEtd[aria-label="Favorites (server)"] .content-1gYQeQ { padding: 0 }
(this only works in english obv)