remotes/1693045480750635534/spooky-22
Aevann1 2022-03-22 16:33:05 +02:00
parent 85cf7cc2a6
commit 4b3fcb18f2
1 changed files with 7 additions and 8 deletions

View File

@ -49,9 +49,7 @@
<div style="overflow:hidden">
{% set text=m['text'] %}
<span class="chat-message text-black text-break">{{m['text_html'] | safe}}
<button onclick="quote('{{text}}')">
<i class="fas fa-reply" aria-hidden="true"></i>
</button>
<i onclick="quote('{{text}}')" class="fas fa-reply" aria-hidden="true"></i>
</span>
</div>
</div>
@ -106,11 +104,11 @@
}
.profile-pic-30 {
width: 30px;
height: 30px;
border-radius: 50%;
text-align: center;
object-fit: cover;
width: 30px;
height: 30px;
border-radius: 50%;
text-align: center;
object-fit: cover;
}
</style>
@ -190,6 +188,7 @@
}
function quote(text) {
textbox.style.height = '76px'
textbox.value = text + '\n'
textbox.focus()
}