FIX: `z` helper doesn't resolve inside `calc`
It resulted in invalid `z-index: calc(z("tooltip") - 100)` in the output CSS. `calc` wasn't necessary here anyway since both operands are constant.
This commit is contained in:
parent
7bcee784c8
commit
9ee77eae98
|
@ -75,7 +75,7 @@ $d-popover-border: $primary-medium;
|
||||||
color: transparent;
|
color: transparent;
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: calc(z("tooltip") - 100);
|
z-index: z("tooltip") - 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
.d-popover-top-arrow {
|
.d-popover-top-arrow {
|
||||||
|
|
Loading…
Reference in New Issue