学无先后,达者为师

网站首页 前端文档 正文

element plus修改CheckBox样式

作者:暖一杯茶 更新时间: 2021-12-10 前端文档

改为以下样式
在这里插入图片描述

	:deep(.el-checkbox__inner) { //大小
      width: 20px;
      height: 20px;
      border-color: #384461;
      border-radius: 4px;
    }

    :deep(.el-checkbox__input.is-checked .el-checkbox__inner) {  //选中
      border-color: none !important;
      background-color: transparent;
      &::after {// 里面的对钩
        border-color: #384461;
      }
    }

    :deep(.el-checkbox__input.is-focus .el-checkbox__inner) { //悬浮
      border-color: none !important;
    }

    :deep(.el-checkbox__input.is-checked .el-checkbox__inner::after) { //对钩的位置
      top: 4px;
      left: 7px;
    }
    :deep(.el-checkbox__input.is-checked + .el-checkbox__label),
    :deep(.el-checkbox__label) {  //文字
      font-size: 16px;
      font-weight: 500;
      color: #384461;
    }

原文链接:https://blog.csdn.net/weixin_44932450/article/details/122108067

栏目分类
最近更新