0

我正在尝试重新绘制一个切换按钮,但经过所有尝试,我仍然找不到要覆盖的正确 CSS 样式。

当前的实现是http://webix.com/snippet/ebbe2e11

CSS:

.webix_el_toggle button{
    background-color:grey !important;
    border-color: gray !important;
}
.webix_el_toggle.webix_pressed button{
    background-color:green !important;
    border-color: green !important; 
}

如您所见,.webix_el_toggle.webix_pressed它不起作用,我终于在切换的 CSS 类中迷路了。有没有办法改变它?

4

1 回答 1

0

好的,我找到了解决方案。按下切换所需的 CSS 类是.webix_el_box.webix_pressed

.webix_el_toggle button{
    background-color:grey !important;
    border-color: gray !important;
}
.webix_el_box.webix_pressed button{
    background-color:green !important;
    border-color: green !important; 
}

片段

于 2016-04-13T08:30:22.690 回答