uniapp 中 修改 uni-checkbox 默认样式

uniapp checkbox 默认样式是

我修改的样式是

在App.vue中加上就可以,最外层可是当前页面的最外层class
    .wrap {
		/* #ifdef H5 */
		uni-checkbox .uni-checkbox-input {
			border: none !important;
		}
		
		uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked {
			color: #FF6903;
		}
		
		.uni-checkbox-input.uni-checkbox-input-checked {
			border: none !important;
		}
		/* #endif */
		
		/* 微信中样式 */
		/* #ifdef APP-PLUS ||MP-WEIXIN */
		checkbox .wx-checkbox-input {
			border: none !important;
		}
		checkbox .wx-checkbox-input-disabled {
		    background: #fff !important;
		    border: none !important;
		}
		checkbox .wx-checkbox-input.wx-checkbox-input-checked {
			color: #FF6903;
		}
		.wx-checkbox-input.wx-checkbox-input-checked {
			border: none !important;
		}
		/* #endif */
	}

猜你喜欢

转载自blog.csdn.net/wz_coming/article/details/112828031
今日推荐