mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
46 lines
790 B
SCSS
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);
|
|
}
|
|
}
|
|
}
|
|
} |