- monthly_worker_status 조회 시 GROUP BY로 중복 데이터 합산 - 작업보고서 삭제 권한을 그룹장 이상으로 제한 (admin, system, group_leader) - 중복 데이터 정리를 위한 마이그레이션 SQL 추가 (009_fix_duplicate_monthly_status.sql) - synology_deployment 버전에도 동일 수정 적용
50 lines
937 B
CSS
50 lines
937 B
CSS
body {
|
|
font-family: 'Malgun Gothic', sans-serif;
|
|
margin: 0;
|
|
background: #f0f2f5;
|
|
}
|
|
.main-layout {
|
|
display: flex;
|
|
}
|
|
#sidebar-container {
|
|
width: 250px;
|
|
background: #1a237e;
|
|
color: white;
|
|
min-height: 100vh;
|
|
}
|
|
#content-container {
|
|
flex: 1;
|
|
padding: 30px;
|
|
}
|
|
h1, h2 {
|
|
color: #1976d2;
|
|
}
|
|
a {
|
|
color: #1976d2;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Admin 권한 배지 스타일 */
|
|
.admin-badge {
|
|
background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
|
|
color: white;
|
|
font-size: 0.7rem;
|
|
font-weight: bold;
|
|
padding: 2px 6px;
|
|
border-radius: 10px;
|
|
margin-left: 8px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
box-shadow: 0 2px 4px rgba(255,107,53,0.3);
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.admin-only-link {
|
|
position: relative;
|
|
}
|
|
|
|
.admin-only-link:hover .admin-badge {
|
|
background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
|
|
box-shadow: 0 3px 6px rgba(255,107,53,0.4);
|
|
} |