diff --git a/ui/src/components/htmlhintcomponents/HtmlErrorsByReason.svelte b/ui/src/components/htmlhintcomponents/HtmlErrorsByReason.svelte
index 58fc484a..b0db6607 100644
--- a/ui/src/components/htmlhintcomponents/HtmlErrorsByReason.svelte
+++ b/ui/src/components/htmlhintcomponents/HtmlErrorsByReason.svelte
@@ -16,6 +16,7 @@
import Icon from "../misccomponents/Icon.svelte";
import { htmlHintRules, customHtmlHintRules } from "../../../../docker/rules.js";
import LoadingCircle from "../misccomponents/LoadingCircle.svelte";
+ import { tooltip } from '../misccomponents/tooltip';
export let errors = [];
export let codeIssues = [];
@@ -136,7 +137,7 @@
Page ({error.pages.length}) |
Locations (line:col) |
- Ignore |
+ Ignore |
diff --git a/ui/src/components/htmlhintcomponents/HtmlErrorsBySource.svelte b/ui/src/components/htmlhintcomponents/HtmlErrorsBySource.svelte
index 61e274df..a4a544f2 100644
--- a/ui/src/components/htmlhintcomponents/HtmlErrorsBySource.svelte
+++ b/ui/src/components/htmlhintcomponents/HtmlErrorsBySource.svelte
@@ -13,6 +13,7 @@
import { createEventDispatcher } from "svelte";
import Icon from "../misccomponents/Icon.svelte";
import LoadingCircle from "../misccomponents/LoadingCircle.svelte";
+ import { tooltip } from '../misccomponents/tooltip';
export let errors = [];
export let codeIssues = [];
@@ -115,7 +116,7 @@
Issues ({Object.keys(url.errors).length})
Locations |
- Ignore |
+ Ignore |
diff --git a/ui/src/components/misccomponents/TooltipFromAction.svelte b/ui/src/components/misccomponents/TooltipFromAction.svelte
index 0db2b111..105544e9 100644
--- a/ui/src/components/misccomponents/TooltipFromAction.svelte
+++ b/ui/src/components/misccomponents/TooltipFromAction.svelte
@@ -1,19 +1,20 @@
-{title}
+
+
+ {title}
+
\ No newline at end of file
+ div {
+ border: 1px solid #ddd;
+ box-shadow: 1px 1px 1px #ddd;
+ background: white;
+ border-radius: 4px;
+ padding: 4px;
+ position: absolute;
+ }
+