是否可以拖动uibmodal或使父页面不暗淡?

Is it possible to drag uibmodal or to make the parent page not go dim?

uibmodal 使父页面变暗。有可能阻止这种情况发生吗?

我通过添加 css:

实现了这一点
.modal-backdrop.in {
    display: none;
}

使用背景:false,根据文档:

backdrop (Type: boolean|string, Default: true) - 
   Controls presence of a backdrop. Allowed values: true (default), false (no backdrop), 'static' (disables modal closing by click on the backdrop).

Docs