我正在为我的项目使用 GWTBootstrap 模态,问题是它的宽度对我来说太窄了。
我检查了它与萤火虫的样式并看到了这个
.modal {
background-clip: padding-box;
background-color: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.3);
border-radius: 6px 6px 6px 6px;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
left: 50%;
margin: -250px 0 0 -280px;
outline: medium none;
position: fixed;
top: 50%;
width: 560px;
z-index: 1050;
}
我去了 Webapp/css 目录并对bootstrap.min.css
.modal {
width : 960px;
max-height : 960px;
}
但它会被 gwt 编译器覆盖。
接下来我参考了这个 创建了一个css文件custom-overrides.css
.modal {
width : 960px;
max-height : 960px;
}
<stylesheet src="/custom-overrides.css" />
并像在我的那样导入它
gwt.xml
也不起作用,eclipse警告我文件在编译时被更改或删除。
我还尝试在创建模态的 UIBinder 文件中进行相同的更改。
<ui:style>
.modal{
width : 960px;
max-height : 960px;
}
</ui:style>
那也行不通。我很困惑,我应该怎么做才能应用我的样式?