bugfixes
This commit is contained in:
parent
b843b50c44
commit
f03248db85
3 changed files with 43 additions and 7 deletions
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
@no-nitro: true;
|
@no-nitro: true;
|
||||||
@no-banner: false;
|
@no-banner: false;
|
||||||
@verifies: true;
|
|
||||||
|
|
||||||
@round: 8px;
|
@round: 8px;
|
||||||
@rounder: 16px;
|
@rounder: 16px;
|
||||||
|
|
|
@ -32,7 +32,10 @@ button[class*="followButton-"], // at top in channels
|
||||||
[class^="nowPlaying"], // in friends tab
|
[class^="nowPlaying"], // in friends tab
|
||||||
div[class^="threadSuggestionBar-"], // create thread because many replies
|
div[class^="threadSuggestionBar-"], // create thread because many replies
|
||||||
div[class^="welcomeCTA-"], // wave to say hi on server
|
div[class^="welcomeCTA-"], // wave to say hi on server
|
||||||
div[role="separator"]:not([id$="new-messages-bar"]), // aren't needed
|
.divider-IqmEqJ .content-3spvdd, // date in divider
|
||||||
|
.spine-29OFwR, // threads svg
|
||||||
|
.mainContent-20q_Hp .subtitle-3PyFgf, // forum subtitle
|
||||||
|
.scrollerInner-2PPAp2 div.box-2iMsQm, // start the conversation in forum
|
||||||
|
|
||||||
div[class^="channelNotice-"], // sh** at bottom of server name like invite people, server boost etc.
|
div[class^="channelNotice-"], // sh** at bottom of server name like invite people, server boost etc.
|
||||||
h2[class^="privateChannelsHeaderContainer"], // direct messages label
|
h2[class^="privateChannelsHeaderContainer"], // direct messages label
|
||||||
|
@ -80,3 +83,8 @@ div[class^="overviewSidebar-"], // at community creation, not needed
|
||||||
form::before, // message input shadow
|
form::before, // message input shadow
|
||||||
div[class^="children-"]::after, // shadow at title
|
div[class^="children-"]::after, // shadow at title
|
||||||
{ &:extend(.hide); }
|
{ &:extend(.hide); }
|
||||||
|
|
||||||
|
.container-3wLKDe {
|
||||||
|
background: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -84,11 +84,14 @@ article[class^="embed"] {
|
||||||
div[class^="layer-"] > div[class^="container-"],
|
div[class^="layer-"] > div[class^="container-"],
|
||||||
div[class^="base-"] div[class^="content-"] > div:nth-child(2),
|
div[class^="base-"] div[class^="content-"] > div:nth-child(2),
|
||||||
div[class^="guildList-"] div[class^="container-"],
|
div[class^="guildList-"] div[class^="container-"],
|
||||||
div[class^="container"] > div,
|
|
||||||
div[class^="chat-"] > div[class^="content-"],
|
div[class^="chat-"] > div[class^="content-"],
|
||||||
div.focusLock-2tveLW .wrapper-2bCXfR,
|
div.focusLock-2tveLW .wrapper-2bCXfR,
|
||||||
{ &:extend(.rounder); }
|
{ &:extend(.rounder); }
|
||||||
|
|
||||||
|
div.avatarWrapper-1B9FTW {
|
||||||
|
.radius(@rounder) !important;
|
||||||
|
}
|
||||||
|
|
||||||
div[class^="auditLog"] {
|
div[class^="auditLog"] {
|
||||||
div[class^="headerExpanded-"]
|
div[class^="headerExpanded-"]
|
||||||
{ .bottom-border(); }
|
{ .bottom-border(); }
|
||||||
|
@ -240,9 +243,35 @@ div[id^="message-accessories-"] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verified!
|
div.saveNoticeContainer-3t-pI1 {
|
||||||
.vrf() when (@verifies = true) {
|
width: calc(100% - 60pt);
|
||||||
.verify('785219544364351499');
|
}
|
||||||
|
|
||||||
|
#channels ul {
|
||||||
|
& > li.containerDefault-YUSmu3,
|
||||||
|
& > li.container-1Bj0eq {
|
||||||
|
margin-left: @round;
|
||||||
|
}
|
||||||
|
div.content-1gYQeQ {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.unread-36eUEm {
|
||||||
|
left: -@round;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoilerText-27bIiA {
|
||||||
|
&.hidden-3B-Rum {
|
||||||
|
&:extend(.acrylic all);
|
||||||
|
position: relative;
|
||||||
|
background: unset !important;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.inlineContent-2YnoDy {
|
||||||
|
opacity: 1 !important;
|
||||||
|
margin: 0 (@round / 2);
|
||||||
|
z-index: -2;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.vrf();
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue