TK-FB(공장관리+신고)와 M-Project(부적합관리)를 3개 독립 시스템으로 분리하기 위한 전체 코드 구조 작성. - SSO 인증 서비스 (bcrypt + pbkdf2 이중 해시 지원) - System 1: 공장관리 (TK-FB 기반, 신고 코드 제거) - System 2: 신고 (TK-FB에서 workIssue 코드 추출) - System 3: 부적합관리 (M-Project 기반) - Gateway 포털 (path-based 라우팅) - 통합 docker-compose.yml 및 배포 스크립트 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
351 lines
5.4 KiB
CSS
351 lines
5.4 KiB
CSS
/* My Dashboard CSS */
|
|
|
|
.dashboard-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 2rem 1.5rem;
|
|
background: #f8f9fa;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.back-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.75rem 1.5rem;
|
|
background: rgba(255, 255, 255, 0.9);
|
|
color: #495057;
|
|
text-decoration: none;
|
|
border-radius: 0.5rem;
|
|
font-weight: 500;
|
|
margin-bottom: 1.5rem;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.back-button:hover {
|
|
background: white;
|
|
color: #007bff;
|
|
transform: translateY(-0.0625rem);
|
|
}
|
|
|
|
.page-header {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: 2rem;
|
|
color: #333;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.page-header p {
|
|
color: #666;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* 사용자 정보 카드 */
|
|
.user-info-card {
|
|
background: white;
|
|
border-radius: 0.75rem;
|
|
padding: 1.5rem;
|
|
margin-bottom: 2rem;
|
|
box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.info-row {
|
|
display: flex;
|
|
gap: 2rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.info-item {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.info-item .label {
|
|
font-weight: 600;
|
|
color: #555;
|
|
}
|
|
|
|
/* 연차 정보 위젯 */
|
|
.vacation-widget {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border-radius: 0.75rem;
|
|
padding: 2rem;
|
|
margin-bottom: 2rem;
|
|
box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.vacation-widget h2 {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.vacation-summary {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.vacation-summary .stat {
|
|
text-align: center;
|
|
}
|
|
|
|
.vacation-summary .label {
|
|
display: block;
|
|
font-size: 0.9rem;
|
|
opacity: 0.9;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.vacation-summary .value {
|
|
display: block;
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.progress-bar {
|
|
height: 1.5rem;
|
|
background: rgba(255,255,255,0.2);
|
|
border-radius: 0.75rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress {
|
|
height: 100%;
|
|
background: rgba(255,255,255,0.8);
|
|
transition: width 0.5s ease;
|
|
}
|
|
|
|
/* 캘린더 섹션 */
|
|
.calendar-section {
|
|
background: white;
|
|
border-radius: 0.75rem;
|
|
padding: 2rem;
|
|
margin-bottom: 2rem;
|
|
box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.calendar-section h2 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.calendar-controls {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.calendar-controls button {
|
|
background: #667eea;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
padding: 0.5rem 1rem;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.calendar-controls button:hover {
|
|
background: #764ba2;
|
|
}
|
|
|
|
.calendar-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(7, 1fr);
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.calendar-header {
|
|
text-align: center;
|
|
font-weight: 600;
|
|
padding: 0.5rem;
|
|
background: #f8f9fa;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
.calendar-day {
|
|
aspect-ratio: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 0.25rem;
|
|
background: #f8f9fa;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.calendar-day:hover:not(.empty) {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.calendar-day.empty {
|
|
background: transparent;
|
|
}
|
|
|
|
.calendar-day.normal {
|
|
background: #d4edda;
|
|
color: #155724;
|
|
}
|
|
|
|
.calendar-day.late {
|
|
background: #fff3cd;
|
|
color: #856404;
|
|
}
|
|
|
|
.calendar-day.vacation {
|
|
background: #d1ecf1;
|
|
color: #0c5460;
|
|
}
|
|
|
|
.calendar-day.absent {
|
|
background: #f8d7da;
|
|
color: #721c24;
|
|
}
|
|
|
|
.calendar-legend {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1.5rem;
|
|
margin-top: 1.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.calendar-legend span {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.dot {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.dot.normal {
|
|
background: #d4edda;
|
|
}
|
|
|
|
.dot.late {
|
|
background: #fff3cd;
|
|
}
|
|
|
|
.dot.vacation {
|
|
background: #d1ecf1;
|
|
}
|
|
|
|
.dot.absent {
|
|
background: #f8d7da;
|
|
}
|
|
|
|
/* 근무 시간 통계 */
|
|
.work-hours-stats {
|
|
background: white;
|
|
border-radius: 0.75rem;
|
|
padding: 2rem;
|
|
margin-bottom: 2rem;
|
|
box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
.stat-card {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 1.5rem;
|
|
border-radius: 0.75rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-card .label {
|
|
display: block;
|
|
font-size: 0.9rem;
|
|
opacity: 0.9;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.stat-card .value {
|
|
display: block;
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* 최근 작업 보고서 */
|
|
.recent-reports {
|
|
background: white;
|
|
border-radius: 0.75rem;
|
|
padding: 2rem;
|
|
margin-bottom: 2rem;
|
|
box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.recent-reports h2 {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.report-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1rem;
|
|
border-bottom: 1px solid #e9ecef;
|
|
}
|
|
|
|
.report-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.report-item .date {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.report-item .project {
|
|
flex: 1;
|
|
margin: 0 1rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.report-item .hours {
|
|
color: #667eea;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.empty-message {
|
|
text-align: center;
|
|
color: #999;
|
|
padding: 2rem;
|
|
}
|
|
|
|
/* 반응형 */
|
|
@media (max-width: 768px) {
|
|
.dashboard-container {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.vacation-summary {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.calendar-grid {
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.calendar-legend {
|
|
gap: 0.75rem;
|
|
}
|
|
}
|