This commit is contained in:
2026-04-09 11:23:26 +02:00
parent c5bc817efe
commit 9baab3d3bc
18 changed files with 489 additions and 37 deletions

View File

@@ -0,0 +1,69 @@
:host {
padding: 10px;
display: flex;
flex-direction: column;
gap: 2px;
overflow-y: scroll;
.message {
display: flex;
flex-direction: column;
&.author {
align-items: end;
.bubble {
background: var(--tui-background-accent-1-hover);
}
}
&.chained_start {
margin-top: 10px;
.above, .below {
display: block;
}
.above {
padding: 2px;
}
.bubble {
border-radius: 25px 10px 10px 10px !important;
}
}
&.chained_middle {
.bubble {
border-radius: 10px !important;
}
}
&.chained_end {
.bubble {
border-radius: 10px 10px 10px 25px !important;
}
}
.above, .below {
color: gray;
opacity: 70%;
display: none;
}
.bubble {
background: var(--tui-background-neutral-2);
max-width: 350px;
min-width: 250px;
min-height: 40px;
display: flex;
align-items: center;
padding: 5px;
.message-text {
white-space: none;
overflow-wrap: anywhere;
}
}
}
}