我刚刚使用了 bootstrap-switch - v3.3.1,我不需要边框半径,所以我设置border-radius:0 !important;
为.bootstrap-switch.bootstrap-switch-focused
这样:http: //jsfiddle.net/q2zEk/1/。
.bootstrap-switch.bootstrap-switch-focused {
border-color: #cacaca;
outline: none !important;;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0 !important;
}
但是我们可以看到切换器内部有一个小半径边框。
如何在不影响全局切换器的情况下将整个切换器更改为方形边框。