Skip to content

Commit

Permalink
Merge pull request #3797 from nextcloud/fix/noid/actions-scroll-border
Browse files Browse the repository at this point in the history
Show round corners for scrolling NcActions
  • Loading branch information
raimund-schluessler committed Feb 20, 2023
2 parents 10a63d4 + a6482aa commit f688b22
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/components/NcActions/NcActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1183,10 +1183,15 @@ export default {
<style lang="scss">
// We overwrote the popover base class, so we can style
// the popover__inner for actions only.
.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__inner {
.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper {
border-radius: var(--border-radius-large);
padding: 4px;
max-height: calc(50vh - 16px);
overflow: auto;
overflow:hidden;
.v-popper__inner {
border-radius: var(--border-radius-large);
padding: 4px;
max-height: calc(50vh - 16px);
overflow: auto;
}
}
</style>

0 comments on commit f688b22

Please sign in to comment.