- 초대 로직 변경: 이메일→휴대폰 기반 초대 전환 및 UI 업데이트
eapim-portal CI / build (push) Has been cancelled
eapim-portal Test / test (push) Has been cancelled

- 알림 수신 동의 추가: 초대/취소 시 알림 발송 옵션 탑재
- 관리자 기능 추가: 소속 제외 및 권한 조정 기능 구현
This commit is contained in:
Rinjae
2026-06-23 20:58:27 +09:00
parent 53468c3b83
commit 84d92fced9
26 changed files with 648 additions and 198 deletions
+31 -8
View File
@@ -5739,11 +5739,11 @@ select.form-control {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px;
height: 40px;
padding: 0 8px;
height: 30px;
white-space: nowrap;
border-radius: 8px;
font-size: 16px;
border-radius: 6px;
font-size: 13px;
font-weight: 400;
color: #000000;
border: none;
@@ -5776,6 +5776,13 @@ select.form-control {
.list-table-btn--secondary:hover {
background-color: rgb(187.8846153846, 197.2807692308, 234.8653846154);
}
.list-table-btn--danger {
background-color: #F8D7DA;
color: #B02A37;
}
.list-table-btn--danger:hover {
background-color: rgb(244.5521276596, 195.2978723404, 199.7755319149);
}
.table-pagination {
display: flex;
@@ -16644,16 +16651,15 @@ input[type=checkbox]:checked + .custom-checkbox {
.user-current-badge {
display: inline-flex;
height: 40px;
height: 30px;
align-items: center;
gap: 6px;
padding: 6px 12px;
padding: 0 8px;
background-color: rgba(167, 139, 250, 0.1);
color: #A78BFA;
border-radius: 6px;
font-size: 14px;
font-size: 13px;
font-weight: 500;
min-width: 116px;
}
@media (max-width: 768px) {
.user-current-badge {
@@ -17383,6 +17389,16 @@ input[type=checkbox]:checked + .custom-checkbox {
.dropdown-wrapper .dropdown-menu .dropdown-item + .dropdown-item {
border-top: 1px solid #eee;
}
.dropdown-wrapper .dropdown-menu .dropdown-item--danger {
color: #B02A37;
}
.dropdown-wrapper .dropdown-menu .dropdown-item--danger:hover {
background: #fdeaec;
color: #B02A37;
}
.dropdown-wrapper .dropdown-menu .dropdown-item--danger:active {
background: #f8d7da;
}
.dropdown-wrapper.open .dropdown-toggle {
background: rgba(0, 73, 180, 0.1);
color: #0049b4;
@@ -17845,6 +17861,13 @@ body.commission-print-page .btn-primary:hover {
font-weight: 700;
}
.terms-empty {
padding: 32px 24px;
text-align: center;
color: #8c959f;
font-size: 16px;
}
.terms-selector {
padding: 24px;
background: #F6F9FB;
File diff suppressed because one or more lines are too long