style(project): 모든 댓글 표시를 💬 이모지로 통일
달력/보드/리스트 말풍선과 업무 모달 댓글 헤더 아이콘을 material 폰트 대신 💬 이모지로 변경(타임라인과 일관). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -289,9 +289,8 @@
|
||||
/* 보드 카드 — 전체 뷰에서 어느 프로젝트인지 배지 표시 */
|
||||
.pj-card-proj { font-size: 11px; font-weight: 700; margin-bottom: 3px; letter-spacing: -.2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
|
||||
/* 댓글 말풍선 표시 — 색은 currentColor 상속 */
|
||||
.material-symbols-outlined.pj-cmt-ic { font-size: 14px; vertical-align: middle; margin-left: 4px; line-height: 1; }
|
||||
.material-symbols-outlined.pj-cmt-ic.pj-cmt-ic-tl { font-size: 12px; margin-left: 3px; }
|
||||
/* 댓글 말풍선(💬 이모지) 표시 */
|
||||
.pj-cmt-ic { font-size: 12px; vertical-align: middle; margin-left: 4px; line-height: 1; }
|
||||
.pj-cmt-n { font-size: 11px; font-weight: 700; vertical-align: middle; margin-left: 1px; }
|
||||
.pj-card-cmt { display: inline-flex; align-items: center; color: #6b7280; }
|
||||
|
||||
|
||||
@@ -179,8 +179,8 @@
|
||||
function cmtBadge(t, cls) {
|
||||
const n = t.comment_count || 0;
|
||||
if (!n) return "";
|
||||
return '<span class="material-symbols-outlined pj-cmt-ic ' + (cls || "") +
|
||||
'" title="댓글 ' + n + '개">chat_bubble</span><span class="pj-cmt-n">' + n + "</span>";
|
||||
return '<span class="pj-cmt-ic ' + (cls || "") +
|
||||
'" title="댓글 ' + n + '개">💬</span><span class="pj-cmt-n">' + n + "</span>";
|
||||
}
|
||||
|
||||
const dataEl = el("pj-data");
|
||||
|
||||
Reference in New Issue
Block a user