mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-05 00:59:38 +00:00
fix bugs
This commit is contained in:
parent
e87d3d22f7
commit
a2a4929a21
@ -20,6 +20,8 @@
|
|||||||
|
|
||||||
<div class="title_one_frame">@name</div>
|
<div class="title_one_frame">@name</div>
|
||||||
|
|
||||||
|
<div class="gradient"></div>
|
||||||
|
|
||||||
<div class="chat_message" @ref="chatMessageRef">
|
<div class="chat_message" @ref="chatMessageRef">
|
||||||
|
|
||||||
<ul class="chat_box">
|
<ul class="chat_box">
|
||||||
@ -31,6 +33,21 @@
|
|||||||
{
|
{
|
||||||
|
|
||||||
if (item.Role != "User")
|
if (item.Role != "User")
|
||||||
|
{
|
||||||
|
|
||||||
|
if (@item.Text == "Waiting for response")
|
||||||
|
{
|
||||||
|
|
||||||
|
<div class=" chat_incoming_wait">Waiting for response
|
||||||
|
|
||||||
|
<div class="loading-spinner"></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
<li class=" chat_incoming">
|
<li class=" chat_incoming">
|
||||||
@ -38,6 +55,9 @@
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -117,7 +117,7 @@
|
|||||||
.chat_message {
|
.chat_message {
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
height: calc(100% - 8em);
|
height: calc(100% - 8.5em);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.chat_message::-webkit-scrollbar {
|
.chat_message::-webkit-scrollbar {
|
||||||
@ -150,6 +150,19 @@
|
|||||||
.chat_incoming{
|
.chat_incoming{
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
.chat_incoming_wait {
|
||||||
|
display: inline-flex; /* Использовать inline-flex-контейнер */
|
||||||
|
align-items: center; /* Выравнивание по центру */
|
||||||
|
font-size: 0.9em;
|
||||||
|
background-color: #EAEAEA;
|
||||||
|
border-radius: 10px;
|
||||||
|
color: black;
|
||||||
|
padding: 10px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
margin-top: 20px;
|
||||||
|
max-width: 70%; /* Максимальная ширина по вашему усмотрению */
|
||||||
|
}
|
||||||
|
|
||||||
.chat_box .chat_outgoing p {
|
.chat_box .chat_outgoing p {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
background-color: #009FFF;
|
background-color: #009FFF;
|
||||||
@ -168,3 +181,25 @@
|
|||||||
margin-bottom: 20px ;
|
margin-bottom: 20px ;
|
||||||
margin-top: 20px ;
|
margin-top: 20px ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
0% { transform: rotate(0deg); }
|
||||||
|
100% { transform: rotate(360deg); }
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-spinner {
|
||||||
|
border: 4px solid rgba(0, 82, 204, 0.1);
|
||||||
|
border-top: 4px solid #0052CC;
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
margin-left: 10px; /* Добавлен отступ для разделения текста и загрузки */
|
||||||
|
}
|
||||||
|
.gradient{
|
||||||
|
background: linear-gradient(rgb(255, 255, 255), rgba(0, 0, 0, 0));
|
||||||
|
position: absolute;
|
||||||
|
height: 50px;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user