From 3d3fbd34caf33e10256059ca562e8e89aae65d88 Mon Sep 17 00:00:00 2001 From: Jannik Anker Date: Fri, 21 Oct 2022 14:51:34 +0200 Subject: [PATCH] Fixes #12127 - sets z-index on block list actions element (#13179) * Sets z-index on block list actions element Should solve #12127 https://github.com/umbraco/Umbraco-CMS/issues/12127 * #12127 : introduces variable for block actions z-index --- src/Umbraco.Web.UI.Client/src/less/variables.less | 1 + .../blocklist/umb-block-list-property-editor.less | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/less/variables.less b/src/Umbraco.Web.UI.Client/src/less/variables.less index f417ac1e45..af1c136cc0 100644 --- a/src/Umbraco.Web.UI.Client/src/less/variables.less +++ b/src/Umbraco.Web.UI.Client/src/less/variables.less @@ -353,6 +353,7 @@ // Try to avoid customizing these :) @zIndexEditor: 100; @zIndexTree: 100; +@zIndexBlockActions: 500; @zindexDropdown: 1000; @zindexPopover: 1010; @zindexTooltip: 1030; diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/umb-block-list-property-editor.less b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/umb-block-list-property-editor.less index c08d10c6c0..bd9f90a484 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/umb-block-list-property-editor.less +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/umb-block-list-property-editor.less @@ -86,6 +86,7 @@ ng-form.ng-invalid-val-server-match-settings > .umb-block-list__block > .umb-blo border-radius: 16px; padding-left: 5px; padding-right: 5px; + z-index: @zIndexBlockActions; .action { position: relative; display: inline-block;