Files
vxe-table/styles/base/common.scss
xuliangzhan 0cfaa48441 update
2019-07-01 18:43:55 +08:00

46 lines
790 B
SCSS

%boxSizing {
box-sizing: border-box;
}
[class*="vxe-"] {
@extend %boxSizing;
*:after, *:before {
@extend %boxSizing;
}
}
/*animat*/
.t--animat {
.vxe-sort--asc-btn,
.vxe-sort--desc-btn,
.vxe-filter--btn {
&:before,
&:after {
@include animatTransition(border);
}
}
.vxe-table--expand-icon{
@include animatTransition(all);
}
.vxe-header--column,
.vxe-body--column,
.vxe-body--row {
@include animatTransition(background-color);
}
.vxe-input--wrapper {
.vxe-input {
@include animatTransition(border);
}
}
.vxe-tree--node-btn {
@include animatTransition(transform);
}
.vxe-checkbox,
.vxe-radio {
> input {
&:checked+span {
@include animatTransition(background-color);
}
}
}
}