diff --git a/CHANGELOG.md b/CHANGELOG.md index 691e15e84c..9010c33189 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/app/gui/src/project-view/components/GraphEditor/GraphVisualization.vue b/app/gui/src/project-view/components/GraphEditor/GraphVisualization.vue index e47fc5a69f..b81377f2d3 100644 --- a/app/gui/src/project-view/components/GraphEditor/GraphVisualization.vue +++ b/app/gui/src/project-view/components/GraphEditor/GraphVisualization.vue @@ -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 {