This is an automated email from the ASF dual-hosted git repository. heneveld pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git
commit dcb6380878fcd58bc41fe71ce8e63b3584418429 Author: Mykola Mandra <[email protected]> AuthorDate: Wed Jun 9 20:27:09 2021 +0100 Inherit overflow style for confirmation menu Signed-off-by: Mykola Mandra <[email protected]> --- ui-modules/blueprint-composer/app/components/util/d3-blueprint.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js b/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js index 1c8e524..b8e379e 100755 --- a/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js +++ b/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js @@ -1124,6 +1124,7 @@ export function D3Blueprint(container, options) { let size = 300; let confirmationElement = nodeData.append('foreignObject') + .style('overflow', 'inherit') .attr('xmlns', 'http://www.w3.org/1999/xhtml') .attr('x', -(size/2)) // position in the middle .attr('y', 70) // below the node
