Unstyled BlockUI update
parent
445776316e
commit
fe0cc70737
|
@ -7,14 +7,6 @@ const styles = `
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-blockui {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.p-blockui.p-component-overlay {
|
.p-blockui.p-component-overlay {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,13 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
this.mask = document.createElement('div');
|
this.mask = document.createElement('div');
|
||||||
!this.isUnstyled && this.mask.setAttribute('class', styleClass);
|
!this.isUnstyled && this.mask.setAttribute('class', styleClass);
|
||||||
|
DomHandler.addStyles(this.mask, {
|
||||||
|
position: 'absolute',
|
||||||
|
top: '0',
|
||||||
|
left: '0',
|
||||||
|
width: '100%',
|
||||||
|
height: '100%'
|
||||||
|
});
|
||||||
this.$refs.container.appendChild(this.mask);
|
this.$refs.container.appendChild(this.mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue