Skip to content

Commit

Permalink
Hide backdrop for popover (#624)
Browse files Browse the repository at this point in the history
* Hide backdrop for popover

* Add specific backdrop

* Remove bun lock file

* Remove auto-format

* Update extension run
  • Loading branch information
Kitenite committed May 24, 2024
1 parent 6e144d7 commit 5fc0488
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
.vscode
node_modules/
app/bundle.js
app/bundle.min.js
Expand Down
4 changes: 4 additions & 0 deletions app/components/metatip/metatip.element.css
Original file line number Diff line number Diff line change
Expand Up @@ -442,3 +442,7 @@
& [pass="false"] { color: hsl(0deg 50% 65%); }
}
}

:host::backdrop {
background: none !important;
}
4 changes: 4 additions & 0 deletions app/components/selection/distance.element.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,7 @@
:host figure:matches([quadrant="top"], [quadrant="left"]) > div:last-of-type {
background: linear-gradient(to var(--quadrant), var(--neon-pink) 0%, color(display-p3 var(--line-color)) 100%);
}

:host::backdrop {
background: none !important;
}
6 changes: 5 additions & 1 deletion app/components/selection/gridlines.element.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
z-index:var(--layer-5);
}

:host rect,
:host rect,
:host line {
stroke: var(--neon-pink);
}
Expand All @@ -31,3 +31,7 @@
stroke-dasharray: 2;
stroke-dasharray-offset: 3;
}

:host::backdrop {
background: none !important;
}
4 changes: 4 additions & 0 deletions app/components/selection/handles.element.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@
:host > svg {
position: absolute;
}

:host::backdrop {
background: none !important;
}
4 changes: 4 additions & 0 deletions app/components/selection/label.element.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@
content: "\003e";
}
}

:host::backdrop {
background: none !important;
}
4 changes: 4 additions & 0 deletions app/components/vis-bug/vis-bug.element.css
Original file line number Diff line number Diff line change
Expand Up @@ -308,3 +308,7 @@
transform: translate3d(0,0,0);
}
}

:host::backdrop {
background: none !important;
}

0 comments on commit 5fc0488

Please sign in to comment.