File tree 2 files changed +29
-0
lines changed
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 2
2
@import ' ../../style/mixins/index' ;
3
3
@import ' ./size' ;
4
4
@import ' ./bordered' ;
5
+ @import ' ./resize.less' ;
5
6
6
7
@table-prefix-cls : ~ ' @{ant-prefix} -table' ;
7
8
@tree-prefix-cls : ~ ' @{ant-prefix} -tree' ;
Original file line number Diff line number Diff line change
1
+ .@{table-prefix-cls} -resize-handle {
2
+ position : absolute ;
3
+ top : 0 ;
4
+ height : 100% !important ;
5
+ bottom : 0 ;
6
+ left : auto !important ;
7
+ right : -8px ;
8
+ cursor : col-resize ;
9
+ touch-action : none ;
10
+ user-select : auto ;
11
+ width : 16px ;
12
+ z-index : 1 ;
13
+ &-line {
14
+ display : block ;
15
+ width : 1px ;
16
+ margin-left : 7px ;
17
+ height : 100% !important ;
18
+ background-color : @primary-color ;
19
+ opacity : 0 ;
20
+ }
21
+ & :hover &-line {
22
+ opacity : 1 ;
23
+ }
24
+ }
25
+
26
+ .dragging .@{table-prefix-cls} -resize-handle-line {
27
+ opacity : 1 ;
28
+ }
You can’t perform that action at this time.
0 commit comments