From 241b5452df4c3c144c31fa66a583f9f768687c4e Mon Sep 17 00:00:00 2001 From: sunhao Date: Tue, 10 Sep 2024 14:05:31 +0800 Subject: [PATCH] * [misc] fix picker layer z-index in tutorial mode. --- module/index/ui/app.html.php | 1 + module/tutorial/css/index.ui.css | 1 + 2 files changed, 2 insertions(+) diff --git a/module/index/ui/app.html.php b/module/index/ui/app.html.php index 23550c07d4..54493f1e34 100644 --- a/module/index/ui/app.html.php +++ b/module/index/ui/app.html.php @@ -21,6 +21,7 @@ if(commonModel::isTutorialMode()) .tutorial-popover .arrow-left::after {height: 2px; left: calc(var(--arrow-size) - 34px); top: 4px} .tutorial-popover .arrow-right::after {height: 2px; right: calc(var(--arrow-size) - 34px); top: 4px} .tutorial-popover .arrow-bottom::after {width: 2px; bottom: calc(var(--arrow-size) - 34px); left: 4px} + .pick-container {z-index: 1780;} CSS) ); } diff --git a/module/tutorial/css/index.ui.css b/module/tutorial/css/index.ui.css index 95f29b882f..8291b6ec7b 100644 --- a/module/tutorial/css/index.ui.css +++ b/module/tutorial/css/index.ui.css @@ -28,3 +28,4 @@ .is-single-type-mode #tutorialTabs .tabs-header {display: none;} .is-single-type-mode #tutorialTabs .tab-content {padding-top: 0;} .is-single-type-mode #tutorialTabs .tab-pane {display: block;} +.pick-container {z-index: 1780;}