shrink, slow down, and re-color scanning indicator

This commit is contained in:
AsbjornOlling 2022-08-21 22:57:32 +02:00
parent 5a3bc05a70
commit a5c970db11
1 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@
viewBox="0 0 300 600"
onload="start_chat('Ven')"
overflow="auto"
style="font-family: sans;"
style="font-family: sans; border-radius: 10px;"
>
<defs>
<symbol id="kaereste_foto" width="60" height="200">
@ -392,7 +392,7 @@ async function local_message_processing(will_be_flagged) {
let text_element = document.getElementById('message_status');
let indicator = text_element.childNodes[0];
indicator.data = 'scanning for illegal content';
await wait(200);
await wait(800);
if(will_be_flagged) {
let box = document.getElementById('message_status_box');
text_element.setAttribute('fill', 'red');
@ -400,12 +400,12 @@ async function local_message_processing(will_be_flagged) {
indicator.data = 'Reporting suspicious content';
await wait(1000);
text_element.setAttribute('fill', 'white');
box.setAttribute('fill', '#0084FF');
box.setAttribute('fill', '#FF7B00');
}
indicator.data = 'encrypting message';
await wait(250);
await wait(550);
indicator.data = 'sending message';
await wait(100);
await wait(500);
indicator.data = 'message was sent';
}
@ -529,8 +529,8 @@ async function dialog_nabopige() {
<g id="messages"></g>
<!-- [right] message status -->
<rect id="message_status_box" x="300" y="500" fill="blue" width="300" height="50" />
<text id="message_status" x="310" y="530" fill="white">status</text>
<rect id="message_status_box" x="300" y="520" fill="#FF7B00" width="300" height="30" />
<text id="message_status" x="310" y="540" fill="white">status</text>
<!-- [right] text input -->
<rect id="message_input_box" x="300" y="550" stroke="black" fill="white" width="250" height="50" />

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB