UX: [vue] Fix picto color in document actions dropdown

This commit is contained in:
Mathieu Jaumotte 2023-05-23 16:30:26 +02:00
parent 9d1e54d3a0
commit 5931b2f709
3 changed files with 15 additions and 0 deletions

View File

@ -44,3 +44,9 @@ async function download_and_open(event: Event): Promise<void> {
}
</script>
<style scoped lang="sass">
i.fa::before {
color: var(--bs-dropdown-link-hover-color);
}
</style>

View File

@ -52,3 +52,9 @@ async function download_and_open(event: Event): Promise<void> {
}
}
</script>
<style scoped lang="sass">
i.fa::before {
color: var(--bs-dropdown-link-hover-color);
}
</style>

View File

@ -40,5 +40,8 @@ async function beforeLeave(event: Event): Promise<true> {
</script>
<style scoped lang="sass">
i.fa::before {
color: var(--bs-dropdown-link-hover-color);
}
</style>