feat: enkel content scrollable, niet titels, knoppen, ...
This commit is contained in:
parent
98ac8ab5a7
commit
7d80c8bdc1
2 changed files with 28 additions and 14 deletions
|
@ -34,19 +34,21 @@
|
|||
</template>
|
||||
</v-list-item>
|
||||
<v-divider></v-divider>
|
||||
<v-expansion-panels v-model="expanded">
|
||||
<using-query-result
|
||||
:query-result="allLearningPathsResult"
|
||||
v-slot="learningPaths: { data: LearningPath[] }"
|
||||
>
|
||||
<DiscussionSideBarElement
|
||||
v-for="learningPath in learningPaths.data"
|
||||
:path="learningPath"
|
||||
:activeObjectId="'' as string"
|
||||
:key="learningPath.hruid"
|
||||
/>
|
||||
</using-query-result>
|
||||
</v-expansion-panels>
|
||||
<div class="nav-scroll-area">
|
||||
<v-expansion-panels v-model="expanded">
|
||||
<using-query-result
|
||||
:query-result="allLearningPathsResult"
|
||||
v-slot="learningPaths: { data: LearningPath[] }"
|
||||
>
|
||||
<DiscussionSideBarElement
|
||||
v-for="learningPath in learningPaths.data"
|
||||
:path="learningPath"
|
||||
:activeObjectId="'' as string"
|
||||
:key="learningPath.hruid"
|
||||
/>
|
||||
</using-query-result>
|
||||
</v-expansion-panels>
|
||||
</div>
|
||||
</div>
|
||||
</v-navigation-drawer>
|
||||
<div class="control-bar-above-content">
|
||||
|
@ -67,4 +69,10 @@
|
|||
padding-top: 2%;
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
.nav-scroll-area {
|
||||
overflow-y: auto;
|
||||
flex-grow: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -229,7 +229,7 @@
|
|||
</template>
|
||||
</v-list-item>
|
||||
<v-divider></v-divider>
|
||||
<div>
|
||||
<div class="nav-scroll-area">
|
||||
<using-query-result
|
||||
:query-result="learningObjectListQueryResult"
|
||||
v-slot="learningObjects: { data: LearningObject[] }"
|
||||
|
@ -417,4 +417,10 @@
|
|||
.discussion-link a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.nav-scroll-area {
|
||||
overflow-y: auto;
|
||||
flex-grow: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue