赞
踩
vue项目中,使用element-ui,根据设计,更改table表格样式,包括表头、字体、背景色、边框、鼠标动作等;
- //自定义-表格样式
- .table-text-blue{
- color: $blueColor;
- cursor:pointer;
- }
- .table-text-gray{
- color: $grayColor;
- }
- .el-table th.is-leaf{
- background:#F9F9F9;
- border-bottom: none;
- }
- .el-table--border th{
- border-color:#FFF;
- font-weight: normal;
- }
- .el-table--border{
- border:none;
- }
- .el-table,.el-table thead{
- color:$tableColor;
- }
- .el-table--border::after, .el-table--group::after{
- background-color: #fff;
- }
- .el-table--border td{
- border-right: 1px solid $tableBc;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。