Skip to content

Commit 05d1b67

Browse files
author
Adam Argyle
committed
2 parents 2715765 + 11d0856 commit 05d1b67

File tree

9 files changed

+29
-4
lines changed

9 files changed

+29
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
2+
.vscode
23
node_modules/
34
app/bundle.js
45
app/bundle.min.js

app/components/metatip/metatip.element.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,3 +442,7 @@
442442
& [pass="false"] { color: hsl(0deg 50% 65%); }
443443
}
444444
}
445+
446+
:host::backdrop {
447+
background: none !important;
448+
}

app/components/selection/distance.element.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,7 @@
6868
:host figure:matches([quadrant="top"], [quadrant="left"]) > div:last-of-type {
6969
background: linear-gradient(to var(--quadrant), var(--neon-pink) 0%, color(display-p3 var(--line-color)) 100%);
7070
}
71+
72+
:host::backdrop {
73+
background: none !important;
74+
}

app/components/selection/gridlines.element.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
z-index:var(--layer-5);
2323
}
2424

25-
:host rect,
25+
:host rect,
2626
:host line {
2727
stroke: var(--neon-pink);
2828
}
@@ -31,3 +31,7 @@
3131
stroke-dasharray: 2;
3232
stroke-dasharray-offset: 3;
3333
}
34+
35+
:host::backdrop {
36+
background: none !important;
37+
}

app/components/selection/handles.element.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@
1919
:host > svg {
2020
position: absolute;
2121
}
22+
23+
:host::backdrop {
24+
background: none !important;
25+
}

app/components/selection/label.element.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,7 @@
5454
content: "\003e";
5555
}
5656
}
57+
58+
:host::backdrop {
59+
background: none !important;
60+
}

app/components/vis-bug/vis-bug.element.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,3 +308,7 @@
308308
transform: translate3d(0,0,0);
309309
}
310310
}
311+
312+
:host::backdrop {
313+
background: none !important;
314+
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "VisBug",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"description": "",
55
"author": "Adam Argyle",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)