Files
vxe-table/styles/grid.scss
xuliangzhan e5b234a350 update
2019-06-20 18:25:01 +08:00

25 lines
502 B
SCSS

/**Variable**/
.vxe-grid {
.vxe-body--row {
&.row--pending {
color: $vxe-table-validate-error-color;
text-decoration: line-through;
cursor: no-drop;
.vxe-body--column {
position: relative;
&:after {
content: "";
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 0;
border-bottom: 1px solid $vxe-table-validate-error-color;
z-index: 1;
}
}
}
}
}