关于element-ui中一些更改默认样式的总结

时间:2024-05-19 09:12:25

1.elelment-ui清空el-tree选中的值
this.$refs.tree.setCheckedKeys([])
关于element-ui中一些更改默认样式的总结
关于element-ui中一些更改默认样式的总结
2.element-ui清除el-upload的边框虚线样式
.content .upload-demo /deep/ .el-upload–text{
border: none;
}
3.element-ui更改el-select el-option的高度
.el-select /deep/ .el-input__inner{
color:#C0C4CC;
height: 32px;
}
4.更改el-option的高度之后,下三角可能和文字不对称
.el-select /deep/ .el-input__suffix /deep/ .el-input__icon{
line-height: 30px;
}
5.el-input更改默认样式
.el-input /deep/ .el-input__inner{
height: 30px;
}
6.el-date-picker小图标和文字不对称
.el-date-editor /deep/ .el-input__icon{
line-height: 32px;
}