feat(ui): 1 modal to manage shares (users & public share)
fix(share): ensure Authz parent is created/updated on publicShare create/update fix(ShareModal): do not show Token (public) grants in People section
This commit is contained in:
@@ -190,6 +190,9 @@
|
||||
color: var(--color-text-heading);
|
||||
margin: 0;
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.modal-close-btn {
|
||||
@@ -307,3 +310,20 @@
|
||||
.modal-footer .btn-primary:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* ── Panel mode (ShareModal, etc.) ─────────────────────────────────────────── */
|
||||
/* Wider, taller container; body becomes a zero-padding scrollable slot. */
|
||||
|
||||
.modal-container--panel {
|
||||
width: 520px;
|
||||
max-width: 96vw;
|
||||
max-height: 88vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.modal-container--panel .modal-body {
|
||||
padding: 0;
|
||||
overflow-y: auto;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user