fix: allow scrolling of user list in share window

This commit is contained in:
jelveh 2024-11-18 10:40:15 -08:00
parent 0e45132c05
commit 905b5d851e
2 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,7 @@ async function UIWindowShare(items, recipient){
// Already Shared With // Already Shared With
// ------------------------------------------------ // ------------------------------------------------
h += `<p style="font-size: 14px; margin-bottom: 0px; color: #303d49; text-shadow: 1px 1px white;">People with access</p>`; h += `<p style="font-size: 14px; margin-bottom: 0px; color: #303d49; text-shadow: 1px 1px white;">People with access</p>`;
h += `<div class="share-recipients">`; h += `<div class="share-recipients hide-scrollbar">`;
h += `</div>`; h += `</div>`;
h += `</div>`; h += `</div>`;

View File

@ -2174,6 +2174,7 @@ label {
.share-recipients { .share-recipients {
max-height: 200px; max-height: 200px;
overflow: hidden; overflow: hidden;
overflow-y: scroll;
} }
.ui-menu { .ui-menu {