我自己想知道如何更改模态标题的颜色。
在我对问题的解决方案中,我试图遵循我对 Bootstrap 愿景的解释方式。我添加了标记类来说明模态对话框的作用。
modal-success, modal-info, modal-warning 和 modal-error告诉他们做什么,如果你改变引导程序中的一些模态类,你不会因为突然有一种在任何情况下都不能使用的颜色而陷入困境. 当然,如果您制作自己的主题,则应该更改它们。
.modal-success {
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dff0d8), to(#c8e5bc));
background-image: -webkit-linear-gradient(#dff0d8 0%, #c8e5bc 100%);
background-image: -moz-linear-gradient(#dff0d8 0%, #c8e5bc 100%);
background-image: -o-linear-gradient(#dff0d8 0%, #c8e5bc 100%);
background-image: linear-gradient(#dff0d8 0%, #c8e5bc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
border-color: #b2dba1;
border-radius: 6px 6px 0 0;
}
在我的解决方案中,我实际上只是从alert-success
引导程序中复制了样式并添加了边框半径以保持圆角。
我对这个问题的解决方案的简单演示