checkbox
/*checkbox 选项框大小 */
checkbox .wx-checkbox-input {
width: 30px;
height: 30px;
}
/*checkbox选中后样式 */
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
background: white;
}
/*checkbox选中后图标样式 */
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
width: 28px;
height: 28px;
line-height: 28px;
text-align: center;
font-size: 22px;
color: red;
background: transparent;
transform: translate(-50%, -50%) scale(1);
-webkit-transform: translate(-50%, -50%) scale(1);
}
radio
radio .wx-radio-input {
width: 30px;
height: 30px;
border-radius: 10px;
}
/* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */
radio .wx-radio-input.wx-radio-input-checked {
width: 30px; /* 选中后对勾大小,不要超过背景的尺寸 */
height: 30px; /* 选中后对勾大小,不要超过背景的尺寸 */
border: none;
background: #f00;
}
/* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */
radio .wx-radio-input.wx-radio-input-checked::before {
border-radius: 10px; /* 圆角 */
width: 30px; /* 选中后对勾大小,不要超过背景的尺寸 */
height: 30px; /* 选中后对勾大小,不要超过背景的尺寸 */
line-height: 30px;
text-align: center;
font-size: 20px; /* 对勾大小 30px */
color: red; /* 对勾颜色 白色 */
border: 1px solid #cccccc;
background: white;
transform: translate(-50%, -50%) scale(1);
-webkit-transform: translate(-50%, -50%) scale(1);
}
网友评论