0026506543
- prettier's formatting has changed, so files needed to be reformatted - dart is spitting out deprecation warnings like: 254 │ 2: $spacer / 2, │ ^^^^^^^^^^^ ╵ bazel-out/darwin-fastbuild/bin/ts/sass/bootstrap/_variables.scss 254:6 @import ts/sass/button_mixins.scss 2:9 @use ts/components/ColorPicker.svelte 2:5 root stylesheet DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($grid-gutter-width, 2)
33 lines
686 B
Svelte
33 lines
686 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import { infoCircle } from "./icons";
|
|
import { onMount } from "svelte";
|
|
import Tooltip from "bootstrap/js/dist/tooltip";
|
|
|
|
export let html: string;
|
|
|
|
let ref: HTMLAnchorElement;
|
|
|
|
onMount(() => {
|
|
new Tooltip(ref, {
|
|
placement: "bottom",
|
|
html: true,
|
|
offset: [0, 20],
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<span bind:this={ref} title={html}>
|
|
{@html infoCircle}
|
|
</span>
|
|
|
|
<style>
|
|
span :global(svg) {
|
|
vertical-align: text-bottom;
|
|
opacity: 0.3;
|
|
}
|
|
</style>
|