feat: 添加多选功能 支持合并文本/图片/文件

This commit is contained in:
ZiuChen
2022-09-08 23:49:11 +08:00
parent 9b172f684c
commit cfe567b9fb
5 changed files with 170 additions and 28 deletions

View File

@@ -16,6 +16,9 @@
background-color: @text-bg-color-lighter;
transition: all 0.15s;
}
&.select {
background-color: @text-bg-color-lighter;
}
.clip-info {
display: flex;
justify-content: center;

View File

@@ -34,10 +34,25 @@
}
}
}
.clip-switch-btn {
width: 25px;
height: 25px;
padding: 10px;
cursor: pointer;
.clip-switch-btn-list {
margin-right: 5px;
.clip-switch-btn {
width: 25px;
height: 25px;
padding: 10px;
border-radius: 5px;
margin: 5px 2px;
cursor: pointer;
color: @text-color;
background-color: @nav-bg-color;
&:hover {
background-color: @nav-hover-bg-color;
transition: all 0.15s ease-in-out;
}
&.clip-select-count {
background-color: @primary-color;
color: @bg-color;
}
}
}
}