여러 엑셀 파일 업로드 시 업로드 날짜 지정 기능 및 낱개 출고 자동분석 다운로드 기능 구현
This commit is contained in:
+150
-1
@@ -1835,4 +1835,153 @@ input[type="checkbox"] {
|
||||
.nav-profile-area .btn-logout-text span { display: none; }
|
||||
}
|
||||
|
||||
/* Force UI Update */
|
||||
/* ==========================================================================
|
||||
Upload Date Picker Custom Calendar Styles
|
||||
========================================================================== */
|
||||
|
||||
#upload-date-modal .modal-content {
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.4);
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.modal-instruction-text {
|
||||
font-size: 0.88rem;
|
||||
color: #64748b;
|
||||
margin-bottom: 1.25rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.custom-calendar-picker {
|
||||
border: 1px solid #e2e8f0;
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
background: #ffffff;
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.calendar-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.calendar-nav .icon-btn {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 50%;
|
||||
border: none;
|
||||
background: #f1f5f9;
|
||||
color: #475569;
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.calendar-nav .icon-btn:hover {
|
||||
background: #e2e8f0;
|
||||
color: #0f172a;
|
||||
}
|
||||
|
||||
.calendar-title {
|
||||
font-size: 0.98rem;
|
||||
font-weight: 700;
|
||||
color: #1e293b;
|
||||
}
|
||||
|
||||
.calendar-weekdays {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
font-size: 0.78rem;
|
||||
color: #64748b;
|
||||
margin-bottom: 0.5rem;
|
||||
border-bottom: 1px solid #f1f5f9;
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.calendar-weekdays .weekday.holiday {
|
||||
color: #dc2626; /* Sunday red */
|
||||
}
|
||||
|
||||
.calendar-weekdays .weekday.sat {
|
||||
color: #2563eb; /* Saturday blue */
|
||||
}
|
||||
|
||||
.calendar-days {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
row-gap: 0.35rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.calendar-day {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin: 0 auto;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
color: #334155;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
transition: all 0.15s ease;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.calendar-day:hover:not(.other-month):not(.selected) {
|
||||
background-color: #f1f5f9;
|
||||
}
|
||||
|
||||
.calendar-day.other-month {
|
||||
color: #cbd5e1;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.calendar-day.sat:not(.other-month):not(.selected) {
|
||||
color: #2563eb; /* Saturday blue */
|
||||
}
|
||||
|
||||
.calendar-day.holiday:not(.other-month):not(.selected) {
|
||||
color: #dc2626; /* Sunday / Korean holiday red */
|
||||
}
|
||||
|
||||
.calendar-day.selected {
|
||||
background-color: var(--primary-color) !important;
|
||||
color: #ffffff !important;
|
||||
font-weight: 700;
|
||||
transform: scale(1.1);
|
||||
box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
|
||||
}
|
||||
|
||||
.selected-date-preview {
|
||||
background: #f8fafc;
|
||||
border: 1px dashed #cbd5e1;
|
||||
border-radius: 8px;
|
||||
padding: 0.75rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
.selected-date-preview span {
|
||||
color: #64748b;
|
||||
}
|
||||
|
||||
.selected-date-preview strong {
|
||||
color: var(--primary-color);
|
||||
font-weight: 700;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user