framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
57 lines (56 loc) • 906 B
text/less
.aurora {
.popover {
transform: none;
transition-property: opacity;
}
.popover-angle {
width: 18px;
height: 18px;
position: absolute;
left: -18px;
top: 0;
z-index: 100;
overflow: hidden;
&:after {
content: '';
background: var(--f7-popover-bg-color);
width: 18px;
height: 18px;
position: absolute;
left: 0;
top: 0;
border-radius: 2px;
transform: rotate(45deg);
}
&.on-left {
left: -18px;
&:after {
left: 13px;
top: 0;
}
}
&.on-right {
left: 100%;
&:after {
left: -13px;
top: 0;
}
}
&.on-top {
left: 0;
top: -18px;
&:after {
left: 0;
top: 13px;
}
}
&.on-bottom {
left: 0;
top: 100%;
&:after {
left: 0;
top: -13px;
}
}
}
}