mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-24 23:01:57 +08:00
45 lines
641 B
SCSS
45 lines
641 B
SCSS
@import "../../themes/ionic.globals";
|
|
|
|
// Popover
|
|
// --------------------------------------------------
|
|
|
|
|
|
ion-popover {
|
|
@include position(0, 0, 0, 0);
|
|
|
|
position: absolute;
|
|
|
|
z-index: $z-index-overlay;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.popover-wrapper {
|
|
z-index: $z-index-overlay-wrapper;
|
|
|
|
opacity: 0;
|
|
}
|
|
|
|
.popover-content {
|
|
position: absolute;
|
|
z-index: $z-index-overlay-wrapper;
|
|
|
|
display: flex;
|
|
|
|
overflow: auto;
|
|
|
|
flex-direction: column;
|
|
}
|
|
|
|
.popover-content ion-content,
|
|
.popover-content .scroll-content {
|
|
contain: none;
|
|
}
|
|
|
|
.popover-content .scroll-content {
|
|
position: relative;
|
|
}
|