.custom-chat-msg {
    display: flex;
    margin: 5px 0;
    --chat-msg-bg: #1D2128;
    --chat-msg-border: #eef5ff;
}

.custom-chat-msg-avatar {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    margin-inline: 0 20px;
    flex-shrink: 0;
}

.custom-chat-msg-content {
    position: relative;
    z-index: 0;
    min-width: 200px;
    max-width: 520px;
    width: fit-content;
    border: 2px solid var(--chat-msg-border);
    padding: 10px;
    text-align: center;
    font-weight: 800;
    color: #faf8f7;
    font-family: Arial, sans-serif;
    border-radius: 8px;
    background: var(--chat-msg-bg);
    margin: auto 0;
}

.custom-chat-msg-text {
    max-height: 100px;
    overflow-y: auto;
    word-wrap: break-word;
}

.custom-chat-msg-content::before,
.custom-chat-msg-content::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.custom-chat-msg-content::before {
    border-right: 10px solid var(--chat-msg-border);
    border-left: 10px solid transparent;
    border-top: 6px solid var(--chat-msg-border);
    border-bottom: 6px solid transparent;
    left: -20px;
}

.custom-chat-msg-content::after {
    border-right: 7px solid var(--chat-msg-bg);
    border-left: 7px solid transparent;
    border-top: 4px solid var(--chat-msg-bg);
    border-bottom: 4px solid transparent;
    left: -11px;
    z-index: 2;
}

.mes_text {
    text-wrap: pretty;
}

.mes_text > p {
    font-size: 1.1em;
}

#chat .mes .mesAvatarWrapper {
    display: none;
}

#chat .mes .name_text {
    display: none;
}
Edit Report
Pub: 13 Apr 2025 04:07 UTC
Views: 51