张同海 2 years ago
commit 7c2b31b70c

@ -455,7 +455,18 @@ export default {
}
.active{
color: @primary-color;
background: #f5f9fe;
// background: #f5f9fe;
position: relative;
&::after{
content: '';
position: absolute;
top: 0;left: 0;
width:100%;
height: 100%;
z-index: 0;
background: @primary-color;
opacity: .04;
}
}
.sed-order-btn{
margin: 20px auto;

@ -563,7 +563,19 @@ export default {
}
/*列表表头 */
.vxe-table--header-wrapper {
background-color: #f5f9fe !important;
// background-color: #f5f9fe !important;
position: relative;
background: #fff !important;
&::after{
content: '';
position: absolute;
top: 0;left: 0;
width:100%;
height: 100%;
z-index: 0;
background: @primary-color;
opacity: .04;
}
}
/*列表分页 */
.vxe-pager {
@ -798,7 +810,21 @@ export default {
}
/*列表双列背景色 */
/deep/ .vxe-table--render-default .vxe-body--row.row--stripe {
background: #f5f9fe;
// background: #f5f9fe;
position: relative;
background: #fff;
z-index: 1;
&::after{
content: '';
position: absolute;
top: 0;left: 0;
width:100%;
height: 100%;
z-index: 0;
background: @primary-color;
opacity: .04;
z-index: -1;
}
}
/*列表操作按钮颜色 */
/deep/ .operate-btn {

Loading…
Cancel
Save