vft 0.0.84 → 0.0.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/attributes.json +1 -1
- package/dist/index.css +1 -1
- package/es/components/context-menu/style/css.js +5 -0
- package/es/components/table/columns.js +10 -0
- package/es/components/table/table.vue2.js +121 -154
- package/es/package.json.js +1 -1
- package/lib/components/context-menu/style/css.cjs +1 -1
- package/lib/components/table/columns.cjs +1 -0
- package/lib/components/table/table.vue2.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/package.json +1 -1
- package/tags.json +1 -1
- package/theme-style/index.css +1 -1
- package/theme-style/src/table.scss +105 -66
- package/theme-style/src/tree.scss +2 -3
- package/theme-style/vft-table.css +1 -1
- package/theme-style/vft-tree.css +1 -1
- package/web-types.json +1 -1
|
@@ -9,6 +9,10 @@ $name: table;
|
|
|
9
9
|
|
|
10
10
|
@include b($name) {
|
|
11
11
|
.vxe-table {
|
|
12
|
+
.border--full {
|
|
13
|
+
background-image: linear-gradient(#f2f4f9, #f2f4f9), linear-gradient(#f2f4f9, #f2f4f9);
|
|
14
|
+
}
|
|
15
|
+
|
|
12
16
|
.vxe-table--fixed-left-wrapper {
|
|
13
17
|
z-index: 10;
|
|
14
18
|
overflow: unset;
|
|
@@ -20,8 +24,8 @@ $name: table;
|
|
|
20
24
|
}
|
|
21
25
|
|
|
22
26
|
.vxe-table--header-wrapper {
|
|
23
|
-
background-color: #f3fbfe;
|
|
24
|
-
|
|
27
|
+
// background-color: #f3fbfe;
|
|
28
|
+
background-color: rgb(248, 250, 255);
|
|
25
29
|
|
|
26
30
|
position: sticky !important;
|
|
27
31
|
top: 0px;
|
|
@@ -29,88 +33,110 @@ $name: table;
|
|
|
29
33
|
overflow: hidden;
|
|
30
34
|
}
|
|
31
35
|
|
|
32
|
-
.
|
|
33
|
-
background-color: #f3fbfe;
|
|
36
|
+
.headerRowClass {
|
|
37
|
+
// background-color: #f3fbfe;
|
|
38
|
+
// background-color: rgb(248, 250, 255);
|
|
34
39
|
color: rgba(0, 0, 0, 0.85);
|
|
35
40
|
user-select: none;
|
|
36
|
-
|
|
37
|
-
line-height: 17px;
|
|
38
|
-
font-size: 12px;
|
|
39
|
-
padding: 8px 0;
|
|
41
|
+
cursor: pointer;
|
|
40
42
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
.vxe-header--column {
|
|
44
|
+
font-weight: 500;
|
|
45
|
+
line-height: 17px;
|
|
46
|
+
font-size: 12px;
|
|
47
|
+
padding: 8px 0;
|
|
45
48
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
.vxe-cell {
|
|
50
|
+
display: flex;
|
|
51
|
+
align-items: center;
|
|
52
|
+
justify-content: center;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
51
55
|
}
|
|
56
|
+
}
|
|
52
57
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
58
|
+
.vxe-table--render-default .vxe-body--column.col--ellipsis:not(.col--actived) > .vxe-cell,
|
|
59
|
+
.vxe-table--render-default .vxe-footer--column.col--ellipsis:not(.col--actived) > .vxe-cell,
|
|
60
|
+
.vxe-table--render-default .vxe-header--column.col--ellipsis:not(.col--actived) > .vxe-cell {
|
|
61
|
+
white-space: normal;
|
|
62
|
+
max-height: inherit;
|
|
63
|
+
}
|
|
56
64
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
65
|
+
.vxe-cell {
|
|
66
|
+
white-space: normal;
|
|
67
|
+
// max-height: max-content;
|
|
68
|
+
// display: table-cell;
|
|
69
|
+
// display: contents;
|
|
70
|
+
// padding-top: 8px;
|
|
71
|
+
// padding-bottom: 8px;
|
|
72
|
+
}
|
|
64
73
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
74
|
+
.vxe-table--render-default .vxe-body--column.cellClass {
|
|
75
|
+
// padding: 4px 0;
|
|
76
|
+
// height: unset;
|
|
77
|
+
// box-sizing: content-box;
|
|
68
78
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
79
|
+
// padding: 0;
|
|
80
|
+
padding: 6px 0;
|
|
81
|
+
height: 32px;
|
|
82
|
+
box-sizing: border-box;
|
|
83
|
+
border-bottom: none;
|
|
84
|
+
overflow-wrap: break-word;
|
|
85
|
+
font-size: 13px;
|
|
86
|
+
line-height: 20px;
|
|
87
|
+
color: #111111;
|
|
88
|
+
font-weight: 400;
|
|
89
|
+
|
|
90
|
+
.vxe-cell--label {
|
|
91
|
+
@include line-clamp(2);
|
|
92
|
+
}
|
|
72
93
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
94
|
+
.vxe-cell {
|
|
95
|
+
@include line-clamp(2);
|
|
96
|
+
}
|
|
76
97
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
cursor: pointer;
|
|
98
|
+
.line-clamp {
|
|
99
|
+
@include line-clamp(2);
|
|
100
|
+
}
|
|
81
101
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
102
|
+
a {
|
|
103
|
+
color: $primary-color;
|
|
104
|
+
font-size: 13px;
|
|
105
|
+
cursor: pointer;
|
|
86
106
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
font-style: normal;
|
|
107
|
+
&:hover {
|
|
108
|
+
text-decoration: underline;
|
|
90
109
|
}
|
|
91
110
|
}
|
|
92
111
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
112
|
+
em {
|
|
113
|
+
color: #fe3a2f;
|
|
114
|
+
font-style: normal;
|
|
96
115
|
}
|
|
116
|
+
}
|
|
97
117
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
118
|
+
.vxe-sort--asc-btn, .vxe-sort--desc-btn {
|
|
119
|
+
/** 排序图标点击事件禁用*/
|
|
120
|
+
pointer-events: none;
|
|
121
|
+
height: 12px;
|
|
122
|
+
line-height: 12px;
|
|
123
|
+
font-size: 10px;
|
|
124
|
+
}
|
|
102
125
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
126
|
+
.remark {
|
|
127
|
+
color: #111;
|
|
128
|
+
position: relative;
|
|
129
|
+
cursor: pointer;
|
|
130
|
+
|
|
131
|
+
&::after {
|
|
132
|
+
content: '*';
|
|
133
|
+
color: #f64c4c;
|
|
134
|
+
position: absolute;
|
|
135
|
+
font-size: 18px;
|
|
136
|
+
right: -8px;
|
|
137
|
+
top: 0;
|
|
111
138
|
}
|
|
112
139
|
}
|
|
113
|
-
|
|
114
140
|
.vxe-grid--bottom-wrapper {
|
|
115
141
|
position: sticky;
|
|
116
142
|
bottom: 0;
|
|
@@ -123,23 +149,36 @@ $name: table;
|
|
|
123
149
|
overflow-x: auto;
|
|
124
150
|
border-radius: 4px;
|
|
125
151
|
background-color: transparent;
|
|
126
|
-
border-right: 1px solid #
|
|
152
|
+
border-right: 1px solid #EBEEF5;
|
|
127
153
|
box-sizing: content-box;
|
|
128
154
|
z-index: 9;
|
|
129
155
|
display: block;
|
|
130
|
-
}
|
|
131
156
|
|
|
157
|
+
}
|
|
132
158
|
@include e(sticky-scroll-bar) {
|
|
133
159
|
height: 1px;
|
|
134
160
|
width: 100%;
|
|
135
161
|
box-sizing: border-box;
|
|
136
162
|
}
|
|
137
163
|
|
|
164
|
+
.vxe-table--render-default {
|
|
165
|
+
|
|
166
|
+
&.border--full .vxe-body--column, .vxe-header--column {
|
|
167
|
+
|
|
168
|
+
background-image: linear-gradient(#f2f4f9, #f2f4f9), linear-gradient(#f2f4f9, #f2f4f9);
|
|
169
|
+
background-size: 1px 100%, 100% 0px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.vxe-body--row.row--stripe {
|
|
173
|
+
background-color: rgb(248, 250, 255) !important;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
138
177
|
@include m(pager-bottom-right) {
|
|
139
178
|
margin-top: 10px;
|
|
140
179
|
justify-content: flex-end;
|
|
141
180
|
.btn-next {
|
|
142
|
-
margin-right: 0!important;
|
|
181
|
+
margin-right: 0 !important;
|
|
143
182
|
}
|
|
144
183
|
}
|
|
145
184
|
|
|
@@ -121,8 +121,7 @@
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
.#{$namespace}-tree--highlight-current
|
|
125
|
-
.#{$namespace}-tree-node.is-current
|
|
126
|
-
> .#{$namespace}-tree-node__content {
|
|
124
|
+
.#{$namespace}-tree--highlight-current .#{$namespace}-tree-node.is-current > .#{$namespace}-tree-node__content {
|
|
127
125
|
background-color: getCssVar('primary-color-light-9');
|
|
126
|
+
color: getCssVar('primary-color');
|
|
128
127
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-table .vxe-table .vxe-table--fixed-left-wrapper{z-index:10;overflow:unset}.vft-table .vxe-table .vxe-table--fixed-left-wrapper .vxe-table--body-wrapper{width:100%;overflow-y:hidden}.vft-table .vxe-table .vxe-table--header-wrapper{background-color:#
|
|
1
|
+
@charset "UTF-8";.vft-table .vxe-table .border--full{background-image:linear-gradient(#f2f4f9,#f2f4f9),linear-gradient(#f2f4f9,#f2f4f9)}.vft-table .vxe-table .vxe-table--fixed-left-wrapper{z-index:10;overflow:unset}.vft-table .vxe-table .vxe-table--fixed-left-wrapper .vxe-table--body-wrapper{width:100%;overflow-y:hidden}.vft-table .vxe-table .vxe-table--header-wrapper{background-color:#f8faff;position:sticky!important;top:0;z-index:10;overflow:hidden}.vft-table .vxe-table .headerRowClass{color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer}.vft-table .vxe-table .headerRowClass .vxe-header--column{font-weight:500;line-height:17px;font-size:12px;padding:8px 0}.vft-table .vxe-table .headerRowClass .vxe-header--column .vxe-cell{display:flex;align-items:center;justify-content:center}.vft-table .vxe-table--render-default .vxe-body--column.col--ellipsis:not(.col--actived)>.vxe-cell,.vft-table .vxe-table--render-default .vxe-footer--column.col--ellipsis:not(.col--actived)>.vxe-cell,.vft-table .vxe-table--render-default .vxe-header--column.col--ellipsis:not(.col--actived)>.vxe-cell{white-space:normal;max-height:inherit}.vft-table .vxe-cell{white-space:normal}.vft-table .vxe-table--render-default .vxe-body--column.cellClass{padding:6px 0;height:32px;box-sizing:border-box;border-bottom:none;overflow-wrap:break-word;font-size:13px;line-height:20px;color:#111;font-weight:400}.vft-table .vxe-table--render-default .vxe-body--column.cellClass .vxe-cell--label{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table--render-default .vxe-body--column.cellClass .vxe-cell{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table--render-default .vxe-body--column.cellClass .line-clamp{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table--render-default .vxe-body--column.cellClass a{color:var(--vft-primary-color);font-size:13px;cursor:pointer}.vft-table .vxe-table--render-default .vxe-body--column.cellClass a:hover{text-decoration:underline}.vft-table .vxe-table--render-default .vxe-body--column.cellClass em{color:#fe3a2f;font-style:normal}.vft-table .vxe-sort--asc-btn,.vft-table .vxe-sort--desc-btn{pointer-events:none;height:12px;line-height:12px;font-size:10px}.vft-table .remark{color:#111;position:relative;cursor:pointer}.vft-table .remark::after{content:"*";color:#f64c4c;position:absolute;font-size:18px;right:-8px;top:0}.vft-table .vxe-grid--bottom-wrapper{position:sticky;bottom:0;z-index:3000}.vft-table__sticky-scroll-warpper{height:10px;width:100%;overflow-x:auto;border-radius:4px;background-color:transparent;border-right:1px solid #ebeef5;box-sizing:content-box;z-index:9;display:block}.vft-table__sticky-scroll-bar{height:1px;width:100%;box-sizing:border-box}.vft-table .vxe-table--render-default .vxe-header--column,.vft-table .vxe-table--render-default.border--full .vxe-body--column{background-image:linear-gradient(#f2f4f9,#f2f4f9),linear-gradient(#f2f4f9,#f2f4f9);background-size:1px 100%,100% 0}.vft-table .vxe-table--render-default .vxe-body--row.row--stripe{background-color:#f8faff!important}.vft-table--pager-bottom-right{margin-top:10px;justify-content:flex-end}.vft-table--pager-bottom-right .btn-next{margin-right:0!important}.vft-table--pager-bottom-left{margin-top:10px;justify-content:flex-start}.vft-table--pager-bottom-left .btn-prev{margin-left:0!important}.vft-table--pager-top-right{margin-bottom:10px;justify-content:flex-end}.vft-table--pager-top-right .btn-next{margin-right:0!important}.vft-table--pager-top-left{margin-bottom:10px;justify-content:flex-start}.vft-table--pager-top-left .btn-prev{margin-left:0!important}
|
package/theme-style/vft-tree.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-top-fast-enter-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-fast-enter-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top}.vft-zoom-in-top-fast-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-enter-from,.vft-zoom-in-top-fast-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}.vft-tree{--vft-tree-node-hover-bg-color:var(--vft-fill-color-light);--vft-tree-text-color:var(--vft-text-regular-color);--vft-tree-expand-icon-color:var(--vft-text-placeholder-color)}.vft-tree{position:relative;cursor:default;background:var(--vft-fill-color-blank);color:var(--vft-tree-text-color);font-size:var(--vft-font-size-base)}.vft-tree__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.vft-tree__empty-text{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);color:var(--vft-text-secondary-color);font-size:var(--vft-font-size-base)}.vft-tree__drop-indicator{position:absolute;left:0;right:0;height:1px;background-color:var(--vft-primary-color)}.vft-tree-node{white-space:nowrap;outline:0}.vft-tree-node:focus>.vft-tree-node__content{background-color:var(--vft-tree-node-hover-bg-color)}.vft-tree-node.is-drop-inner>.vft-tree-node__content .vft-tree-node__label{background-color:var(--vft-primary-color);color:#fff}.vft-tree-node__content{display:flex;align-items:center;height:26px;cursor:pointer}.vft-tree-node__content>label.vft-checkbox{margin-right:8px}.vft-tree-node__content:hover{background-color:var(--vft-tree-node-hover-bg-color)}.vft-tree.is-dragging .vft-tree-node__content{cursor:move}.vft-tree.is-dragging .vft-tree-node__content *{pointer-events:none}.vft-tree.is-dragging.is-drop-not-allow .vft-tree-node__content{cursor:not-allowed}.vft-tree-node__expand-icon{cursor:pointer;color:var(--vft-tree-expand-icon-color);font-size:12px;margin-right:6px;transform:rotate(0);transition:transform var(--vft-transition-duration) ease-in-out}.vft-tree-node__expand-icon.expanded{transform:rotate(90deg)}.vft-tree-node__expand-icon.is-leaf{color:transparent;cursor:default}.vft-tree-node__expand-icon.is-hidden{visibility:hidden}.vft-tree-node__loading-icon{margin-right:8px;font-size:var(--vft-font-size-base);color:var(--vft-tree-expand-icon-color)}.vft-tree-node>.vft-tree-node__children{overflow:hidden;background-color:transparent}.vft-tree-node.is-expanded>.vft-tree-node__children{display:block}.vft-tree--highlight-current .vft-tree-node.is-current>.vft-tree-node__content{background-color:var(--vft-primary-color-light-9)}
|
|
1
|
+
.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-top-fast-enter-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-fast-enter-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top}.vft-zoom-in-top-fast-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-enter-from,.vft-zoom-in-top-fast-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}.vft-tree{--vft-tree-node-hover-bg-color:var(--vft-fill-color-light);--vft-tree-text-color:var(--vft-text-regular-color);--vft-tree-expand-icon-color:var(--vft-text-placeholder-color)}.vft-tree{position:relative;cursor:default;background:var(--vft-fill-color-blank);color:var(--vft-tree-text-color);font-size:var(--vft-font-size-base)}.vft-tree__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.vft-tree__empty-text{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);color:var(--vft-text-secondary-color);font-size:var(--vft-font-size-base)}.vft-tree__drop-indicator{position:absolute;left:0;right:0;height:1px;background-color:var(--vft-primary-color)}.vft-tree-node{white-space:nowrap;outline:0}.vft-tree-node:focus>.vft-tree-node__content{background-color:var(--vft-tree-node-hover-bg-color)}.vft-tree-node.is-drop-inner>.vft-tree-node__content .vft-tree-node__label{background-color:var(--vft-primary-color);color:#fff}.vft-tree-node__content{display:flex;align-items:center;height:26px;cursor:pointer}.vft-tree-node__content>label.vft-checkbox{margin-right:8px}.vft-tree-node__content:hover{background-color:var(--vft-tree-node-hover-bg-color)}.vft-tree.is-dragging .vft-tree-node__content{cursor:move}.vft-tree.is-dragging .vft-tree-node__content *{pointer-events:none}.vft-tree.is-dragging.is-drop-not-allow .vft-tree-node__content{cursor:not-allowed}.vft-tree-node__expand-icon{cursor:pointer;color:var(--vft-tree-expand-icon-color);font-size:12px;margin-right:6px;transform:rotate(0);transition:transform var(--vft-transition-duration) ease-in-out}.vft-tree-node__expand-icon.expanded{transform:rotate(90deg)}.vft-tree-node__expand-icon.is-leaf{color:transparent;cursor:default}.vft-tree-node__expand-icon.is-hidden{visibility:hidden}.vft-tree-node__loading-icon{margin-right:8px;font-size:var(--vft-font-size-base);color:var(--vft-tree-expand-icon-color)}.vft-tree-node>.vft-tree-node__children{overflow:hidden;background-color:transparent}.vft-tree-node.is-expanded>.vft-tree-node__children{display:block}.vft-tree--highlight-current .vft-tree-node.is-current>.vft-tree-node__content{background-color:var(--vft-primary-color-light-9);color:var(--vft-primary-color)}
|