investigate progress.

This commit is contained in:
2024-10-14 23:21:48 -07:00
parent 502a05bdcd
commit ca5d90b17f
11 changed files with 119 additions and 80 deletions

View File

@@ -264,4 +264,7 @@
.ct-series-e .ct-bar {
stroke: #9c27b0;
fill: #9c27b0;
}
[x-cloak] {
display:none
}

View File

@@ -57,9 +57,12 @@ Alpine.directive('hx-header', (el, { value, expression }, { evaluateLater, effec
this.$refs.source.addEventListener('mouseover', reveal)
this.$refs.source.addEventListener('mouseout', hide)
},
destroy() {
this.popper.destroy()
},
tooltip: {
[':class']() { return { 'opacity-0': !this.show, 'opacity-100': this.show, 'pointer-events-none': !this.show, 'transition': true } },
[':class']() { return {'opacity-0': !this.show, 'opacity-100': this.show, 'pointer-events-none': !this.show, 'transition': true } },
["x-ref"]: 'tooltip',
['x-transition']: true
}

File diff suppressed because one or more lines are too long