Skip to content

Commit 3214c49

Browse files
authored
Merge pull request #5551 from nextcloud-libraries/fix/noid/ncselect-limit-max-height
style(NcSelect): restrict max-height to prevent overflow by component
2 parents e4226cb + 471cfaf commit 3214c49

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/components/NcSelect/NcSelect.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,7 +1218,15 @@ body {
12181218
}
12191219
12201220
.vs__dropdown-toggle {
1221+
position: relative;
1222+
max-height: 100px;
12211223
padding: 0;
1224+
overflow-y: auto;
1225+
}
1226+
1227+
.vs__actions {
1228+
position: sticky;
1229+
top: 0;
12221230
}
12231231
12241232
.vs__clear {

0 commit comments

Comments
 (0)