Fix wish dropdown
This commit is contained in:
parent
a6d74ea5ea
commit
9a80cc5eb4
1 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
:root {
|
:root {
|
||||||
--lineHeight: 1.4285;
|
--lineHeight: 1.4285;
|
||||||
--wishPreviewHeight: min(30vh, 224px);
|
--wishPreviewHeight: min(30vh, 224px);
|
||||||
|
--dimmerZIndex: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
@ -77,6 +78,9 @@ figure {
|
||||||
--padding: 0.91666667em;
|
--padding: 0.91666667em;
|
||||||
--buttonsHeight: calc(1em + 1.50em + 0.78571429em * 2 - 3px);
|
--buttonsHeight: calc(1em + 1.50em + 0.78571429em * 2 - 3px);
|
||||||
}
|
}
|
||||||
|
.wishlist .ui.card:focus-within {
|
||||||
|
z-index: calc(var(--dimmerZIndex) + 2);
|
||||||
|
}
|
||||||
|
|
||||||
.wishlist .ui.fluid.card.stretch {
|
.wishlist .ui.fluid.card.stretch {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -349,7 +353,7 @@ figure {
|
||||||
* Label
|
* Label
|
||||||
*/
|
*/
|
||||||
.ui.label {
|
.ui.label {
|
||||||
z-index: 1;
|
z-index: calc(var(--dimmerZIndex) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
p .ui.horizontal.label {
|
p .ui.horizontal.label {
|
||||||
|
|
Loading…
Reference in a new issue