+
+ {{ filter.description }}
+
@@ -218,6 +225,15 @@
outline: none;
padding: 0 !important;
margin: 0;
+
+ .tainacan-help-tooltip-trigger {
+ font-size: 1.188em;
+
+ .icon {
+ margin-right: 0px;
+ margin-left: 6px;
+ }
+ }
}
}
@@ -227,6 +243,13 @@
width: 100%;
}
+ .filter-description-help-info {
+ font-size: 0.75em;
+ color: var(--tainacan-info-color);
+ margin-top: -0.25em;
+ margin-bottom: 0.75em;
+ }
+
.taginput-container {
border-radius: var(--tainacan-input-border-radius, 1px) !important;
box-shadow: none !important;
diff --git a/src/views/admin/components/other/help-button.vue b/src/views/admin/components/other/help-button.vue
index 969233179..e95f020c7 100644
--- a/src/views/admin/components/other/help-button.vue
+++ b/src/views/admin/components/other/help-button.vue
@@ -30,8 +30,8 @@ export default {
},
computed: {
getHelperTooltipContent() {
- return `` + ((this.message != '' && this.message != undefined) ? this.message : this.$i18n.get('info_no_description_provided')) + `
`;
+ return ( this.title ? ( `` + ((this.message != '' && this.message != undefined) ? this.message : this.$i18n.get('info_no_description_provided')) + `
`;
}
}
}
@@ -39,7 +39,7 @@ export default {