diff options
author | Greta <gretadoci@gmail.com> | 2023-05-02 20:00:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-02 20:00:05 +0200 |
commit | 1d6cceb9b7a4cb8f05abcc97d17b7ba1cd64df67 (patch) | |
tree | 33bfbcbb3f40e5138b612f65fe555ac8b115c4a0 | |
parent | e13f714fa9efd9f644c4efb3ce3b18d2f9956d17 (diff) | |
parent | 2148fa7c72925cf4978a984c4cd7ee6d708f6efe (diff) |
Merge pull request #3359 from nextcloud/fix/icon-opacityv5.3.0-alpha1
Fix icon opacity for property actions
-rw-r--r-- | src/components/Properties/PropertyActions.vue | 10 | ||||
-rw-r--r-- | src/components/Properties/PropertyTitleIcon.vue | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/components/Properties/PropertyActions.vue b/src/components/Properties/PropertyActions.vue index 6a3ce25d..2d05b355 100644 --- a/src/components/Properties/PropertyActions.vue +++ b/src/components/Properties/PropertyActions.vue @@ -70,3 +70,13 @@ export default { }, } </script> +<style lang="scss" scoped> +.material-design-icon { + opacity: 0.8; + + &:hover, + &:focus { + opacity: 1 !important; + } +} +</style> diff --git a/src/components/Properties/PropertyTitleIcon.vue b/src/components/Properties/PropertyTitleIcon.vue index e33f7e13..46794308 100644 --- a/src/components/Properties/PropertyTitleIcon.vue +++ b/src/components/Properties/PropertyTitleIcon.vue @@ -110,3 +110,8 @@ export default { }, } </script> +<style lang="scss" scoped> +.material-design-icon { + opacity: 0.8; +} +</style> |