Compare commits

..

2 commits

Author SHA1 Message Date
hippoz
c84d95d0e3
finally make consistent focus ring for messageinput 2022-09-01 21:07:53 +03:00
hippoz
1c8d2838c4
lower alpha of background of mentions 2022-09-01 20:53:57 +03:00
3 changed files with 6 additions and 2 deletions

View file

@ -39,7 +39,7 @@
--purple-2: hsl(280, 78%, 45%);
--blue-2: hsl(200, 78%, 45%);
--blue-alpha-2: hsl(200, 78%, 45%, 20%);
--blue-alpha-2: hsl(200, 78%, 45%, 10%);
--green-2: hsl(140, 78%, 40%);
--yellow-2: hsl(50, 78%, 60%);
--red-2: hsl(2, 78%, 60%);

View file

@ -12,7 +12,7 @@
replyString += `> ${line}\n`;
});
replyString += `@${message.author_username} `;
replyString += `@${message.author_username}: `;
setMessageInputEvent.update(replyString);
};

View file

@ -145,6 +145,10 @@
resize: none;
}
.message-input:focus-visible {
outline: 2px solid var(--purple-2);
}
.message-input::placeholder {
color: var(--foreground-color-4);
}