如何将这个bootstrap开关中的蓝色更改为另一种颜色?我尝试更改输入元素的颜色和背景色,但没有更改开关颜色。
下面是html和 Bootstrap 链接
<div class="custom-control custom-switch ">
<input type="checkbox" class="custom-control-input" id="customSwitch1" (click)="changeState($event)">
<label class="custom-control-label text-yb" for="customSwitch1">Activate</label>
</div>
3条答案
按热度按时间2guxujil1#
要避免使用
!important
重置颜色和背景颜色,您可以通过自定义类使用filter:hue-rotate(xxdeg) ;
https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/hue-rotate()
CSS函数的作用是:旋转元素及其内容的色调。其结果是
<filter-function>
。另请参阅:https://en.wikipedia.org/wiki/Hue
第一个
txu3uszq2#
只需将其添加到您的css文件中,或添加到
<style>
...</style>
之间的html文件中,即可更改开关的背景颜色-它还可以删除或修改蓝色圆圈和阴影。=]z31licg03#
您可以简单地应用自己的样式,如下所示: