angularjs – 角色UI模态指令,背景缺失

前端之家收集整理的这篇文章主要介绍了angularjs – 角色UI模态指令,背景缺失前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用UI Bootstrap http://angular-ui.github.io/bootstrap/中的模态指令时,我没有背景.模态本身正在工作.

我已经尝试过ui-bootstrap-tpls.js(包含模板)和没有模板(手动下载它们).我比较了标记和css与一个从示例,我找不到任何区别.一切都在那里以前我使用过它,这是我第一次遇到这个问题.这次的区别是我使用sass版本的引导.也许与此有关系?我的想法在哪里看

我的版本:

"angular": "1.2.24","angular-animate": "~1.2.24"
"angular-bootstrap": "~0.11.2","bootstrap-sass-official": "~3.3.1",

任何想法任何人?

从Maxisam的链接到拉动请求: https://github.com/angular-ui/bootstrap/pull/3117

最简单的修复只是添加以下CSS:

html {
  height: 100%;
}

body {
  min-height: 100%;
}

.modal-backdrop {
  bottom: 0;
}

希望它不会打破你的代码:-)

原文链接:https://www.f2er.com/angularjs/140787.html

猜你在找的Angularjs相关文章