backup: save fixed office seatmap snapshot

This commit is contained in:
hyunho
2026-03-26 09:42:25 +09:00
parent e62a6a5458
commit 6f5e61ca1a
15 changed files with 2042 additions and 224 deletions

View File

@@ -262,7 +262,7 @@ body {
background: white;
width: 100%;
max-width: 650px;
padding: 35px;
padding: 24px 24px 20px;
border-radius: 20px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
position: relative;
@@ -318,6 +318,262 @@ body {
max-width: 1200px;
}
.member-photo-field {
display: flex;
flex-direction: column;
gap: 8px;
height: 100%;
}
.member-basic-top-row {
display: grid;
grid-template-columns: 220px minmax(0, 1fr);
gap: 12px;
align-items: stretch;
}
.member-detail-top-row {
width: 100%;
display: grid;
grid-template-columns: 140px minmax(0, 1fr);
gap: 20px;
align-items: start;
}
.member-detail-summary {
display: flex;
flex-direction: column;
gap: 12px;
min-width: 0;
}
.member-name-field {
min-width: 0;
}
.member-inline-info-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
margin-top: 10px;
}
.member-inline-info-grid-edit {
margin-top: 10px;
}
.member-inline-info-card {
min-width: 0;
display: flex;
flex-direction: column;
gap: 4px;
padding: 10px;
border: 1px solid #e2e8f0;
border-radius: 12px;
background: #f8fafc;
}
.member-inline-info-card label {
display: block;
font-size: 10px;
font-weight: 900;
color: #64748b;
}
.member-inline-info-card strong {
display: block;
font-size: 13px;
font-weight: 900;
color: #1e293b;
word-break: break-word;
}
.member-inline-info-card-full {
grid-column: 1 / -1;
}
.modal-form-grid {
align-items: start;
}
.modal-form-grid > .col-span-1,
.modal-form-grid > .col-span-2 {
min-width: 0;
}
.member-photo-upload-card {
display: flex;
gap: 16px;
align-items: center;
justify-content: center;
padding: 12px;
border: 1px solid #e2e8f0;
border-radius: 16px;
background: #f8fafc;
height: 100%;
min-height: 100%;
box-sizing: border-box;
}
.member-photo-upload-card-compact {
flex-direction: column;
align-items: center;
text-align: center;
justify-content: space-between;
}
.member-photo-preview-wrap {
flex: 0 0 auto;
}
.member-photo-preview {
width: 84px;
height: 84px;
border-radius: 9999px;
object-fit: cover;
border: 3px solid #e0e7ff;
background: #ffffff;
}
.member-photo-upload-controls {
min-width: 0;
display: flex;
flex-direction: column;
gap: 8px;
align-items: center;
}
.member-photo-file-label {
display: inline-flex;
align-items: center;
justify-content: center;
width: fit-content;
padding: 10px 14px;
border-radius: 10px;
background: #4f46e5;
color: #ffffff;
font-size: 12px;
font-weight: 800;
cursor: pointer;
}
.member-photo-file-label input {
display: none;
}
.member-photo-file-name {
font-size: 11px;
color: #334155;
word-break: break-all;
}
.seat-preview-card {
border: 1px solid #e2e8f0;
border-radius: 18px;
background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
overflow: hidden;
}
.seat-preview-head {
display: flex;
justify-content: space-between;
gap: 12px;
padding: 12px 14px 8px;
align-items: flex-start;
}
.seat-preview-head strong {
display: block;
font-size: 13px;
font-weight: 900;
color: #1e293b;
}
.seat-preview-head p {
margin: 4px 0 0;
font-size: 11px;
line-height: 1.5;
color: #64748b;
font-weight: 700;
}
.seat-preview-badge {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
padding: 6px 10px;
border-radius: 9999px;
background: #dbeafe;
color: #1d4ed8;
font-size: 11px;
font-weight: 900;
}
.seat-preview-badge-muted {
background: #e2e8f0;
color: #64748b;
}
.seat-preview-canvas {
margin: 0 14px 14px;
min-height: 220px;
border-radius: 16px;
border: 1px dashed #94a3b8;
background:
linear-gradient(135deg, rgba(255,255,255,0.9), rgba(224,231,255,0.95)),
repeating-linear-gradient(
0deg,
rgba(148,163,184,0.12),
rgba(148,163,184,0.12) 1px,
transparent 1px,
transparent 24px
),
repeating-linear-gradient(
90deg,
rgba(148,163,184,0.12),
rgba(148,163,184,0.12) 1px,
transparent 1px,
transparent 24px
);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.seat-preview-placeholder {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
color: #475569;
font-size: 12px;
font-weight: 900;
}
.seat-preview-placeholder-icon {
width: 52px;
height: 52px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 9999px;
background: rgba(79, 70, 229, 0.1);
color: #4338ca;
font-size: 24px;
}
@media (max-width: 720px) {
.member-basic-top-row {
grid-template-columns: 1fr;
}
.member-detail-top-row,
.member-inline-info-grid {
grid-template-columns: 1fr;
}
}
.list-table {
width: 100%;
border-collapse: collapse;