이용자 관리 버튼 레이아웃 수정
This commit is contained in:
@@ -5405,7 +5405,7 @@ select.form-control {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 14px;
|
gap: 14px;
|
||||||
flex-wrap: wrap;
|
flex-wrap: nowrap;
|
||||||
}
|
}
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
.list-table .list-table-row .row-actions {
|
.list-table .list-table-row .row-actions {
|
||||||
@@ -5421,6 +5421,7 @@ select.form-control {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 8px 16px;
|
padding: 8px 16px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
|
white-space: nowrap;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
@@ -7016,6 +7017,7 @@ select.form-control {
|
|||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
width: 135px;
|
width: 135px;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
.api-showcase .btn-all-apis {
|
.api-showcase .btn-all-apis {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -429,7 +429,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 14px;
|
gap: 14px;
|
||||||
flex-wrap: wrap;
|
flex-wrap: nowrap;
|
||||||
|
|
||||||
@media (max-width: $breakpoint-md) {
|
@media (max-width: $breakpoint-md) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
<div class="header-cell" style="flex: 1; min-width: 200px;">이메일 아이디</div>
|
<div class="header-cell" style="flex: 1; min-width: 200px;">이메일 아이디</div>
|
||||||
<div class="header-cell" style="width: 120px;">권한</div>
|
<div class="header-cell" style="width: 120px;">권한</div>
|
||||||
<div class="header-cell" style="width: 120px;">계정상태</div>
|
<div class="header-cell" style="width: 120px;">계정상태</div>
|
||||||
<div class="header-cell" style="width: 240px;">설정</div>
|
<div class="header-cell" style="width: 320px;">설정</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Table Body -->
|
<!-- Table Body -->
|
||||||
@@ -56,12 +56,11 @@
|
|||||||
<div class="row-cell" style="width: 120px;" data-label="계정상태" th:text="${user.userStatus.getDescription()}">
|
<div class="row-cell" style="width: 120px;" data-label="계정상태" th:text="${user.userStatus.getDescription()}">
|
||||||
활성
|
활성
|
||||||
</div>
|
</div>
|
||||||
<div class="row-cell row-actions" style="width: 240px;">
|
<div class="row-cell row-actions" style="width: 320px;">
|
||||||
<!-- Current User -->
|
<!-- Current User -->
|
||||||
<span class="user-current-badge" th:if="${user.id == currentUserId}">
|
<span class="user-current-badge" th:if="${user.id == currentUserId}">
|
||||||
<i class="fas fa-user-check"></i> 현재 사용자
|
<i class="fas fa-user-check"></i> 현재 사용자
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<!-- Action Buttons -->
|
<!-- Action Buttons -->
|
||||||
<th:block th:if="${user.roleCode != null and user.id != currentUserId}">
|
<th:block th:if="${user.roleCode != null and user.id != currentUserId}">
|
||||||
<button type="button" class="list-table-btn list-table-btn--default assign_manager"
|
<button type="button" class="list-table-btn list-table-btn--default assign_manager"
|
||||||
@@ -102,7 +101,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row-cell" style="width: 120px;" data-label="권한">이용자</div>
|
<div class="row-cell" style="width: 120px;" data-label="권한">이용자</div>
|
||||||
<div class="row-cell" style="width: 120px;" data-label="계정상태">초대중</div>
|
<div class="row-cell" style="width: 120px;" data-label="계정상태">초대중</div>
|
||||||
<div class="row-cell row-actions" style="width: 240px;">
|
<div class="row-cell row-actions" style="width: 320px;">
|
||||||
<button type="button" class="list-table-btn list-table-btn--secondary cancel_invitation"
|
<button type="button" class="list-table-btn list-table-btn--secondary cancel_invitation"
|
||||||
th:data-user-id="${user.id}"
|
th:data-user-id="${user.id}"
|
||||||
th:data-user-email="${user.maskedEmailAddr}">
|
th:data-user-email="${user.maskedEmailAddr}">
|
||||||
|
|||||||
Reference in New Issue
Block a user