0

我试图让模态在使用DurandalJS (SPA) 框架的应用程序中工作,但无法正确显示模态。目前,当模式打开时,它显示时没有遮挡并水平填充浏览器。

不正确的模态

(“Feeds”、“New Feed”按钮和“Logout”链接应该被屏蔽掉。)

我已经阅读了几次文档,我能找到的唯一线索是“默认模态上下文”部分下面的注释:

注意:默认模态上下文有一些定位所需的 css,可以在 app.css 文件中找到。它假定目标浏览器支持位置:固定。如果您的目标浏览器不支持此功能,则应使用自定义实现替换默认模式上下文。

它提到了一个“app.css”文件......我找不到它。我搜索了 DurandalJS 的 github 存储库,唯一的 app.css文件没有任何会真正影响此模式的内容(无论好坏)。有什么线索吗?

4

1 回答 1

3

的内容durandal.css应该可以帮助您入门。 https://github.com/BlueSpire/Durandal/blob/master/Content/durandal.css

.modalBlockout {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;

    pointer-events: auto;

    -webkit-backface-visibility: hidden;

    -webkit-transition: opacity 0.1s linear; 
    -moz-transition: opacity 0.1s linear; 
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear; 
}

.modalHost {
    top: 50%;
    left: 50%;
    position: fixed;
    opacity: 0;

    -webkit-backface-visibility: hidden;

    -webkit-transition: opacity 0.1s linear; 
    -moz-transition: opacity 0.1s linear; 
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
}

.messageBox {
    background-color: white;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    outline: none;
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    min-width: 300px;
}
于 2013-05-20T09:01:20.907 回答