首页 > 其他分享 >element-ui el-table 悬停/选中 行样式,鼠标样式

element-ui el-table 悬停/选中 行样式,鼠标样式

时间:2022-09-29 14:23:52浏览次数:49  
标签:el 鼠标 样式 element color table

/* 用来设置当前页面element全局table 选中某行时的背景色*/
.el-table__body tr.current-row > td {
    background-color: #78f709 !important;
    /* color: #f19944; */ /* 设置文字颜色,可以选择不设置 */
}
/* 用来设置当前页面element全局table 鼠标移入某行时的背景色*/
.el-table--enable-row-hover .el-table__body tr:hover > td {
    background-color: #f6d604 !important;
    cursor:pointer; /* 修改鼠标样式 */
    /* color: #f19944; */ /* 设置文字颜色,可以选择不设置 */
}

 

标签:el,鼠标,样式,element,color,table
From: https://www.cnblogs.com/cking98/p/16741401.html

相关文章