timeslot headings style

This commit is contained in:
korelstar 2019-06-07 17:11:20 +02:00
parent ec992a0cd2
commit 1921e5ab91
2 changed files with 5 additions and 1 deletions

View File

@ -7,6 +7,10 @@
pointer-events: inherit;
}
#app-navigation > ul > li.app-navigation-caption.timeslot {
color: var(--color-text-maxcontrast);
}
/* icons for sidebar */
.nav-icon-files {
@include icon-color('folder', 'notes', $color-black);

View File

@ -41,6 +41,7 @@
/>
<AppNavigationItem v-if="category===null && item.timeslot"
:key="item.timeslot" :item="timeslotToItem(item.timeslot)"
class="timeslot"
/>
<NavigationNoteItem v-for="note in item.notes"
:key="note.id" :note="note"
@ -157,7 +158,6 @@ export default {
return {
caption: true,
text: timeslot,
classes: 'app-navigation-caption',
}
},