我正在尝试重新绘制一个切换按钮,但经过所有尝试,我仍然找不到要覆盖的正确 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 类中迷路了。有没有办法改变它?