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
68
69
70
71
72
73
74
75
76
77
78
79
| .ivu-table th {
| border-bottom-color: #cdcdcd !important;
| }
|
| .no-wrap td .ivu-table-cell {
| white-space: nowrap;
| }
|
| .ivu-table-mini {
| font-size: 12px;
|
| td {
| height: 28px;
|
| &.ivu-table-expanded-cell {
| padding: 10px 40px;
| }
|
| .ivu-table-cell-with-expand {
| height: 28px;
| line-height: 28px;
| }
| }
|
| thead .ivu-table-cell {
| padding-left: 6px;
| padding-right: 4px;
| }
|
| margin-bottom:12px;
| }
|
| .col-gap-none .ivu-table-cell {
| padding-left: 0;
| padding-right: 0;
| width: 100%;
| height: 100%;
|
| >div,
| >a,
| >span {
| width: 100%;
| height: 100%;
| padding-left: 6px;
| padding-right: 6px;
| padding-top: 4px;
| padding-bottom: 4px;
| }
|
| >a,
| >span {
| display: block;
| }
|
| &.ivu-table-cell-with-selection {
| padding-top: 3px;
| }
| }
|
| .ivu-table {
| .ivu-table-tbody {
| background-color: #fff;
| }
| }
|
| .ivu-table-header thead tr th,
| .ivu-table-fixed-header thead tr th {
| // padding: 0 !important;
| text-align: center !important;
| font-size: 12px;
| }
|
| .ivu-table {
| .column-hidden {
| div {
| white-space: nowrap;
| }
| }
| }
|
|