GridTable_wev8.css
1.92 KB
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
80
.wev-gridtable-view-wrapper{
background-color:#fff;
border-top: 1px solid #e9e9e9;
border-bottom: 1px solid #e9e9e9;
}
.wev-gridtable-content-wrapper{
position:relative;
}
.wev-gridtable-view-wrapper table{
table-layout: fixed;
border-collapse: collapse;
font-size:14px;
}
.wev-gridtable-fixed-col{
visibility: hidden;
}
.wev-gridtable-view-wrapper table>thead>tr>th,
.wev-gridtable-view-wrapper table>tbody>tr>td
{
padding: 16px 8px;
word-break: break-all;
box-sizing:content-box;
}
.wev-gridtable-content-wrapper table>thead>tr>th {
background: #f3f3f3;
font-weight: 500;
transition: background .3s ease;
text-align: left;
color: rgba(0,0,0,.85);
border-bottom: 1px solid #e9e9e9;
}
.wev-gridtable-content-wrapper table>tbody>tr>td{
border-bottom: 1px solid #e9e9e9;
color: rgba(0,0,0,.65);
}
.wev-gridtable-content-wrapper table>tbody>tr:last-child>td{
border-bottom: 0;
}
.wev-gridtable-fixed-content-body-wrapper>table>tbody>tr>td,
.wev-gridtable-fixed-content-body-wrapper-mapping>table>tbody>tr>td
{
background-color:#fff;
}
.wev-gridtable-main-content-wrapper{
overflow-x: scroll;
}
.wev-gridtable-main-content-body-wrapper,.wev-gridtable-fixed-content-body-wrapper{
position: relative;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
.wev-gridtable-fixed-content-wrapper{
position: absolute;
top: 0;
left: 0;
z-index: 100;
}
.wev-gridtable-fixed-content-body-wrapper-mapping{
position: absolute;
top: 0;
left: 0;
z-index: 99;
}
.wev-comp-GridTable .wev-refresh-loading{
position:relative;
}
.wev-refreshing .wev-gridtable-view-wrapper, .wev-refreshing .wev-gridtable-fixed-content-body-wrapper{
visibility: hidden !important;
}
.wev-gridtable-view-wrapper table tr.wev-groupsum td{
background-color:#fbfbfb;
font-weight: 500;
color: rgba(0,0,0,.85);
}
.wev-gridtable-view-wrapper .wev-more-btn{
border-top: 1px solid #e9e9e9;
}