Skip to content

Commit 905b5d8

Browse files
committed
fix: allow scrolling of user list in share window
1 parent 0e45132 commit 905b5d8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/gui/src/UI/UIWindowShare.js

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

src/gui/src/css/style.css

+1
Original file line numberDiff line numberDiff line change
@@ -2174,6 +2174,7 @@ label {
21742174
.share-recipients {
21752175
max-height: 200px;
21762176
overflow: hidden;
2177+
overflow-y: scroll;
21772178
}
21782179

21792180
.ui-menu {

0 commit comments

Comments
 (0)