nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.dgrid-column-resizer {
    cursor: col-resize;
    position: absolute;
    width: 2px;
    background-color: #666;
    z-index: 1000;
}
 
.dgrid-resize-handle {
    height: 100px;
    width: 0;
    position: absolute;
    right: -4px;
    top:-4px;
    cursor: col-resize;
    z-index: 999;
    border-left: 5px solid transparent;
    outline: none;
}
 
.dgrid-resize-header-container {
    height:100%;
}
 
.dgrid-resize-guard {
    // Used to prevent click events trickling down to the underlying header cell
    cursor: col-resize;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
 
// make the resize handles larger on touch-capable devices
html.has-touch .dgrid-resize-handle {
    border-left: 20px solid transparent;
}
html.has-touch .dgrid-column-resizer {
    width: 2px;
}
 
.dgrid-resize-header-container {
    // set to relative so we can do the resizing against this node
    position: relative;
}
.dgrid-header .dgrid-cell {
    overflow: hidden;
}