summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>