/* 프로젝트 관리(아사나식) 모듈 스타일. * 기존 erp.css 토큰(폰트 등) 위에 아사나 느낌의 색·카드·그림자를 별도 변수로 * 얹는다 — 다른 모듈(erp.css)은 그대로 두고 이 모듈(.pj- 클래스)에만 적용. */ :root { --pj-accent: #7b68ee; /* 아사나 특유의 보라 포인트 컬러 */ --pj-accent-dark: #6453d6; --pj-accent-tint: #f1eeff; /* 선택/호버 배경(연한 보라) */ --pj-ink: #151b26; /* 본문 텍스트(진한 남색 계열, 순검정 대신) */ --pj-ink-soft: #6b6f76; /* 보조 텍스트 */ --pj-border: #e4e4e7; --pj-card-radius: 12px; --pj-card-shadow: 0 1px 2px rgba(16,24,40,.04), 0 2px 6px rgba(16,24,40,.06); --pj-card-shadow-hover: 0 6px 16px rgba(16,24,40,.10), 0 2px 4px rgba(16,24,40,.06); } .pj-wrap { padding: 4px 2px 40px; color: var(--pj-ink); } /* ── 버튼 ── */ .pj-btn { border: 1px solid #d8dce2; background: #fff; color: var(--pj-ink); padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .12s, border-color .12s; } .pj-btn:hover { background: #f6f7f8; } .pj-btn-primary { background: var(--pj-accent); color: #fff; border-color: var(--pj-accent); } .pj-btn-primary:hover { background: var(--pj-accent-dark); border-color: var(--pj-accent-dark); } .pj-btn-danger { background: #fff; color: #c22b10; border-color: #e6c4bd; } .pj-btn-danger:hover { background: #fbecea; } .pj-icon-btn { border: none; background: transparent; color: #6b7280; cursor: pointer; font-size: 16px; line-height: 1; width: 24px; height: 24px; border-radius: 6px; padding: 0; display: inline-flex; align-items: center; justify-content: center; } .pj-icon-btn:hover { background: #eceef0; color: #1e1f21; } .pj-section-head { display: flex; align-items: center; justify-content: space-between; margin: 8px 0 14px; } .pj-section-head h2 { font-size: 16px; font-weight: 700; margin: 0; } .pj-empty { padding: 28px; text-align: center; color: #6b7280; background: #f7f8f9; border-radius: 12px; } .pj-empty-sm { padding: 10px 2px; color: #9aa1a9; font-size: 13px; } .pj-chip { display: inline-block; padding: 2px 8px; border-radius: 999px; background: #eef0f2; color: #525860; font-size: 11px; font-weight: 600; } .pj-chip-sm { padding: 1px 6px; font-size: 10px; } /* ── 홈 ── */ .pj-home { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; } @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-card { position: relative; border: 1px solid var(--pj-border); border-radius: var(--pj-card-radius); background: #fff; box-shadow: var(--pj-card-shadow); transition: box-shadow .14s, transform .1s; } .pj-project-card:hover { box-shadow: var(--pj-card-shadow-hover); transform: translateY(-1px); } .pj-project-cardlink { display: flex; gap: 12px; padding: 16px; text-decoration: none; color: inherit; } /* 완료 프로젝트 — 비활성(흐리게) */ .pj-project-card.is-done { background: #f6f7f8; opacity: .62; } .pj-project-card.is-done:hover { opacity: .85; } .pj-project-card.is-done .pj-project-dot { background: #9aa5b1; } /* 카드 우측 상단 액션(업무 추가/수정) — 호버 시에만 노출 */ .pj-card-actions { position: absolute; top: 8px; right: 8px; display: flex; gap: 2px; } .pj-card-actions .pj-icon-btn { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; color: #6b7280; opacity: 0; transition: opacity .12s; } .pj-card-actions .pj-icon-btn .material-symbols-outlined { font-size: 18px; } .pj-project-card:hover .pj-card-actions .pj-icon-btn { opacity: 1; } .pj-card-actions .pj-icon-btn:hover { background: #eceef0; color: #1e1f21; } .pj-project-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pj-color, #4573d2); margin-top: 5px; flex: 0 0 auto; } .pj-project-name { font-weight: 700; font-size: 15px; } .pj-project-desc { color: #6b7280; font-size: 12.5px; margin-top: 3px; } /* 프로젝트 이름 아래 — 배정 멤버(아이콘+이름) */ .pj-project-members { display: flex; flex-wrap: wrap; gap: 3px 10px; margin-top: 6px; } .pj-project-member { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: #6b7280; } .pj-project-meta { margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap; } .pj-project-progress { margin-top: 10px; height: 5px; border-radius: 999px; background: #eef0f2; overflow: hidden; } .pj-project-progress-bar { height: 100%; border-radius: 999px; background: var(--pj-color, #4573d2); } /* 카드 하단 업무 미리보기 목록 */ .pj-project-tasklist { list-style: none; margin: 0; padding: 0 10px 6px; border-top: 1px solid #f0f1f3; } .pj-project-taskrow a { display: flex; align-items: center; gap: 7px; padding: 7px 6px; border-radius: 7px; text-decoration: none; color: inherit; } .pj-project-taskrow a:hover { background: #f6f7f8; } /* 댓글 아이콘 자리 — 댓글이 없어도 폭을 고정해 제목이 항상 같은 위치에서 시작(세로 정렬)되게 한다. */ .pj-project-task-lead { flex: 0 0 32px; display: inline-flex; align-items: center; } .pj-project-task-title { 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; } .pj-project-task-due { font-size: 11px; color: #9aa1a9; flex: 0 0 auto; } .pj-project-task-due.is-overdue { color: #c22b10; font-weight: 700; } .pj-project-taskrow.is-done .pj-project-task-title { text-decoration: line-through; color: #9aa1a9; } .pj-project-more { display: block; padding: 6px 16px 12px; font-size: 12px; font-weight: 600; color: #6b7280; text-decoration: none; } .pj-project-more:hover { color: #1e1f21; text-decoration: underline; } .pj-project-tasks-empty { padding: 4px 16px 14px; font-size: 12px; color: #b7bdc5; border-top: 1px solid #f0f1f3; margin-top: 2px; } /* 완료 프로젝트 섹션 헤더 */ .pj-section-head-done { margin-top: 22px; } .pj-section-head-done h2 { font-size: 14px; color: #6b7280; } .pj-home-side { border-left: 1px solid #eef0f2; padding-left: 24px; } @media (max-width: 980px) { .pj-home-side { border-left: none; padding-left: 0; } } .pj-mytask-list { list-style: none; margin: 0; padding: 0; } .pj-mytask a { display: flex; align-items: center; gap: 8px; padding: 9px 6px; border-radius: 8px; text-decoration: none; color: inherit; } .pj-mytask a:hover { background: #f6f7f8; } .pj-mytask.is-done .pj-mytask-title { text-decoration: line-through; color: #9aa1a9; } .pj-mytask-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; } .pj-mytask-title { font-size: 13.5px; font-weight: 600; } .pj-mytask-meta { margin-left: auto; font-size: 11px; color: #9aa1a9; } /* ── 프로젝트 페이지 레이아웃 ── */ .pj-layout { display: grid; grid-template-columns: 230px 1fr; gap: 22px; align-items: start; } @media (max-width: 900px) { .pj-layout { grid-template-columns: 1fr; } } .pj-side-block { margin-bottom: 22px; } .pj-side-head { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; } .pj-member-list { list-style: none; margin: 0; padding: 0; } .pj-member-list li { display: flex; align-items: center; gap: 8px; padding: 5px 4px; border-radius: 7px; } .pj-member-list li:hover { background: #f6f7f8; } .pj-member-name { font-size: 13px; flex: 1; } /* ── 아사나식 프로젝트 트리(사이드바) — 프로젝트 이름만 나열, 업무 목록 없음 ── */ .pj-tree { list-style: none; margin: 0; padding: 0; } .pj-tree-row { display: flex; align-items: center; gap: 2px; border-radius: 8px; padding-right: 2px; position: relative; } .pj-tree-row:hover { background: #f1f2f4; } .pj-tree-row.is-active { background: var(--pj-accent-tint); } .pj-tree-row.is-active .pj-tree-name { font-weight: 700; color: var(--pj-accent-dark); } .pj-tree-link { display: flex; align-items: center; gap: 9px; flex: 1; min-width: 0; text-decoration: none; color: inherit; padding: 6px 4px; } /* 프로젝트 색 + 첫 글자 — 아사나의 색 아이콘 자리를 대신한다 */ .pj-tree-avatar { width: 22px; height: 22px; border-radius: 6px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 700; } .pj-tree-name { font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .pj-tree-acts { display: none; gap: 0; flex: 0 0 auto; } .pj-tree-row:hover .pj-tree-acts { display: inline-flex; } .pj-tree-acts .pj-icon-btn { width: 22px; height: 22px; font-size: 14px; } /* 구글 머티리얼 심볼 아이콘(담당자) */ .material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; line-height: 1; vertical-align: middle; } .pj-gicon { font-size: 24px; color: #5f6368; flex: 0 0 auto; } .pj-gicon-sm { font-size: 20px; } .pj-assignee { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: #5f6368; } /* 구글 프로필 이미지 — 원형 */ .pj-avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; vertical-align: middle; background: #e7e9ec; } .pj-avatar.pj-gicon-sm { width: 18px; height: 18px; } /* ── 툴바 + 탭 ── */ .pj-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; } .pj-view-tabs { display: inline-flex; background: #eef0f2; border-radius: 10px; padding: 3px; gap: 2px; } .pj-tab { border: none; background: transparent; padding: 7px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; color: #525860; cursor: pointer; } .pj-tab.is-active { background: var(--pj-accent); color: #fff; box-shadow: 0 1px 3px rgba(123,104,238,.35); } /* 알림 벨 흔들림(미읽음 있을 때) */ @keyframes pj-bell-ring { 0%, 50%, 100% { transform: rotate(0); } 10%, 30% { transform: rotate(14deg); } 20%, 40% { transform: rotate(-14deg); } } .pj-bell.has-unread .material-symbols-outlined { animation: pj-bell-ring 1.4s ease-in-out infinite; transform-origin: top center; } /* ── 보드(칸반) ── */ .pj-board { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; align-items: flex-start; } .pj-col { flex: 0 0 280px; background: #f6f5fb; border-radius: 14px; padding: 12px; } .pj-col-head { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 13px; padding: 2px 6px 12px; color: var(--pj-ink); } .pj-col-count { margin-left: auto; color: var(--pj-ink-soft); font-weight: 700; font-size: 11px; background: #fff; border-radius: 999px; min-width: 20px; height: 20px; padding: 0 6px; display: inline-flex; align-items: center; justify-content: center; } .pj-col-body { display: flex; flex-direction: column; gap: 8px; min-height: 40px; border-radius: 8px; } .pj-col-body.is-over { background: var(--pj-accent-tint); outline: 2px dashed var(--pj-accent); } .pj-card { background: #fff; border: 1px solid var(--pj-border); border-radius: var(--pj-card-radius); padding: 12px 14px; cursor: pointer; box-shadow: var(--pj-card-shadow); transition: box-shadow .12s, transform .08s; } .pj-card:hover { box-shadow: var(--pj-card-shadow-hover); transform: translateY(-1px); } .pj-card.is-dragging { opacity: .5; } .pj-card.is-done .pj-card-title { text-decoration: line-through; color: #9aa1a9; } .pj-card-title { font-size: 13.5px; font-weight: 600; color: var(--pj-ink); line-height: 1.4; } .pj-card-meta { display: flex; align-items: center; gap: 6px; margin-top: 10px; } .pj-card-due { margin-left: auto; font-size: 11px; color: var(--pj-ink-soft); font-weight: 600; } .pj-pri { padding: 1px 7px; border-radius: 999px; font-size: 10px; font-weight: 700; } .pj-pri-high { background: #fbe3df; color: #c22b10; } .pj-pri-low { background: #e6eef0; color: #4a6066; } /* ── 리스트 ── */ .pj-table { width: 100%; border-collapse: collapse; font-size: 13.5px; } .pj-table th { text-align: left; padding: 9px 10px; border-bottom: 2px solid #eef0f2; color: #1e1f21; font-size: 14px; font-weight: 700; position: relative; } .pj-table td { padding: 10px; border-bottom: 1px solid #f1f2f4; } .pj-table tr.is-done td { color: #9aa1a9; text-decoration: line-through; } .pj-table-fixed { table-layout: fixed; } .pj-table-fixed th, .pj-table-fixed td { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /* 리스트 뷰(이 프로젝트 스코프) — 세션이 컬럼 대신 그룹 구분선이 된다(아사나식) */ .pj-list-group-row { background: #fafafd; } .pj-list-group-head { display: flex; align-items: center; gap: 6px; padding: 10px 6px !important; font-size: 13px; font-weight: 700; color: var(--pj-ink); cursor: pointer; border-bottom: 1px solid var(--pj-border) !important; white-space: nowrap; } .pj-list-group-caret { font-size: 18px; color: var(--pj-ink-soft); } .pj-list-group-count { color: var(--pj-ink-soft); font-weight: 700; font-size: 11px; background: #eef0f2; border-radius: 999px; min-width: 20px; height: 20px; padding: 0 6px; display: inline-flex; align-items: center; justify-content: center; } .pj-th-label { cursor: pointer; user-select: none; display: inline-flex; align-items: center; gap: 4px; } .pj-th-label:hover { color: #4573d2; } .pj-th-sort { font-size: 11px; color: #9aa1a9; } .pj-th-resize { position: absolute; top: 0; right: -3px; width: 8px; height: 100%; cursor: col-resize; z-index: 2; } .pj-th-resize:hover { background: linear-gradient(90deg, transparent 40%, #c9d4ea 40%, #c9d4ea 60%, transparent 60%); } /* ── 내 업무 트리(홈) ── */ .pj-mytree-group { margin-bottom: 14px; } .pj-mytree-proj { display: flex; align-items: center; gap: 7px; text-decoration: none; color: #1e1f21; font-weight: 700; font-size: 13.5px; padding: 4px 2px; border-radius: 7px; } .pj-mytree-proj:hover { background: #f6f7f8; } .pj-mytree-tasks { list-style: none; margin: 2px 0 0; padding: 0 0 0 8px; border-left: 2px solid #eef0f2; margin-left: 10px; } .pj-mytree-task a { display: flex; align-items: flex-start; gap: 7px; padding: 6px 6px; border-radius: 7px; text-decoration: none; color: inherit; } .pj-mytree-task a:hover { background: #f6f7f8; } /* 댓글 아이콘 자리 — 댓글이 없어도 폭을 고정해 제목이 항상 같은 위치에서 시작(세로 정렬)되게 한다. */ .pj-mytree-lead { flex: 0 0 32px; display: inline-flex; align-items: center; margin-top: 1px; } .pj-mytree-body { display: flex; flex-direction: column; min-width: 0; } .pj-mytree-title { font-size: 13px; font-weight: 600; } .pj-mytree-dates { font-size: 11px; color: #9aa1a9; margin-top: 1px; } .pj-mytree-task.is-done .pj-mytree-title { text-decoration: line-through; color: #9aa1a9; } /* ── 달력 (휴가 모듈과 동일한 월간 그리드 룩) ── */ .pj-cal-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; } .pj-cal-title { font-size: 18pt; font-weight: 600; margin: 0; letter-spacing: -0.45px; } .pj-nav-btn { padding: 2px 12px; font-size: 18pt; line-height: 1; } .pj-today-btn { margin-left: auto; } .pj-cal { border: 1px solid #e5e5e5; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; } .pj-wd-row { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); background: #f2f2f2; border-bottom: 1px solid #e5e5e5; } .pj-wd { text-align: center; padding: 8px 0; font-size: 15px; font-weight: 600; color: #0a0a0a; border-right: 1px solid #e5e5e5; } .pj-wd:last-child { border-right: none; } /* 주(week) — 날짜 셀 위에 bar 레이어 오버레이. 6주가 높이 균등 분할. */ .pj-week { position: relative; border-bottom: 1px solid #e5e5e5; flex: 1 1 0; min-height: 134px; display: flex; flex-direction: column; } .pj-week:last-child { border-bottom: none; } .pj-week-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); flex: 1 1 auto; min-height: 0; } .pj-day { height: 100%; border-right: 1px solid #e5e5e5; padding: 6px 8px; box-sizing: border-box; } .pj-day:last-child { border-right: none; } .pj-day-num { font-size: 20px; font-weight: 600; color: #0a0a0a; } .pj-out { background: #fafafa; } .pj-out .pj-day-num { color: #bbb; } .pj-today { background: #f5f5f5; } .pj-today .pj-day-num { background: #0a0a0a; color: #fff !important; border-radius: 9999px; padding: 2px 9px; } .pj-today .pj-day-num.pj-red { background: #c22b10; } .pj-today .pj-day-num.pj-blue { background: #1d4ed8; } .pj-red { color: #c22b10 !important; } .pj-blue { color: #1d4ed8 !important; } /* bar 오버레이 — 날짜 숫자 아래(top)부터 7열 그리드로 겹쳐 그림 */ .pj-week-bars { position: absolute; left: 0; right: 0; top: 34px; bottom: 4px; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); grid-auto-rows: 22px; row-gap: 2px; pointer-events: none; } .pj-bar { margin: 0 3px; padding: 0 7px; height: 20px; line-height: 20px; border-radius: 5px; font-size: 12.5px; font-weight: 500; color: #fff; text-decoration: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; align-self: center; pointer-events: auto; cursor: pointer; } .pj-bar:hover { filter: brightness(.93); } .pj-bar-label { pointer-events: none; } /* "+N 더" 칩 — 넘친 업무. 클릭 시 그날 목록 팝오버 */ .pj-bar-more { margin: 0 3px; height: 18px; line-height: 18px; align-self: center; font-size: 11.5px; font-weight: 600; color: #5a6772; cursor: pointer; pointer-events: auto; padding: 0 4px; border-radius: 5px; } .pj-bar-more:hover { background: #eceef0; color: #1e1f21; } /* 그날 업무 팝오버 */ .pj-daypop { position: absolute; z-index: 2100; min-width: 200px; max-width: 280px; background: #fff; border: 1px solid #e2e5e9; border-radius: 12px; box-shadow: 0 8px 28px rgba(0,0,0,.16); padding: 8px; } .pj-daypop-head { font-size: 12px; font-weight: 700; color: #525860; padding: 4px 6px 8px; } .pj-daypop-item { display: flex; align-items: center; gap: 8px; padding: 6px 6px; border-radius: 8px; cursor: pointer; font-size: 13px; } .pj-daypop-item:hover { background: #f2f4f6; } .pj-daypop-item.is-done .pj-daypop-title { text-decoration: line-through; color: #9aa1a9; } .pj-daypop-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; } .pj-daypop-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .pj-bar-l { border-top-left-radius: 0; border-bottom-left-radius: 0; margin-left: 0; } .pj-bar-r { border-top-right-radius: 0; border-bottom-right-radius: 0; margin-right: 0; } .pj-bar-done { opacity: .75; text-decoration: line-through; } /* 드래그 이동(포인터 기반) — 드래그 중엔 bar 가 이벤트 가로채지 않게(elementFromPoint 가 날짜 셀 반환) */ .pj-cal-dragging { cursor: grabbing; } .pj-cal-dragging .pj-bar { pointer-events: none; } .pj-project-view[data-can-manage="true"] .pj-bar { cursor: grab; } .pj-day.pj-drop-over { background: #e6ecfa; box-shadow: inset 0 0 0 2px #aebfe6; } /* 드래그 중 따라다니는 고스트 라벨 */ .pj-bar-ghost { position: fixed; z-index: 2000; pointer-events: none; padding: 2px 10px; border-radius: 6px; background: #1e1f21; color: #fff; font-size: 12px; box-shadow: 0 4px 14px rgba(0,0,0,.3); white-space: nowrap; } /* ── 타임라인 컨테이너 ── */ #pj-timeline { background: #fff; border-radius: 12px; padding: 6px; } /* ── 모달 ── */ .pj-modal { position: fixed; inset: 0; background: rgba(20,22,26,.46); display: flex; align-items: center; justify-content: center; z-index: 1000; } .pj-modal[hidden] { display: none; } .pj-modal-card { background: #fff; border-radius: 16px; padding: 22px; width: min(480px, 92vw); box-shadow: 0 20px 60px rgba(0,0,0,.25); max-height: 90vh; overflow-y: auto; } .pj-modal-card h3 { margin: 0 0 16px; font-size: 17px; } .pj-modal-hint { margin: -6px 0 14px; font-size: 12px; color: #6b7280; } /* 업무 편집 팝업 — 아사나식 레이아웃(큰 무테 제목 + 작은 메타 칩 한 줄). */ .pj-modal-kicker { margin: 0 0 2px; font-size: 11px; font-weight: 700; color: var(--pj-ink-soft); text-transform: uppercase; letter-spacing: .04em; } .pj-t-title-input { display: block; width: 100%; border: none !important; background: transparent !important; font-size: 19px !important; font-weight: 700; padding: 4px 4px !important; margin: 0 0 14px !important; color: var(--pj-ink); box-sizing: border-box; } .pj-t-title-input:focus { outline: none; background: #f6f7f8 !important; border-radius: 8px; } .pj-meta-row { display: flex; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; } .pj-meta-field { flex: 1 1 110px; min-width: 100px; } .pj-meta-label { display: block; font-size: 10.5px; font-weight: 700; color: var(--pj-ink-soft); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px; } .pj-meta-field select, .pj-meta-field input { display: block; width: 100%; margin: 0 !important; padding: 6px 8px !important; border: 1px solid var(--pj-border) !important; border-radius: 8px !important; font-size: 12.5px !important; font-family: inherit; background: #fafafa !important; box-sizing: border-box; } .pj-meta-field select:hover, .pj-meta-field input:hover, .pj-meta-field select:focus, .pj-meta-field input:focus { border-color: var(--pj-accent) !important; background: var(--pj-accent-tint) !important; outline: none; } .pj-extra-label { font-size: 12.5px; font-weight: 700; color: var(--pj-ink-soft); margin-right: auto; } .pj-modal-card label { display: block; font-size: 12.5px; font-weight: 600; color: #525860; margin-bottom: 12px; } .pj-modal-card input[type=text], .pj-modal-card input[type=date], .pj-modal-card textarea, .pj-modal-card select { display: block; width: 100%; margin-top: 5px; padding: 8px 10px; border: 1px solid #d8dce2; border-radius: 8px; font-size: 13.5px; font-family: inherit; box-sizing: border-box; } .pj-form-row { display: flex; gap: 12px; } .pj-form-row label { flex: 1; } .pj-time-toggle { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #525860; margin-bottom: 12px; cursor: pointer; } .pj-time-toggle input { width: auto; margin: 0; } .pj-form-row input[type="time"] { display: block; width: 100%; margin-top: 5px; padding: 8px 10px; border: 1px solid #d8dce2; border-radius: 8px; font-size: 13.5px; font-family: inherit; box-sizing: border-box; } .pj-form-row input[type="time"]:disabled { background: #f2f2f2; color: #aaa; cursor: not-allowed; } #pj-time-row:has(input:disabled) label { color: #aaa; } .pj-modal-actions { display: flex; align-items: center; gap: 8px; margin-top: 8px; } .pj-modal-actions .pj-btn:last-child { } .pj-color-palette, #pj-f-colors { display: flex; gap: 8px; margin-top: 6px; } .pj-color-swatch { width: 24px; height: 24px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; } .pj-color-swatch.is-active { border-color: #1e1f21; box-shadow: 0 0 0 2px #fff inset; } /* ── 알림 벨 ── */ .pj-toolbar-right { display: flex; align-items: center; gap: 12px; } .pj-bell { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; color: #525860; text-decoration: none; } .pj-bell:hover { background: #eceef0; } .pj-bell-badge { position: absolute; top: 3px; right: 3px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px; background: #e8384f; color: #fff; font-size: 10px; font-weight: 700; line-height: 16px; text-align: center; } /* ── 업무 모달 댓글/첨부 ── */ .pj-task-extra { border-top: 1px solid #eef0f2; margin-top: 14px; padding-top: 12px; } .pj-extra-head { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #525860; margin-bottom: 8px; } .pj-upload-btn { margin-left: auto; font-size: 12px; font-weight: 600; color: #4573d2; cursor: pointer; padding: 3px 8px; border: 1px solid #cdd9f0; border-radius: 7px; } .pj-upload-btn:hover { background: #eef3fc; } .pj-attach-list, .pj-comment-list { list-style: none; margin: 0 0 6px; padding: 0; max-height: 160px; overflow-y: auto; } .pj-attach-item { display: flex; align-items: center; gap: 8px; padding: 5px 4px; font-size: 13px; } .pj-attach-item a { color: #2b4a85; text-decoration: none; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .pj-attach-item a:hover { text-decoration: underline; } .pj-attach-size { font-size: 11px; color: #9aa1a9; } .pj-comment-item { display: flex; align-items: flex-start; gap: 8px; padding: 7px 2px; } .pj-comment-main { flex: 1; } .pj-comment-head { font-size: 12.5px; font-weight: 700; color: #1e1f21; } .pj-comment-time { font-weight: 400; color: #9aa1a9; font-size: 11px; margin-left: 6px; } .pj-comment-body { font-size: 13px; color: #333; margin-top: 1px; white-space: pre-wrap; } .pj-comment-form { display: flex; gap: 6px; } .pj-comment-form input { flex: 1; padding: 7px 10px; border: 1px solid #d8dce2; border-radius: 8px; font-size: 13px; font-family: inherit; } .pj-comment-acts { display: inline-flex; gap: 1px; flex: 0 0 auto; } .pj-comment-edit-box { margin-top: 5px; } .pj-comment-edit-box textarea { width: 100%; box-sizing: border-box; padding: 7px 9px; border: 1px solid #d8dce2; border-radius: 8px; font-size: 13px; font-family: inherit; resize: vertical; } .pj-comment-edit-actions { display: flex; gap: 6px; justify-content: flex-end; margin-top: 6px; } .pj-comment-edit-actions .pj-btn { padding: 4px 12px; font-size: 12px; } /* 보드 카드 — 전체 뷰에서 어느 프로젝트인지 배지 표시 */ .pj-card-proj { font-size: 11px; font-weight: 700; margin-bottom: 3px; letter-spacing: -.2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /* 댓글 말풍선(💬 이모지) 표시 */ .pj-cmt-ic { font-size: 12px; vertical-align: middle; margin-left: 4px; line-height: 1; display: inline-block; } .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; } .pj-cmt-badge { display: inline-flex; align-items: center; flex: 0 0 auto; color: #6b7280; cursor: pointer; } /* 새 댓글이 등록된 뒤 아직 확인 안 한 업무 — 살짝 커지며 반짝임. 확인하면(더블클릭) 원래대로. */ @keyframes pj-cmt-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .55; } } .pj-cmt-badge.is-unread .pj-cmt-ic { animation: pj-cmt-pulse 1.1s ease-in-out infinite; } .pj-cmt-badge.is-unread .pj-cmt-n { color: #e8384f; font-weight: 800; } /* ── 새 프로젝트 모달 — 멤버 선택 ── */ .pj-modal-card .pj-field-label { display: block; font-size: 12.5px; font-weight: 600; color: #525860; margin-bottom: 12px; } .pj-member-picker { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 5px; max-height: 140px; overflow-y: auto; padding: 6px 2px; border: 1px solid #eef0f2; border-radius: 8px; } .pj-member-pick { display: inline-flex !important; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 500 !important; color: #333; width: auto !important; margin: 0 !important; } .pj-member-pick input { width: auto !important; margin: 0 !important; } /* ── 댓글만 보는 채팅형 팝업(카톡 대화창 느낌) ── */ /* 크기 고정(500x850) — 내용이 많아도 팝업 크기는 그대로, 목록만 스크롤. */ .pj-modal-chat { width: 500px; height: 850px; max-width: 96vw; max-height: 92vh; box-sizing: border-box; display: flex; flex-direction: column; } .pj-chat-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; flex: 0 0 auto; } .pj-chat-head h3 { margin: 0; font-size: 17px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .pj-chat-list { list-style: none; margin: 0 0 10px; padding: 4px; flex: 1 1 auto; min-height: 0; overflow-y: auto; background: #eef0f2; border-radius: 10px; display: flex; flex-direction: column; gap: 8px; } .pj-modal-chat .pj-comment-form { flex: 0 0 auto; } .pj-chat-msg { display: flex; flex-direction: column; align-items: flex-start; max-width: 78%; } .pj-chat-msg.mine { align-self: flex-end; align-items: flex-end; } .pj-chat-name { font-size: 11px; color: #6b7280; margin-bottom: 2px; padding: 0 2px; } .pj-chat-bubble { background: #fff; border-radius: 14px 14px 14px 4px; padding: 8px 12px; font-size: 13.5px; color: #1e1f21; white-space: pre-wrap; word-break: break-word; box-shadow: 0 1px 2px rgba(0,0,0,.06); } .pj-chat-msg.mine .pj-chat-bubble { background: #fee500; border-radius: 14px 14px 4px 14px; } .pj-chat-meta { display: flex; align-items: center; gap: 3px; margin-top: 3px; padding: 0 2px; } .pj-chat-time { font-size: 10px; color: #9aa1a9; } /* 본인 댓글만 보이는 삭제 버튼 */ .pj-chat-del { width: 16px; height: 16px; color: #b7bdc5; } .pj-chat-del .material-symbols-outlined { font-size: 13px; } .pj-chat-del:hover { color: #c22b10; background: #fbecea; } /* ── 보드 단계 컨트롤 ── */ .pj-col-head { position: relative; } .pj-col-name { font-weight: 700; } .pj-col-ctrls { display: none; gap: 1px; margin-left: 6px; } .pj-col:hover .pj-col-ctrls { display: inline-flex; } .pj-col-ctrls .pj-icon-btn { width: 20px; height: 20px; font-size: 13px; } .pj-icon-btn[disabled] { opacity: .3; cursor: default; } .pj-col-add { background: transparent; flex: 0 0 180px; } .pj-add-stage { width: 100%; padding: 10px; border: 1px dashed #c9cdd3; border-radius: 12px; background: #fff; color: #6b7280; font-size: 13px; font-weight: 600; cursor: pointer; } .pj-add-stage:hover { border-color: #1e1f21; color: #1e1f21; } /* 세션(컬럼) 드래그 재정렬 */ .pj-col-head[draggable="true"] { cursor: grab; } .pj-col.is-dragging { opacity: .45; } .pj-col.pj-col-drop-target { outline: 2px dashed #aebfe6; outline-offset: -2px; border-radius: 12px; } /* 업무 카드 — 하위 업무 진행 배지("2/5") */ .pj-card-subtasks { font-size: 11px; color: #6b7280; background: #eef0f2; border-radius: 999px; padding: 1px 7px; font-weight: 600; } /* 프로젝트 스코프 토글(이 프로젝트 / 전체 프로젝트) — 뷰 탭과 같은 모양 재사용 */ #pj-scope-toggle { margin-left: auto; } /* ── 업무 설명 — contenteditable(이미지 붙여넣기/업로드 삽입) ── */ .pj-desc-toolbar { display: flex; align-items: center; gap: 8px; margin: -6px 0 6px; } .pj-desc-toolbar .pj-muted-sm { font-size: 11px; color: #9aa1a9; } .pj-desc-editor { min-height: 64px; max-height: 260px; overflow-y: auto; padding: 8px 10px; border: 1px solid #d8dce2; border-radius: 8px; font-size: 13.5px; font-family: inherit; line-height: 1.5; margin-bottom: 12px; background: #fff; } .pj-desc-editor:empty::before { content: attr(data-placeholder); color: #b7bdc5; } .pj-desc-editor img { max-width: 100%; border-radius: 6px; margin: 4px 0; display: block; } .pj-desc-editor[contenteditable="false"] { background: #f6f7f8; color: #9aa1a9; } /* ── 하위 업무(인라인) ── */ .pj-subtask-list { list-style: none; margin: 0 0 8px; padding: 0; } .pj-subtask-row { display: flex; align-items: center; gap: 6px; padding: 4px 2px; } .pj-subtask-row.is-done .pj-subtask-title { text-decoration: line-through; color: #9aa1a9; } .pj-subtask-row input[type="checkbox"] { width: auto; margin: 0; flex: 0 0 auto; } .pj-subtask-title { /* flex-basis 는 반드시 0(퍼센트 아님) — auto 로 두면 .pj-modal-card 의 공용 input[type=text] 규칙이 준 width:100% 로 넘어가 버려 한 줄 배치가 깨진다. */ flex: 1 1 0; width: auto !important; min-width: 0; border: 1px solid transparent !important; background: transparent; padding: 4px 6px !important; font-size: 13px !important; margin: 0 !important; } .pj-subtask-title:hover, .pj-subtask-title:focus { border-color: #d8dce2 !important; background: #fff; } .pj-subtask-assignee { flex: 0 0 auto; width: 110px !important; font-size: 12px !important; padding: 4px 6px !important; margin: 0 !important; } .pj-subtask-due { flex: 0 0 auto; width: 128px !important; font-size: 12px !important; padding: 4px 6px !important; margin: 0 !important; } .pj-subtask-form { display: flex; gap: 6px; } .pj-subtask-form input { flex: 1; padding: 7px 10px; border: 1px solid #d8dce2; border-radius: 8px; font-size: 13px; font-family: inherit; } /* ── 연결된 프로젝트(멀티호밍) 칩 ── */ .pj-link-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; } .pj-link-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 3px 6px 3px 10px; border-radius: 999px; background: #eef0f2; color: #333; } .pj-link-chip .pj-link-del { border: none; background: transparent; cursor: pointer; color: #9aa1a9; font-size: 13px; line-height: 1; padding: 2px; } .pj-link-chip .pj-link-del:hover { color: #c22b10; } .pj-link-form { display: flex; gap: 6px; align-items: center; } .pj-link-form select { flex: 1; padding: 7px 8px; border: 1px solid #d8dce2; border-radius: 8px; font-size: 13px; font-family: inherit; } /* ── 알림센터 ── */ .pj-inbox { list-style: none; margin: 0; padding: 0; } .pj-inbox-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 12px; border: 1px solid #eef0f2; border-radius: 12px; margin-bottom: 8px; cursor: pointer; background: #fff; } .pj-inbox-item:hover { border-color: #d8dce2; } .pj-inbox-item.is-unread { background: #f4f8ff; border-color: #d6e2fb; } .pj-inbox-icon { color: #4573d2; font-size: 22px; flex: 0 0 auto; } .pj-inbox-body { flex: 1; } .pj-inbox-title { font-size: 14px; font-weight: 600; } .pj-inbox-item.is-unread .pj-inbox-title::before { content: "●"; color: #4573d2; font-size: 9px; vertical-align: middle; margin-right: 6px; } .pj-inbox-sub { font-size: 12.5px; color: #525860; margin-top: 2px; } .pj-inbox-meta { font-size: 11px; color: #9aa1a9; margin-top: 4px; } .pj-inbox-go { align-self: center; padding: 4px 12px; font-size: 12px; }