⬆️ upgrade dependencies and optimize the image display list

This commit is contained in:
2025-02-10 01:08:28 +08:00
parent b4ef5a4b51
commit 76d72182f9
12 changed files with 379 additions and 158 deletions

View File

@@ -89,7 +89,7 @@ function toggleSelection() {
<style scoped lang="scss">
.check-card {
position: relative;
display: flex;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
@@ -100,11 +100,16 @@ function toggleSelection() {
.check-card.selected {
border: 1px solid rgba(125, 167, 255, 0.68);
box-shadow: 0 0 2px rgba(77, 167, 255, 0.89);
padding: 10px;
}
.card-content {
display: inline-block;
flex: 1;
transition: transform 0.3s ease-in-out;
}
.check-card.selected .card-content {
transform: scale(0.95);
}
.card-selected-icon {

View File

@@ -368,10 +368,10 @@ function onPageSizeChange(pageSize: number) {
}
&:hover {
border-color: @themeColor;
border-color: #00aced;
.arrow-svg {
color: @themeColor;
color: #00aced;
}
}
}
@@ -383,8 +383,8 @@ function onPageSizeChange(pageSize: number) {
.item-active {
// 悬浮/选中样式
font-weight: 600;
color: @themeColor;
border-color: @themeColor;
color: #00aced;
border-color: #00aced;
}
.item-disabled {
@@ -443,7 +443,7 @@ function onPageSizeChange(pageSize: number) {
right: 0;
margin: auto;
display: inline-block;
fill: @themeColor;
fill: #000;
width: 12px;
height: 12px;
opacity: 0;