禁用选中的thead颜色数据表

时间:2018-01-05 07:47:58

标签: css datatable

我希望在激活/选择时禁用该颜色,我的意思是在选择排序/ thead时,颜色仍为#dddfe2

默认clor为#dddfe2

enter image description here

CSS:

#new-izbox table thead th{
  background: #dddfe2;
  border-left:0px;
  border-right:0px;
  border-top: 0px;
  border-bottom: 1px solid #dddfe2;
  text-align: left;
  font-weight: normal;
  color: #555;
  padding:10px;
  margin:0px;
  text-align: left;
  cursor: pointer;
}

我尝试这样的事情,但没有运气:

#new-izbox table thead th.selected{
      background: #dddfe2;
      border-left:0px;
      border-right:0px;
      border-top: 0px;
      border-bottom: 1px solid #dddfe2;
      text-align: left;
      font-weight: normal;
      color: #555;
      padding:10px;
      margin:0px;
      text-align: left;
      cursor: pointer;
    }

任何帮助将不胜感激。

0 个答案:

没有答案