minor style adjustments

This commit is contained in:
ygg2
2026-02-12 02:20:03 -05:00
parent 69a77c38b2
commit 2c89548d36
2 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -859,7 +859,7 @@ class Message extends SnowFlake {
text.classList.add("commentrow", "flexttb");
if (combine) {
const username = document.createElement("span");
username.classList.add("username");
username.classList.add("username", "ellipsis");
this.author.bind(username, this.guild);
const membProm = Member.resolveMember(this.author, this.guild);
membProm.then((member) => {
+7 -2
View File
@@ -1109,7 +1109,7 @@ textarea {
}
.forumHead {
width: calc(100% - 12px);
background: #00000073;
background: var(--dock-bg);
padding: 6px;
margin: 6px;
box-sizing: border-box;
@@ -1196,7 +1196,7 @@ textarea {
color: var(--red);
}
.forumPostBody {
background: #00000075;
background: var(--secondary-bg);
margin: 4px 12px;
padding: 6px;
border-radius: 4px;
@@ -2274,6 +2274,10 @@ span.instanceStatus {
height: 0;
overflow: hidden;
}
#replybox:not(:empty) ~ #typediv .outerTypeBox {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
#realbox {
padding: 0 16px 28px 16px;
position: relative;
@@ -2633,6 +2637,7 @@ span.instanceStatus {
max-width: 100%;
}
.timestamp {
flex: none;
margin-left: 6px;
font-size: 0.75em;
color: var(--primary-text-soft);