将 uib Modal Content 从模态内容移到页面顶部

Move uib Modal Content out of the modal content to top of page

我在 uib 模态中有一些内容 window。我希望将该内容移动到 html 的顶部(固定到 html 的顶部)。

我尝试设置

position: fixed;
top: 0

即将登顶。但它仍然停留在模态内容(不是网页顶部)

我怎样才能将它从 div 中拉出来并固定在我的网页顶部?

fiddle 这里:https://jsfiddle.net/Mahesh434/6ktc4g8j/

我使用以下方法修复了此问题,希望这对某些人有所帮助。

添加 css:

.modal-dialog {
  transform: none;
}

注意:但不确定添加此行的影响是什么;

在我的例子中,模型按预期工作,没有任何问题。