summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgreta <gretadoci@gmail.com>2023-05-02 18:33:11 +0200
committergreta <gretadoci@gmail.com>2023-05-02 18:33:11 +0200
commit2148fa7c72925cf4978a984c4cd7ee6d708f6efe (patch)
tree33bfbcbb3f40e5138b612f65fe555ac8b115c4a0
parente13f714fa9efd9f644c4efb3ce3b18d2f9956d17 (diff)
Fix icon opacity for property actions
Signed-off-by: greta <gretadoci@gmail.com>
-rw-r--r--src/components/Properties/PropertyActions.vue10
-rw-r--r--src/components/Properties/PropertyTitleIcon.vue5
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>