fix(project): 완료 프로젝트 숨기기 버튼 동작 안 하던 CSS 특이도 문제 수정
- .pj-project-grid[hidden] 규칙 추가 — display:grid 규칙과 특이도가 같아 [hidden] 속성이 무시되던 버그 - 홈 카드 업무 미리보기에 단계(stage_name) 칩 표시 - 홈 화면 날짜 표기를 yy/mm/dd(요일) 형식으로 통일(프로젝트 마감·업무 마감·내 업무 기간) Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -34,6 +34,7 @@
|
||||
@media (max-width: 980px) { .pj-home { grid-template-columns: 1fr; } }
|
||||
|
||||
.pj-project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 14px; align-items: start; }
|
||||
.pj-project-grid[hidden] { display: none; }
|
||||
.pj-project-card {
|
||||
position: relative; border: 1px solid #e7e9ec; border-radius: 14px;
|
||||
background: #fff; transition: box-shadow .14s, transform .1s;
|
||||
@@ -72,6 +73,11 @@
|
||||
font-size: 12.5px; font-weight: 600; flex: 1; min-width: 0;
|
||||
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
|
||||
}
|
||||
.pj-project-task-stage {
|
||||
flex: 0 0 auto; font-size: 10px; font-weight: 700; color: #6b7280;
|
||||
background: #eef0f2; border-radius: 999px; padding: 1px 7px;
|
||||
max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
|
||||
}
|
||||
.pj-project-task-assignee {
|
||||
display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: #6b7280;
|
||||
flex: 0 0 auto; max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
|
||||
|
||||
Reference in New Issue
Block a user