feat: close #2449 edit / insert / delete messages modal

This commit is contained in:
Yidadaa
2023-07-21 00:24:26 +08:00
parent e5f6133127
commit 7c2fa9f8a4
5 changed files with 211 additions and 110 deletions

View File

@@ -95,11 +95,28 @@
}
.context-prompt {
.context-prompt-insert {
display: flex;
justify-content: center;
padding: 4px;
opacity: 0.2;
transition: all ease 0.3s;
background-color: rgba(0, 0, 0, 0);
cursor: pointer;
border-radius: 4px;
margin-top: 4px;
margin-bottom: 4px;
&:hover {
opacity: 1;
background-color: rgba(0, 0, 0, 0.05);
}
}
.context-prompt-row {
display: flex;
justify-content: center;
width: 100%;
margin-bottom: 10px;
&:hover {
.context-drag {