2023-04-16 21:44:50 +02:00
|
|
|
.message {
|
2025-06-14 16:14:22 +02:00
|
|
|
display: block;
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
padding-bottom: 21px;
|
2023-04-16 21:44:50 +02:00
|
|
|
font-size: 15px;
|
2023-09-13 22:29:00 +02:00
|
|
|
font-family: 'Noto Sans', Helvetica, Arial, sans-serif;
|
2023-04-16 21:44:50 +02:00
|
|
|
line-height: 1.428571429;
|
2025-06-14 16:14:22 +02:00
|
|
|
grid-template-columns: none;
|
2023-04-16 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
2025-06-14 16:14:22 +02:00
|
|
|
.circle-you, .circle-bot {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
max-width: 65%;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
clear: both;
|
|
|
|
|
box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.username {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
opacity: 0.65;
|
2025-06-18 00:26:59 +02:00
|
|
|
padding-left: 0;
|
2025-06-14 16:14:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* User messages - right aligned, WhatsApp green */
|
|
|
|
|
.circle-you + .text {
|
2025-06-18 00:26:59 +02:00
|
|
|
background-color: #d9fdd3;
|
2023-05-25 18:12:34 +02:00
|
|
|
float: right;
|
2025-06-14 16:14:22 +02:00
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle-you + .text .username {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Bot messages - left aligned, white */
|
|
|
|
|
.circle-bot + .text {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
float: left;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
border: 1px solid #e5e5e5;
|
2023-04-16 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
2025-06-14 16:14:22 +02:00
|
|
|
.circle-bot + .text .message-actions {
|
|
|
|
|
bottom: -25px !important;
|
2023-04-16 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
2025-06-14 16:14:22 +02:00
|
|
|
/* Dark theme colors */
|
|
|
|
|
.dark .circle-you + .text {
|
2025-06-18 00:26:59 +02:00
|
|
|
background-color: #144d37;
|
2025-06-14 16:14:22 +02:00
|
|
|
color: #e4e6ea;
|
|
|
|
|
box-shadow: 0 1px 2px rgb(0 0 0 / 30%);
|
2023-04-16 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
2025-06-14 16:14:22 +02:00
|
|
|
.dark .circle-bot + .text {
|
|
|
|
|
background-color: #202c33;
|
|
|
|
|
color: #e4e6ea;
|
|
|
|
|
border: 1px solid #3c4043;
|
|
|
|
|
box-shadow: 0 1px 2px rgb(0 0 0 / 30%);
|
2023-04-16 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
2025-06-14 16:14:22 +02:00
|
|
|
.dark .username {
|
|
|
|
|
opacity: 0.7;
|
2023-04-16 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-body img {
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
max-height: 300px;
|
2025-06-14 16:14:22 +02:00
|
|
|
border-radius: 12px;
|
2023-04-16 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-body p {
|
|
|
|
|
font-size: 15px !important;
|
2025-06-14 16:14:22 +02:00
|
|
|
line-height: 1.4 !important;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-16 21:44:50 +02:00
|
|
|
.dark .message-body p em {
|
2025-06-14 16:14:22 +02:00
|
|
|
color: rgb(170 170 170) !important;
|
2023-04-16 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-body p em {
|
2025-06-14 16:14:22 +02:00
|
|
|
color: rgb(100 100 100) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Message actions positioning */
|
|
|
|
|
.message-actions {
|
|
|
|
|
margin-top: 8px;
|
2024-07-21 19:45:27 +02:00
|
|
|
}
|
2025-06-15 17:25:07 +02:00
|
|
|
|
2025-07-08 06:11:13 +02:00
|
|
|
/* Standard spacing from instruct style */
|
2025-07-08 06:02:19 +02:00
|
|
|
.chat .message-body :is(p, ul, ol) {
|
|
|
|
|
margin: 1.25em 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat .message-body :is(p, ul, ol):first-child {
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat .message-body :is(p, ul, ol):last-child {
|
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
|
}
|