From 63e33c889413cd7edd910f97ba66e03b8cf64ab9 Mon Sep 17 00:00:00 2001 From: Andrew n marshall Date: Thu, 15 Mar 2018 13:15:20 -0700 Subject: [PATCH] Custom Dialogs demo: Bumping backdrop Z. (#1705) --- demos/custom-dialogs/custom-dialog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demos/custom-dialogs/custom-dialog.js b/demos/custom-dialogs/custom-dialog.js index 1892303a4..ea8c86567 100644 --- a/demos/custom-dialogs/custom-dialog.js +++ b/demos/custom-dialogs/custom-dialog.js @@ -93,7 +93,8 @@ CustomDialog.show = function(title, message, options) { backdropDiv.style.cssText = 'position: absolute;' + 'top: 0; left: 0; right: 0; bottom: 0;' + - 'background-color: rgba(0, 0, 0, .7);'; + 'background-color: rgba(0, 0, 0, .7);' + + 'z-index: 100;'; document.body.appendChild(backdropDiv); dialogDiv = document.createElement('div');