新版交互调整

This commit is contained in:
2026-06-24 19:03:41 +08:00
parent 065553f53e
commit 8143a89dab
37 changed files with 4929 additions and 4409 deletions
+64 -37
View File
@@ -74,7 +74,7 @@
white-space: nowrap;
&--action {
width: 0.5rem;
width: 2rem;
}
}
@@ -107,7 +107,7 @@
&__name-cell {
display: flex;
align-items: center;
gap: 0.1rem;
gap: 0.06rem;
}
&__avatar {
@@ -128,16 +128,71 @@
}
&__default-tag {
font-size: 0.1rem;
color: $text-light;
background: $bg-main;
border: 1px solid $border-color;
border-radius: 0.04rem;
padding: 0.02rem 0.06rem;
font-size: 0.09rem;
color: $accent;
background: #D9F5F0;
border-radius: 0.14rem;
padding: 0.01rem 0.06rem;
padding-bottom: 0.02rem;
white-space: nowrap;
}
// 更多按钮
// 编辑名称岗位图标按钮
&__edit-btn {
background: none;
border: none;
color: $text-dark;
cursor: pointer;
padding: 0.02rem;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.2s;
&:hover {
opacity: 0.6;
}
}
&__edit-icon {
font-size: 0.13rem;
}
// 操作按钮容器
&__actions {
display: flex;
align-items: center;
gap: 0.16rem;
justify-content: flex-end;
}
// 行内操作按钮
&__action-btn {
background: none;
border: none;
font-size: 0.12rem;
color: $text-dark;
cursor: pointer;
padding: 0.04rem 0.08rem;
border-radius: 0.04rem;
white-space: nowrap;
transition: all 0.15s;
&:hover {
color: $accent;
}
// 删除按钮红色
&--delete {
color: #FD6464;
&:hover {
color: #e04545;
}
}
}
// 更多按钮(已移除,保留兼容)
&__more-btn {
background: none;
border: none;
@@ -168,34 +223,6 @@
color: $text-light;
font-size: 0.14rem;
}
// 弹出菜单
&__popup {
position: absolute;
right: 0.46rem;
top: 0.18rem;
background: $bg-white;
border: 1px solid $border-color;
border-radius: 0.1rem;
padding: 0.06rem 0;
box-shadow: 0 0.06rem 0.2rem rgba(0, 0, 0, 0.1);
z-index: 10;
min-width: 1.2rem;
}
&__popup-item {
padding: 0.08rem 0.2rem;
font-size: 0.12rem;
color: $text-dark;
cursor: pointer;
white-space: nowrap;
transition: all 0.15s;
&:hover {
background: $theme-color;
color: $accent-hover;
}
}
}
// ==================== 上传简历加载提示 ====================