2021-03-20 07:38:56 +00:00
|
|
|
.dropdown-pane {
|
2020-11-10 09:55:26 +00:00
|
|
|
@include elegant-card;
|
|
|
|
@include border-light;
|
2021-04-10 14:33:45 +00:00
|
|
|
box-sizing: content-box;
|
2021-04-08 14:12:38 +00:00
|
|
|
width: fit-content;
|
2021-03-20 07:38:56 +00:00
|
|
|
z-index: 999;
|
2020-11-10 09:55:26 +00:00
|
|
|
|
2021-03-20 07:38:56 +00:00
|
|
|
&.dropdown-pane--open {
|
|
|
|
display: block;
|
|
|
|
visibility: visible;
|
2020-11-10 09:55:26 +00:00
|
|
|
}
|
|
|
|
|
2021-03-20 07:38:56 +00:00
|
|
|
&.dropdowm--bottom {
|
|
|
|
&::before {
|
|
|
|
@include arrow(top, var(--color-border-light), 14px);
|
|
|
|
position: absolute;
|
|
|
|
right: 6px;
|
|
|
|
top: -14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
@include arrow(top, $color-white, var(--space-slab));
|
|
|
|
position: absolute;
|
|
|
|
right: var(--space-small);
|
|
|
|
top: -12px;
|
|
|
|
}
|
2020-11-10 09:55:26 +00:00
|
|
|
}
|
|
|
|
|
2021-03-20 07:38:56 +00:00
|
|
|
&.dropdowm--top {
|
|
|
|
&::before {
|
|
|
|
@include arrow(bottom, var(--color-border-light), 14px);
|
|
|
|
bottom: -14px;
|
|
|
|
position: absolute;
|
|
|
|
right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
@include arrow(bottom, $color-white, var(--space-slab));
|
|
|
|
bottom: -12px;
|
|
|
|
position: absolute;
|
|
|
|
right: var(--space-small);
|
|
|
|
}
|
2020-11-10 09:55:26 +00:00
|
|
|
}
|
|
|
|
}
|