From 0ab8ddc56b77abdcaa264aee1bbcfa0e1eda34af Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Fri, 2 Feb 2018 11:31:12 +0800 Subject: [PATCH] MDL-61341 theme_boost: Fix usertour zindex calculations --- theme/boost/scss/moodle/tool_usertours.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/boost/scss/moodle/tool_usertours.scss b/theme/boost/scss/moodle/tool_usertours.scss index de780f8dccc..eebf19c8345 100644 --- a/theme/boost/scss/moodle/tool_usertours.scss +++ b/theme/boost/scss/moodle/tool_usertours.scss @@ -24,7 +24,7 @@ div[data-flexitour="step-background"] { @include border-radius($border-radius-lg); // The step container, and the target background should be at the same z-index. - z-index: #{$flexitour-base-zindex} + 1; + z-index: ($flexitour-base-zindex + 1); } span[data-flexitour="container"], @@ -32,7 +32,7 @@ div[data-flexitour="step-background-fader"], [data-flexitour="step-backdrop"] > td, [data-flexitour="step-backdrop"] { // The step container, and the target background should be at the same z-index. - z-index: #{$flexitour-base-zindex} + 2; + z-index: ($flexitour-base-zindex + 2); } span[data-flexitour="container"] {