Compare commits

...

8 commits

Author SHA1 Message Date
97ad3155c3
Merge remote-tracking branch 'origin/multiline-message-box'
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
2025-07-10 16:25:36 +02:00
7ffe543f44
fix: invalid css 2025-07-10 16:24:10 +02:00
e71db5f571
chore: remove unused class attribute in message text box element
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful
ci/woodpecker/pull_request_closed/build-and-publish Pipeline was successful
2025-07-10 11:56:54 +02:00
2665f29341
feat: align message box buttons to bottom 2025-07-10 11:55:45 +02:00
e58809b424
feat: implement multiline message box
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful
2025-07-09 16:34:39 +02:00
f1bec945fe
feat: multiline message box
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
this implementation SUCKS and i probably have to write an entirely custom solution where every line is a div or something
2025-07-09 03:36:30 +02:00
51c2578e60
fix: remove unused code, set chatbox input to a transparent colour
All checks were successful
ci/woodpecker/pr/build-and-publish Pipeline was successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pull_request_closed/build-and-publish Pipeline was successful
2025-07-08 15:45:18 +02:00
fa93e00759
feat: improve message box :3
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful
2025-07-07 22:22:20 +02:00
2 changed files with 3 additions and 4 deletions

View file

@ -16,7 +16,7 @@
</div>
<div id="message-textarea">
<div id="message-textbox-input" class=""
<div id="message-textbox-input"
role="textbox" ref="messageTextboxInput"
autocorrect="off" spellcheck="true" contenteditable="true"
@keydown="handleTextboxKeyDown" @input="handleTextboxInput">
@ -348,7 +348,7 @@ router.beforeEach((to, from, next) => {
#message-box-left-elements, #message-box-right-elements {
display: flex;
align-items: center;
align-items: end;
}
#messages {

View file

@ -166,8 +166,7 @@ const guilds: GuildResponse[] | undefined = await fetchWithApi("/me/guilds");
#settings-menu {
position: absolute;
bottom: .25em
bottom: .25em
bottom: .25em;
}
</style>