修改小程序内置checkbox样式

/* 修改复选框默认样式 */
checkbox .wx-checkbox-input {
  width: 40rpx;
  height: 40rpx;
  /* border: 4rpx solid #999; */
  border-radius: 100%;
}
/*复选框外框选中样式*/
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  border-color: #3cbcee;
}
/*复选框选中后内部样式*/
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  width: 50%;
  height: 50%;
  background: #3cbcee;
  border-radius: 100%;
  content: '';
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}

 

posted @ 2021-02-25 14:50  Alitar  阅读(112)  评论(0编辑  收藏  举报