Skip to content

Commit

Permalink
Merge pull request #3359 from nextcloud/fix/icon-opacity
Browse files Browse the repository at this point in the history
Fix icon opacity for property actions
  • Loading branch information
GretaD authored May 2, 2023
2 parents e13f714 + 2148fa7 commit 1d6cceb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/components/Properties/PropertyActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,13 @@ export default {
},
}
</script>
<style lang="scss" scoped>
.material-design-icon {
opacity: 0.8;

&:hover,
&:focus {
opacity: 1 !important;
}
}
</style>
5 changes: 5 additions & 0 deletions src/components/Properties/PropertyTitleIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,8 @@ export default {
},
}
</script>
<style lang="scss" scoped>
.material-design-icon {
opacity: 0.8;
}
</style>

0 comments on commit 1d6cceb

Please sign in to comment.