refactor: talk => chat

This commit is contained in:
Andy Burke 2025-09-05 11:03:53 -07:00
parent b6b4fefa34
commit 525568d368
8 changed files with 1675 additions and 83 deletions

View file

@ -510,6 +510,44 @@ body[data-perms*="rooms.create"] [data-requires-permission="rooms.create"] {
top: 2px;
}
/* ICON - CHAT */
.icon.chat {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--icon-scale, 1));
width: 20px;
height: 16px;
border: 2px solid;
border-bottom: 0;
box-shadow:
-6px 8px 0 -6px,
6px 8px 0 -6px;
}
.icon.chat::after,
.icon.chat::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 8px;
}
.icon.chat::before {
border: 2px solid;
border-top-color: transparent;
border-bottom-left-radius: 20px;
right: 4px;
bottom: -6px;
height: 6px;
}
.icon.chat::after {
height: 2px;
background: currentColor;
box-shadow: 0 4px 0 0;
left: 4px;
top: 4px;
}
/* ICON - DOWNLOAD */
.icon.download {
box-sizing: border-box;