Small tweak to tooltip colors.

This commit is contained in:
mateuswetah 2024-06-14 14:13:11 -03:00
parent e7ed10c9b8
commit 40ddfa59df
2 changed files with 5 additions and 4 deletions

View File

@ -30,8 +30,8 @@ export default {
}, },
computed: { computed: {
getHelperTooltipContent() { getHelperTooltipContent() {
return ( this.title ? ( `<p style="font-weight: bold">` + this.title + `</p>` ) : '' ) + return ( this.title ? ( `<p style="font-weight: bold; color: var(--tainacan-secondary);">` + this.title + `</p>` ) : '' ) +
`<p>` + ((this.message != '' && this.message != undefined) ? this.message : this.$i18n.get('info_no_description_provided')) + `</p>`; `<p style="color: var(--tainacan-info-color);">` + ((this.message != '' && this.message != undefined) ? this.message : this.$i18n.get('info_no_description_provided')) + `</p>`;
} }
} }
} }

View File

@ -316,7 +316,8 @@
.help-tooltip-header { .help-tooltip-header {
padding: 0.8em 0.8em 0em 0.8em; padding: 0.8em 0.8em 0em 0.8em;
h5 { h5,
p {
font-size: 0.875em !important; font-size: 0.875em !important;
font-weight: bold; font-weight: bold;
color: var(--tainacan-blue5); color: var(--tainacan-blue5);
@ -335,7 +336,7 @@
overflow: visible !important; overflow: visible !important;
max-height: 100% !important; max-height: 100% !important;
line-height: normal; line-height: normal;
color: var(--tainacan-blue5); color: var(--tainacan-info-color);
} }
} }
} }