MDL-61341 theme_boost: Fix usertour zindex calculations

This commit is contained in:
Andrew Nicols
2018-02-02 11:36:46 +08:00
parent 7517f9ea50
commit 0ab8ddc56b
+2 -2
View File
@@ -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"] {