We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e95ec0 commit a113fb2Copy full SHA for a113fb2
apps/files/src/views/Navigation.vue
@@ -10,7 +10,8 @@
10
<NcAppNavigationSearch v-model="searchQuery" :label="t('files', 'Filter filenames…')" />
11
</template>
12
<template #default>
13
- <NcAppNavigationList :aria-label="t('files', 'Views')">
+ <NcAppNavigationList class="files-navigation__list"
14
+ :aria-label="t('files', 'Views')">
15
<FilesNavigationItem :views="viewMap" />
16
</NcAppNavigationList>
17
@@ -225,6 +226,10 @@ export default defineComponent({
225
226
}
227
228
.files-navigation {
229
+ &__list {
230
+ height: 100%; // Fill all available space for sticky views
231
+ }
232
+
233
:deep(.app-navigation__content > ul.app-navigation__list) {
234
will-change: scroll-position;
235
0 commit comments