From d07d5832f57b030749ef5c6f18d529b8a8ab481e Mon Sep 17 00:00:00 2001 From: Quinn Casey Date: Mon, 20 Jul 2020 09:46:10 -0700 Subject: [PATCH] Increase z-index of save button on editor (#6435) --- src/panels/config/automation/ha-automation-editor.ts | 2 +- src/panels/config/script/ha-script-editor.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panels/config/automation/ha-automation-editor.ts b/src/panels/config/automation/ha-automation-editor.ts index 3321a4956d..b8add47400 100644 --- a/src/panels/config/automation/ha-automation-editor.ts +++ b/src/panels/config/automation/ha-automation-editor.ts @@ -534,7 +534,7 @@ export class HaAutomationEditor extends LitElement { position: fixed; bottom: 16px; right: 16px; - z-index: 1; + z-index: 3; margin-bottom: -80px; transition: margin-bottom 0.3s; } diff --git a/src/panels/config/script/ha-script-editor.ts b/src/panels/config/script/ha-script-editor.ts index 434899d53d..4eb1ca6e65 100644 --- a/src/panels/config/script/ha-script-editor.ts +++ b/src/panels/config/script/ha-script-editor.ts @@ -440,7 +440,7 @@ export class HaScriptEditor extends LitElement { position: fixed; bottom: 16px; right: 16px; - z-index: 1; + z-index: 3; margin-bottom: -80px; transition: margin-bottom 0.3s; }