在bootstrap模态窗口中更改关闭按钮的颜色

时间:2014-11-13 20:26:21

标签: css twitter-bootstrap

我正在使用带有boostrap的模态窗口。我已经改变了背景和字体颜色,但我没有成功将右上角的关闭按钮改为白色。

<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true" class="modal_button">&times;</span><span class="sr-only">Close</span></button>

这是我的css属性

.modal-header {
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
  text-align: left;
  font-size: 23px;
  color: white;
  background-color: #261f31;
  border-bottom: 0px;
}

我想将X按钮变为白色

2 个答案:

答案 0 :(得分:38)

Bootstrap设置颜色如下:

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}

所以你可以用它来覆盖它:

.close {
    color: #fff; 
    opacity: 1;
}

答案 1 :(得分:1)

您可以在模式弹出窗口中覆盖defual x按钮的简单方法

  button.close {
        background: #d73e4d;
        background: rgba(215, 62, 77, 0.75);
        border: 0 none !important;
        color: #fff7cc;
        display: inline-block;
        float: right;
        font-size: 34px;
        height: 40px;
        line-height: 1;
        margin: 0px 1px;
        opacity: 1;
        text-align: center;
        text-shadow: none;
        -webkit-transition: background 0.2s ease-in-out;
        transition: background 0.2s ease-in-out;
        vertical-align: top;
        width: 46px;
    }

enter image description here