Bootstrap 禁用期间复选框开关背景颜色问题

Bootstrap Checkbox Switch Background color issue during disable

这些 bootstrap 复选框没有禁用:

这些 bootstrap 复选框被禁用:

在禁用状态期间,它会更改背景颜色,但我不想更改我想要的背景颜色,因为它处于禁用状态,所以我该怎么做?

我已经尝试覆盖默认 class 但没有任何改变。

这是 bootstrap

中的默认值 CSS
.switch input:disabled + span {
    background-color:#f1f1f1;
    cursor: not-allowed;
}

我想去掉这个背景色!!

请向我们提供您的一些 css 代码。关于您的问题,bootstrap css 通常被高特异性地选中,您可能需要确保选择器的特异性更高。

请检查答案,这是我使用问题中提供的 bootstrap 默认值 类 和 css 所做的,并找出您做错了什么。

因为它似乎对我有用

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.switch input:disabled + span {
    background-color:#2196F3;
    cursor: not-allowed;
opacity: 0.6;
}
.switch input:not(:checked):disabled + span {
    background-color:#ccc;
    cursor: not-allowed;
opacity: 0.6;
}
<label class="switch">
  <input type="checkbox" disabled="disabled">
  <span class="slider round"></span>
</label>

<label class="switch">
  <input type="checkbox" checked disabled="disabled">
  <span class="slider round"></span>
</label>

现在我得到了答案:

.switch input:checked:disabled + span {
    background-color:#5d9cec;
    cursor: not-allowed;
}
.switch input:not(:checked):disabled + span {
    background-color:#fff;
    cursor: not-allowed;
}

Ty @Lalit 帮助了我

2020 年 Bootstrap v4.5.0 的更新答案

/* Enabled */
.custom-control-input:checked~.custom-control-label::before
{
  border-color: red !important;
  background-color: blue !important;
}

/* Disabled */
.custom-control-input:checked:disabled~.custom-control-label::before
{
  border-color: yellow !important;
  background-color: green !important;
}
如果您想用 class custom-control-input 覆盖所有输入,则

!important 是必需的。如果您只需要覆盖一个,请尝试将 .custom-control-input 位更改为像 #yourinputid

这样的 ID