pms-front-react/src/pages/workAppraisal/manager.css

84 lines
1.4 KiB
CSS
Raw Normal View History

2026-03-17 07:18:07 +00:00
.appraisal-manager-page {
min-height: 420px;
}
.appraisal-manager-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 16px;
}
.appraisal-task-card {
border: 1px solid #e5e6eb;
border-radius: 10px;
padding: 16px;
background: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.appraisal-task-card-head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
}
.appraisal-task-icon {
width: 36px;
height: 36px;
border-radius: 8px;
display: inline-flex;
align-items: center;
justify-content: center;
color: #1677ff;
background: #e6f4ff;
font-size: 18px;
}
.appraisal-task-name {
color: #1f2329;
font-size: 16px;
font-weight: 600;
line-height: 24px;
margin-bottom: 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.appraisal-task-meta {
color: #4e5969;
font-size: 13px;
margin-bottom: 18px;
}
.appraisal-task-foot {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 32px;
}
.appraisal-task-people {
color: #4e5969;
font-size: 13px;
}
.appraisal-task-action {
padding-inline: 0 !important;
display: inline-flex !important;
align-items: center;
gap: 6px;
font-size: 13px;
}
.appraisal-task-action.is-disabled {
color: #8c8c8c !important;
}
@media (max-width: 768px) {
.appraisal-manager-grid {
grid-template-columns: 1fr;
}
}