Files
MH-DashBoard-organization/legacy/static/organization.css
2026-03-25 12:00:24 +09:00

776 lines
13 KiB
CSS

body {
margin: 0;
background: #f1f5f9;
font-family: 'Pretendard', sans-serif;
color: #1e293b;
overflow-x: hidden;
}
.org-canvas {
padding: 20px 20px 40px;
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
width: 100%;
position: relative;
}
.dept-section {
width: 100%;
max-width: 1900px;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
position: relative;
}
.dept-box {
width: fit-content;
min-width: 320px;
background: white;
border: 1px solid #cbd5e1;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
position: relative;
z-index: 20;
margin-bottom: 40px;
}
.dept-header {
background: #1e293b;
color: white;
padding: 12px;
text-align: center;
font-size: 17px;
font-weight: 900;
border-radius: 10px;
}
.dept-header.has-members {
border-radius: 10px 10px 0 0;
border-bottom: none;
margin-bottom: 15px;
}
.node-group {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
position: relative;
gap: 12px;
}
.node-item {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.box {
width: fit-content;
min-width: 112px;
background: white;
border: 1px solid #cbd5e1;
border-radius: 8px;
padding: 6px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
position: relative;
z-index: 10;
margin-bottom: 40px;
}
.box-name {
font-size: 13px;
font-weight: 800;
color: #475569;
text-align: center;
border-bottom: 1px solid #f1f5f9;
padding-bottom: 4px;
margin-bottom: 6px;
word-break: keep-all;
}
.box-level-그룹 {
min-width: 250px;
}
.box-level-그룹 .box-name {
background: #3f516a;
color: #ffffff;
padding: 8px;
border-radius: 6px 6px 0 0;
margin: -6px -6px 8px -6px;
border-bottom: none;
}
.box-level-디비전 {
min-width: 150px;
}
.box-level-디비전 .box-name {
background: #869fb7;
color: #ffffff;
padding: 8px;
border-radius: 6px 6px 0 0;
margin: -6px -6px 8px -6px;
border-bottom: none;
}
.box-level-팀 {
width: auto;
min-width: 120px;
}
.box-team {
width: auto;
min-width: 120px;
}
.member-grid {
display: grid;
grid-template-rows: repeat(10, auto);
grid-auto-flow: column;
gap: 3px;
column-gap: 8px;
}
.cell-label {
grid-column: span 1;
background: #e2e8f0;
color: #475569;
font-size: 10px;
font-weight: 900;
text-align: center;
padding: 3px;
border-radius: 4px;
margin: 2px 0;
height: fit-content;
}
.spacer-box {
width: 100px;
height: 26px;
visibility: hidden;
}
.member-card {
width: 100px;
padding: 4px 6px;
border-radius: 4px;
font-size: 11.5px;
text-align: left;
border: 1px solid #f1f5f9;
border-left: 4px solid #94a3b8;
background: #f8fafc;
cursor: pointer;
transition: all 0.2s ease-in-out;
display: flex;
flex-direction: column;
position: relative;
}
.member-card.full-width {
width: 100% !important;
}
.member-card:hover {
background: white;
border-color: #4f46e5;
box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
transform: translateY(-2px);
z-index: 50;
}
.drop-left::before {
content: '';
position: absolute;
left: -6px;
top: 0;
width: 4px;
height: 100%;
background: #4f46e5;
border-radius: 4px;
z-index: 20;
}
.drop-right::after {
content: '';
position: absolute;
right: -6px;
top: 0;
width: 4px;
height: 100%;
background: #4f46e5;
border-radius: 4px;
z-index: 20;
}
.co-삼안 {
border-left-color: #ffb366 !important;
}
.co-한맥 {
border-left-color: #ef4444 !important;
}
.co-피티씨 {
border-left-color: #a855f7 !important;
}
.co-바론 {
border-left-color: #3b82f6 !important;
}
.m-top {
display: flex;
align-items: baseline;
gap: 4px;
}
.m-name {
font-weight: 900;
color: #1e293b;
font-size: 12px;
}
.m-rank {
color: #94a3b8;
font-size: 8px;
font-weight: 500;
margin-left: auto;
}
.m-role {
color: #4f46e5;
font-weight: 800;
font-size: 8.5px;
margin-left: 3px;
}
#modal {
position: fixed;
inset: 0;
background: rgba(15, 23, 42, 0.75);
backdrop-filter: blur(6px);
z-index: 2000;
display: none;
align-items: center;
justify-content: center;
}
.modal-content {
background: white;
width: 100%;
max-width: 650px;
padding: 35px;
border-radius: 20px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
position: relative;
z-index: 2010;
}
#last-updated {
z-index: 4000;
}
@media print {
@page {
size: A3 landscape;
margin: 10mm;
}
body {
background: white !important;
-webkit-print-color-adjust: exact !important;
print-color-adjust: exact !important;
}
.top-wrap,
.search-container,
.tab-container,
.stat-section,
.fab-container,
.admin-mode-btn,
#last-updated,
.admin-mode-btn {
display: none !important;
}
.main-content {
padding: 0 !important;
margin: 0 !important;
overflow: visible !important;
width: 100% !important;
}
.dept-container {
page-break-inside: avoid;
margin-bottom: 20px !important;
}
.member-card {
box-shadow: none !important;
border: 1px solid #e2e8f0 !important;
}
}
.modal-content.wide {
max-width: 1200px;
}
.list-table {
width: 100%;
border-collapse: collapse;
font-size: 11px;
}
.list-table th {
background: #f8fafc;
color: #64748b;
font-weight: 800;
padding: 10px;
border: 1px solid #e2e8f0;
position: sticky;
top: 0;
z-index: 20;
text-align: center;
}
.list-table td {
padding: 8px 10px;
border: 1px solid #e2e8f0;
text-align: center;
background: white;
vertical-align: middle;
}
.col-name {
width: 90px;
}
.col-rank {
width: 80px;
}
.col-pos {
width: 80px;
}
.col-unit-sm {
width: 70px;
}
.col-unit-lg {
width: 100px;
}
.col-corp {
width: 110px;
}
.col-action {
width: 90px;
}
.list-header-row {
color: #334155;
font-weight: 800;
cursor: pointer;
user-select: none;
border-bottom: 1px solid #f1f5f9;
}
.list-header-row td {
font-size: 13px;
text-align: left !important;
padding: 10px 15px !important;
}
.list-header-row.lvl-0 td {
background: #1e293b !important;
color: white !important;
font-size: 13.5px;
font-weight: 900;
}
.list-header-row.lvl-1 td {
background: #3f516a !important;
color: white !important;
}
.list-header-row.lvl-2 td {
background: #869fb7 !important;
color: white !important;
}
.list-header-row.lvl-3 td {
background: #4f46e5 !important;
color: white !important;
}
.list-header-row.lvl-4 td {
background: #e2e8f0 !important;
color: #475569 !important;
}
.list-header-row:hover {
filter: brightness(1.1);
}
.collapse-icon {
margin-right: 8px;
transition: transform 0.2s;
display: inline-block;
}
.collapsed .collapse-icon {
transform: rotate(-90deg);
}
.hidden-row {
display: none !important;
}
.list-table tr:hover td {
background: #f8fafc;
}
.list-table tr.dragging {
opacity: 0.5;
background: #eef2ff;
}
.list-search-target td {
background: #eff6ff !important;
border-top: 2px solid #3b82f6;
border-bottom: 2px solid #3b82f6;
}
.list-action-btn {
padding: 4px 8px;
border-radius: 4px;
font-size: 10px;
font-weight: 800;
cursor: pointer;
transition: all 0.2s;
}
.btn-edit {
background: #eef2ff;
color: #4f46e5;
}
.btn-delete {
background: #fef2f2;
color: #ef4444;
}
.fab-container {
position: fixed;
bottom: 30px;
right: 30px;
display: flex;
flex-direction: column-reverse;
align-items: center;
gap: 15px;
z-index: 5000;
}
.fab-main {
width: 60px;
height: 60px;
background: #4f46e5;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
cursor: pointer;
transition: all 0.3s;
border: none;
}
.fab-menu {
display: flex;
flex-direction: column-reverse;
align-items: center;
gap: 10px;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.3s;
}
.fab-container.active .fab-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.fab-container.active .fab-main {
transform: rotate(45deg);
background: #4338ca;
}
.fab-sub {
width: 50px;
height: 50px;
background: white;
color: #4f46e5;
border: 2px solid #4f46e5;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.2s;
position: relative;
}
.fab-sub:hover {
background: #4f46e5;
color: white;
transform: scale(1.1);
}
.fab-sub::after {
content: attr(data-label);
position: absolute;
right: 65px;
background: #1e293b;
color: white;
padding: 4px 10px;
border-radius: 6px;
font-size: 11px;
font-weight: 800;
white-space: nowrap;
opacity: 0;
transition: 0.2s;
pointer-events: none;
}
.fab-sub:hover::after {
opacity: 1;
right: 75px;
}
.clickable-title {
cursor: pointer;
transition: color 0.2s;
position: relative;
}
.clickable-title:hover {
color: #818cf8 !important;
text-decoration: underline;
}
.search-section {
position: fixed;
top: 18px;
left: 25px;
background: rgba(255, 255, 255, 0.9);
border-radius: 12px;
padding: 10px 18px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
border: 1px solid #e2e8f0;
z-index: 1010;
display: flex;
align-items: center;
gap: 12px;
backdrop-filter: blur(8px);
transition: all 0.3s;
}
.search-input {
border: none;
outline: none;
background: transparent;
font-size: 13px;
font-weight: 700;
color: #1e293b;
width: 180px;
}
.search-icon {
color: #64748b;
display: flex;
align-items: center;
}
.stats-section {
position: fixed;
top: 18px;
right: 25px;
width: 400px;
background: rgba(255, 255, 255, 0.9);
border-radius: 12px;
padding: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 1px solid #e2e8f0;
z-index: 1010;
backdrop-filter: blur(8px);
transition: all 0.3s;
}
.stats-table {
width: 100%;
border-collapse: collapse;
font-size: 11px;
border-radius: 8px;
overflow: hidden;
border-style: hidden;
box-shadow: 0 0 0 1px #e2e8f0;
}
.stats-table th {
background: #f8fafc;
color: #64748b;
font-weight: 800;
padding: 8px 4px;
border: 1px solid #e2e8f0;
text-align: center;
}
.stats-table td {
padding: 8px 4px;
border: 1px solid #e2e8f0;
text-align: center;
font-weight: 700;
color: #1e293b;
}
.stats-table .row-label {
background: #f8fafc;
color: #475569;
font-weight: 800;
width: 80px;
}
.stats-table .total-cell {
background: #eff6ff;
color: #2563eb;
font-weight: 900;
}
.sum-row {
background: #f1f5f9;
}
.sum-row td {
font-weight: 900 !important;
color: #0f172a !important;
}
@keyframes target-pulse {
0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); transform: scale(1); }
50% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); transform: scale(1.05); }
100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); transform: scale(1); }
}
.search-target {
animation: target-pulse 1.5s ease-in-out 2;
position: relative;
z-index: 1000 !important;
border-color: #4f46e5 !important;
}
.admin-mode-btn {
position: fixed;
bottom: 37.5px;
right: 105px;
z-index: 5001;
width: 45px;
height: 45px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(4px);
border: 1px solid #e2e8f0;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: all 0.3s;
cursor: pointer;
}
.admin-mode-btn::after {
content: attr(data-label);
position: absolute;
bottom: 55px;
right: 0;
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 10px;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: all 0.2s;
pointer-events: none;
}
.admin-mode-btn:hover::after {
opacity: 1;
visibility: visible;
}
.admin-mode-btn.is-admin {
background: #4f46e5;
border-color: #4f46e5;
box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}
.admin-mode-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.dept-tabs-container {
display: flex;
gap: 8px;
margin-top: 15px;
padding: 5px 0;
overflow-x: auto;
scrollbar-width: none;
}
.dept-tabs-container::-webkit-scrollbar {
display: none;
}
.dept-tab {
padding: 6px 14px;
background: white;
border: 1px solid #e2e8f0;
border-radius: 20px;
font-size: 11px;
font-weight: 800;
color: #64748b;
cursor: pointer;
white-space: nowrap;
transition: all 0.2s;
}
.dept-tab:hover {
border-color: #cbd5e1;
background: #f8fafc;
}
.dept-tab.active {
background: #4f46e5;
color: white;
border-color: #4f46e5;
box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}