发布时间:2023-08-26 15:30
以下样式代码在less环境下生效,最终样式如下。
样式代码,
/*修改table 表体的背景颜色和文字颜色*/
/deep/ .el-table {
background-color: transparent;
th,
td {
background-color: transparent;
}
.el-table__expanded-cell {
background-color: transparent !important;
}
// 表头背景色
th.el-table__cell {
background-color: rgb(25, 50, 70);
color: #fff;
}
tr > td {
background-color: rgb(25, 50, 70);
color: #fff;
}
// hover效果
tr:hover > td {
background-color: rgba(0, 0, 0, 0) !important;
}
tbody tr:hover > td {
background-color: #1356a1 !important;
// text-align: center;
}
// 滚动条宽高
.el-table__body-wrapper::-webkit-scrollbar {
width: 5px;
height: 5px;
}
.el-table__body-wrapper::-webkit-scrollbar {
width: 5px;
/*滚动条宽度*/
height: 10px;
/*滚动条高度*/
}
/*定义滚动条轨道 内阴影+圆角*/
.el-table__body-wrapper::-webkit-scrollbar-track {
box-shadow: 0px 1px 3px #216fe6 inset;
/*滚动条的背景区域的内阴影*/
border-radius: 10px;
}
/*定义滑块 内阴影+圆角*/
.el-table__body-wrapper::-webkit-scrollbar-thumb {
box-shadow: 0px 1px 3px #216fe6 inset;
border-radius: 6px;
background-color: #216fe6;
}
}
python神经网络库识别验证码_基于TensorFlow 使用卷积神经网络识别字符型图片验证码...
手把手教你springboot整合bootstrap-table、pagehelper实现表格生成、页面美化、客户端和服务端分页
python大气校正_Python 处理遥感图像:光谱辐射定标、大气校正和计算反射率
Spring Boot Event 观察者模式,轻松实现业务解耦!
Audio codec linux driver 之 ALSA 架构的 DAPM 学习
Windows启动谷歌浏览器Chrome失败(应用程序无法启动,因为应用程序的并行配置不正确)解决方法
vuex中 this.$store.dispatch() 与 this.$store.commit()方法的区别