wait that last commit was from like hours ago, here
This commit is contained in:
parent
abcb9725df
commit
a6341b2aff
1 changed files with 12 additions and 6 deletions
18
denden.css
18
denden.css
|
|
@ -442,9 +442,12 @@
|
||||||
/* Reset default backgrounds */
|
/* Reset default backgrounds */
|
||||||
[class*="chatGradient"],
|
[class*="chatGradient"],
|
||||||
[class*="channelTextArea"] > div {
|
[class*="channelTextArea"] > div {
|
||||||
background: none;
|
background: unset;
|
||||||
}
|
}
|
||||||
[class*="sidebar"]:has(nav[aria-label])::after /* User area pseudo-element? */ {
|
[aria-label="Message Actions"] div {
|
||||||
|
margin: 0 2px;
|
||||||
|
}
|
||||||
|
[class*="sidebar"]:has(nav[aria-label])::after /* This is a seemingly random User area pseudo-element with the default theme, so I'm throwing it into orbit. */ {
|
||||||
content: unset;
|
content: unset;
|
||||||
}
|
}
|
||||||
/* Reset borders */
|
/* Reset borders */
|
||||||
|
|
@ -455,17 +458,20 @@
|
||||||
border-radius: unset;
|
border-radius: unset;
|
||||||
}
|
}
|
||||||
/* Buttons */
|
/* Buttons */
|
||||||
:is(
|
:is(nav[aria-label] div:has(> a), /* Sidebar/direct messages */
|
||||||
nav[aria-label] div:has(> a), /* Sidebar/direct messages */
|
[aria-label="Message Actions"] [role], /* Message actions ("React", "Reply", "Forward" and "More") */
|
||||||
main [role="button"], /* Message actions ("React", "Reply", "Forward" and "More"), Message box buttons*/
|
[class*="channelTextArea"] [class*="buttons"] [role], [class*="channelTextArea"] [class*="attach"]>[aria-label], /* Message box buttons (GIF, Sticker, Emoji picker)*/
|
||||||
section[aria-label="User area"] button, /* Mute/Unmute, Deafen/Undeafen, User settings buttons */
|
section[aria-label="User area"] button, /* Mute/Unmute, Deafen/Undeafen, User settings buttons */
|
||||||
):not([class*="username"], main article *, main a, main span:has(img)) /* Doesn't apply to: Usernames, Embeds, Links, Stickers, Emoji */ {
|
[class*="toolbar"] [role="button"], /* Chat toolbar buttons */
|
||||||
|
):not([class*="username"], [class*="search"] *) /* Doesn't apply to: Usernames, Toolbar search icon */ {
|
||||||
background-image: linear-gradient(var(--neutral-75), var(--neutral-80));
|
background-image: linear-gradient(var(--neutral-75), var(--neutral-80));
|
||||||
box-shadow: inset 0 -5px 13px -5px var(--neutral-65);
|
box-shadow: inset 0 -5px 13px -5px var(--neutral-65);
|
||||||
&:hover {
|
&:hover {
|
||||||
background-image: linear-gradient(var(--neutral-50), var(--neutral-70));
|
background-image: linear-gradient(var(--neutral-50), var(--neutral-70));
|
||||||
box-shadow: inset 0 -5px 13px -5px var(--gel);
|
box-shadow: inset 0 -5px 13px -5px var(--gel);
|
||||||
}
|
}
|
||||||
|
/* Rounded buttons */
|
||||||
|
border-radius: var(--radius-round);
|
||||||
}
|
}
|
||||||
/* Message box and User profile area */
|
/* Message box and User profile area */
|
||||||
main > form [class*="channelTextArea"],
|
main > form [class*="channelTextArea"],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue