1
0

fix(navigation): highlight saved filters in project view and prevent them from being dragged around

This commit is contained in:
kolaente
2023-06-07 20:58:43 +02:00
parent 7b92028e67
commit b50adaf4b5
4 changed files with 34 additions and 6 deletions

View File

@ -17,7 +17,12 @@
/>
<span v-if="project.isArchived" class="is-archived" >{{ $t('project.archived') }}</span>
<div class="project-title" aria-hidden="true">{{ project.title }}</div>
<div class="project-title" aria-hidden="true">
<span v-if="project.id < -1" class="saved-filter-icon icon">
<icon icon="filter"/>
</span>
{{ project.title }}
</div>
<BaseButton
class="project-button"
:aria-label="project.title"
@ -179,4 +184,9 @@ const projectStore = useProjectStore()
opacity: 1;
}
}
.saved-filter-icon {
color: var(--grey-300);
font-size: .75em;
}
</style>