DetailTable.less
2.65 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.wev-comp-DetailTable{
padding: 5px 15px;
background-color:#fff;
}
.wev-detailtable-container{
position:relative;
border: 1px solid #e9e9e9;
}
.wev-detailtable-view-wrapper{
padding-bottom: 1px;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}
.wev-detailtable-container table{
width: 100%;
table-layout: fixed;
border-collapse: collapse;
}
.wev-detailtable-container table tr > th, .wev-detailtable-container table tr > td{
width: 80px;
border: 1px solid #e9e9e9;
padding: 10px 5px;
font-size: @font-size-base;
font-weight: normal;
background-color: #f3f3f3;
word-break: break-all;
box-sizing:border-box;
}
.wev-detailtable-container table tr > td{
border: 1px solid #e9e9e9;
background-color: #fff;
color: #333;
position:relative;
}
.wev-detailtable-container table tr.checked > td{
background-color: #f8f8f8;
}
.wev-detailtable-container table tr.wev-required-remind > td{
background-color: rgb(255,251,224);
}
.wev-detailtable-container table tr.wev-required-remind > td.required:after{
content: ' ';
border-bottom: 10px solid transparent;
border-right: 10px solid red;
position: absolute;
right: 0;
top: 0;
}
.wev-detailtable-container table tr > td.rowindex > i{
width: 14px;
height: 14px;
display: block;
margin: 0 auto;
background-size: 14px;
background-image: url(/mobilemode/mobile/images/plugin/box-unchecked.png);
}
.wev-detailtable-container table tr.checked > td.rowindex > i{
background-image: url(/mobilemode/mobile/images/plugin/box-checked.png);
}
.wev-detailtable-container table tr > th{
color:#333;
text-align: center;
border-top: 0;
}
.wev-detailtable-container table tr > th:first-child,
.wev-detailtable-container table tr > td:first-child{
border-left: 0;
text-align: center;
width: 40px;
}
.wev-detailtable-container table tr > th:last-child,
.wev-detailtable-container table tr > td:last-child{
border-right: 0;
}
.wev-detailtable-container table tr:first-child > td{
border-top:0;
}
.wev-detailtable-container table tr:last-child > td{
border-bottom:0;
}
.wev-detailtable-view-wrapper .wev-detailtable-content-wrapper{
overflow-y: auto;
overflow-x: hidden;
min-height: 20px;
transition: transform 0.3s;
transition-delay: 0.1s;
}
.wev-comp-DetailTable.wev-refreshing .wev-detailtable-view-wrapper .wev-detailtable-content-wrapper{
min-height: 50px;
}
.wev-detailtable-btn-container .wev-btn{
float: right;
margin: 5px 0px 5px 8px;
padding:4px 10px;
}
.wev-detailtable-view-wrapper .wev-detailtable-content-wrapper .wev-haslink{
text-decoration:underline;
color:var(--themeColor);
font-style:italic;
}