Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide backdrop for popover #624

Merged
merged 5 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
Loading