Small tweak to tooltip colors.
This commit is contained in:
parent
e7ed10c9b8
commit
40ddfa59df
|
@ -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>`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue