2019-02-08 16:49:51 +00:00
|
|
|
@import "variables";
|
|
|
|
|
2018-03-13 11:07:28 +00:00
|
|
|
.vn-popover {
|
2019-02-01 12:01:09 +00:00
|
|
|
z-index: 20;
|
2018-03-12 11:31:50 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2019-02-08 16:49:51 +00:00
|
|
|
color: $color-font;
|
2018-03-12 11:31:50 +00:00
|
|
|
|
|
|
|
opacity: 0;
|
2020-04-02 12:52:02 +00:00
|
|
|
transform: translateY(-9px);
|
2018-03-12 11:31:50 +00:00
|
|
|
transition-property: opacity, transform;
|
|
|
|
transition-duration: 200ms;
|
|
|
|
transition-timing-function: ease-in-out;
|
|
|
|
|
|
|
|
&.shown {
|
|
|
|
transform: translateY(0);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2019-10-28 16:31:33 +00:00
|
|
|
& > .window {
|
2018-03-12 11:31:50 +00:00
|
|
|
position: absolute;
|
2020-04-02 12:20:57 +00:00
|
|
|
box-shadow: 0 1px 6px $color-shadow;
|
2018-07-03 11:24:42 +00:00
|
|
|
z-index: 0;
|
2018-03-12 11:31:50 +00:00
|
|
|
|
|
|
|
& > .arrow {
|
2020-04-02 12:20:57 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2020-04-02 12:52:02 +00:00
|
|
|
margin: -8px;
|
2019-02-08 16:49:51 +00:00
|
|
|
background-color: $color-bg-panel;
|
2020-04-02 12:20:57 +00:00
|
|
|
box-shadow: 0 1px 6px $color-shadow;
|
2018-03-12 11:31:50 +00:00
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
2018-07-03 11:24:42 +00:00
|
|
|
z-index: -1;
|
2018-03-12 11:31:50 +00:00
|
|
|
}
|
|
|
|
& > .content {
|
2020-04-02 12:20:57 +00:00
|
|
|
border-radius: 1px;
|
2019-02-08 16:49:51 +00:00
|
|
|
background-color: $color-bg-panel;
|
2018-07-03 11:24:42 +00:00
|
|
|
height: inherit;
|
|
|
|
overflow: auto;
|
2018-03-12 11:31:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|