Fix visualization toolbar dropdown layering (#11768)

Fixes #11647.
This commit is contained in:
Kaz Wesley 2024-12-04 10:18:26 -08:00 committed by GitHub
parent d2e1e90f94
commit cb499e2b69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -45,6 +45,8 @@
- [Pasting tabular data now creates Table.input expressions][11695].
- [No halo is displayed around components when hovering][11715].
- [The hover area of the component output port extended twice its size][11715].
- [Fix some UI elements drawing on top of visualization toolbar dropdown
menus][11768].
[11151]: https://github.com/enso-org/enso/pull/11151
[11271]: https://github.com/enso-org/enso/pull/11271
@ -73,6 +75,7 @@
[11684]: https://github.com/enso-org/enso/pull/11684
[11695]: https://github.com/enso-org/enso/pull/11695
[11715]: https://github.com/enso-org/enso/pull/11715
[11768]: https://github.com/enso-org/enso/pull/11768
#### Enso Standard Library

View File

@ -278,9 +278,12 @@ customElements.define(ensoVisualizationHost, defineCustomElement(VisualizationHo
position: absolute;
border-radius: var(--radius-default);
background: var(--color-visualization-bg);
opacity: 0.9;
}
.content {
/** Prevent drawing on top of other UI elements (e.g. dropdown widgets). */
isolation: isolate;
opacity: 0.9;
}
.isFocused {