Bootstrap table插件 被选中的行颜色改变
时间:2019-11-25 21:19:16
收藏:0
阅读:910
参考:https://www.jianshu.com/p/1bb4c37ef636
在 bootstrap-table.min.css 中修改源码
//选中行颜色 .fixed-table-container tbody .selected td{background-color:#EEE8AA}
在bootstrap.min.css中修改源码
//奇偶行颜色 .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9} //滑过的颜色 .table-hover>tbody>tr:hover{background-color:#FAFAD2}
原文:https://www.cnblogs.com/taiguyiba/p/11930174.html
评论(0)