-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.scss
67 lines (65 loc) · 1.47 KB
/
style.scss
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
$vxe-excel-column-checked-border-width: 2px;
$vxe-excel-column-checked-border-color: #409eff;
/*excel*/
.vxe-table {
&.vxe-editable {
&.vxe-excel {
&.c--checked {
cursor: default;
.vxe-header--column {
.vxe-resizable {
cursor: default;
}
}
}
.vxe-header--column {
padding: 4px 0;
font-size: 12px;
transition: none;
cursor: default;
}
.vxe-body--column {
padding: 0;
transition: none;
height: auto;
line-height: 24px;
vertical-align: top;
cursor: cell;
&.col--actived {
.vxe-cell {
padding: 0;
}
}
.vxe-cell {
padding: 0 2px;
word-break: break-all;
.vxe-textarea {
height: inherit;
min-height: inherit;
position: relative;
.vxe-textarea--inner {
position: absolute;
overflow: hidden;
padding: 0 2px;
z-index: 1;
}
.vxe-textarea--inner,
.vxe-textarea--inner:focus {
border-radius: 0;
border: 0;
outline: $vxe-excel-column-checked-border-width solid $vxe-excel-column-checked-border-color;
}
}
}
}
}
}
}
@keyframes shine {
0% {
background-position: -1px -1px;
}
100% {
background-position: -12px -12px;
}
}