mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-24 15:20:21 +08:00
fix: allow scrolling of user list in share window
This commit is contained in:
parent
0e45132c05
commit
905b5d851e
@ -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>`;
|
||||||
|
|
||||||
|
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user