在使用element ui时,我们总是需要把他的样式修改为自己的样式,
如下图:
修改之前:
在这里插入图片描述
修改之后:
在这里插入图片描述

去掉背景颜色

    .el-table, .el-table__expanded-cell {
        background-color: transparent!important;
    }
    
    .el-table th, .el-table tr {
       border: 0!important;
        background-color: transparent!important;
    }

去掉边框线

     .el-table--border tr,td{
       border: none!important;
    }
    .el-table::before{
      height:0;
    }

修改滚动条样式

    /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
    ::-webkit-scrollbar {
    width: 7px; /*滚动条宽度*/
    height: 7px; /*滚动条高度*/
    background-color: rgb(0, 12, 46);
    }

    /*定义滑块 内阴影+圆角*/
    ::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(216, 39, 39, 0.3);
    background-color: rgb(0, 12, 46); /*滚动条的背景颜色*/
    }

修改高亮

.el-table--enable-row-hover .el-table__body tr:hover>td{
    background-color:rgb(0, 12, 46) !important;
    }

修改头部字体

 .el-table thead{
          color:rgba(32,253,250,0.7)!important;
    }
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45 7 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐