[微信小程序] 修改內建 checkbox 樣式
觀察不到內建的 checkbox 選擇器,所以在此留個紀錄。
.checkbox .wx-checkbox-input {
// 未勾選的樣式
}
.checkbox .wx-checkbox-input-disabled {
// disable 樣式
}
.checkbox .wx-checkbox-input.wx-checkbox-input-checked {
// 打勾時的選擇框背景
}
.checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
// 打勾狀態時的勾勾
}