Arrow for OverlayPanel
parent
7dc10342af
commit
65562cda09
|
@ -3014,6 +3014,20 @@ body .p-overlaypanel .p-overlaypanel-close:hover {
|
||||||
body .p-overlaypanel .p-overlaypanel-close > span {
|
body .p-overlaypanel .p-overlaypanel-close > span {
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
|
body .p-overlaypanel:after {
|
||||||
|
border-color: rgba(50, 50, 50, 0);
|
||||||
|
border-bottom-color: #323232;
|
||||||
|
}
|
||||||
|
body .p-overlaypanel:before {
|
||||||
|
border-color: rgba(25, 25, 25, 0);
|
||||||
|
border-bottom-color: #191919;
|
||||||
|
}
|
||||||
|
body .p-overlaypanel.p-overlaypanel-flipped:after {
|
||||||
|
border-top-color: #323232;
|
||||||
|
}
|
||||||
|
body .p-overlaypanel.p-overlaypanel-flipped:before {
|
||||||
|
border-top-color: #191919;
|
||||||
|
}
|
||||||
body .p-dialog {
|
body .p-dialog {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
-moz-border-radius: 3px;
|
-moz-border-radius: 3px;
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -2,6 +2,12 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-overlaypanel-flipped {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-overlaypanel-content {
|
.p-overlaypanel-content {
|
||||||
|
@ -50,3 +56,37 @@
|
||||||
-webkit-transition: transform .3s, opacity .15s;
|
-webkit-transition: transform .3s, opacity .15s;
|
||||||
transition: transform .3s, opacity .15s;
|
transition: transform .3s, opacity .15s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.p-overlaypanel:after, .p-overlaypanel:before {
|
||||||
|
bottom: 100%;
|
||||||
|
left: 1.25em;
|
||||||
|
border: solid transparent;
|
||||||
|
content: " ";
|
||||||
|
height: 0;
|
||||||
|
width: 0;
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-overlaypanel:after {
|
||||||
|
border-width: 8px;
|
||||||
|
margin-left: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-overlaypanel:before {
|
||||||
|
border-width: 10px;
|
||||||
|
margin-left: -10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-overlaypanel-flipped:after, .p-overlaypanel-flipped:before {
|
||||||
|
bottom: auto;
|
||||||
|
top: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-overlaypanel.p-overlaypanel-flipped:after {
|
||||||
|
border-bottom-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-overlaypanel.p-overlaypanel-flipped:before {
|
||||||
|
border-bottom-color: transparent
|
||||||
|
}
|
|
@ -81,6 +81,10 @@ export default {
|
||||||
},
|
},
|
||||||
alignOverlay() {
|
alignOverlay() {
|
||||||
DomHandler.absolutePosition(this.$refs.container, this.target);
|
DomHandler.absolutePosition(this.$refs.container, this.target);
|
||||||
|
|
||||||
|
if (DomHandler.getOffset(this.$refs.container).top < DomHandler.getOffset(this.target).top) {
|
||||||
|
DomHandler.addClass(this.$refs.container, 'p-overlaypanel-flipped');
|
||||||
|
}
|
||||||
},
|
},
|
||||||
bindOutsideClickListener() {
|
bindOutsideClickListener() {
|
||||||
if (!this.outsideClickListener) {
|
if (!this.outsideClickListener) {
|
||||||
|
|
Loading…
Reference in New Issue