Skip to content

Commit 5fc0488

Browse files
authored
Hide backdrop for popover (#624)
* Hide backdrop for popover * Add specific backdrop * Remove bun lock file * Remove auto-format * Update extension run
1 parent 6e144d7 commit 5fc0488

File tree

7 files changed

+26
-1
lines changed

7 files changed

+26
-1
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+
}

0 commit comments

Comments
 (0)