delete chats
This commit is contained in:
parent
939cdd4497
commit
a1c0bf1294
4 changed files with 99 additions and 12 deletions
|
@ -21,14 +21,40 @@
|
|||
padding: 10px 0;
|
||||
border-bottom: 1px solid var(--text-color);
|
||||
width: 100%;
|
||||
height: fit-content;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
.history ul li a{
|
||||
display: block;
|
||||
word-break: break-word;
|
||||
overflow-wrap: break-word;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
color: var(--text-color); /* Use variable for link text color */
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
#delete-chat-button{
|
||||
width: 0;
|
||||
height: 80%;
|
||||
visibility: hidden;
|
||||
border-radius: 5px;
|
||||
background-color: var(--close-button-color);
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
#delete-chat-button svg{
|
||||
width: 100%;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
#delete-chat-button:hover{
|
||||
background-color: var(--close-button-hover-color);
|
||||
}
|
||||
|
||||
.history ul li a:hover{
|
||||
background-color: var(--input-button-hover-color);
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--text-color); /* Use variable for text color */
|
||||
color: white; /* Use variable for text color */
|
||||
border-radius: 5%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
@ -67,7 +67,7 @@
|
|||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: large;
|
||||
font-size:medium;
|
||||
transition: opacity 0.5s ease;
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
|
@ -85,6 +85,11 @@
|
|||
.model-box:hover .overlay {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.overlay h3{
|
||||
color: var(--overlay-text-color);
|
||||
width: 95%;
|
||||
}
|
||||
/* Model background styles */
|
||||
.code-model {
|
||||
background-image: url(/img/code.jpg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue