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
| .datacard table {
| width: 100%;
| }
| .datacard tr {
|
| }
| .datacard th {
| background-color: #f3eded;
| width: 100px;
| text-align: center;
| }
| .datacard td {
| width: 200px;
| }
|
| .datacard_group {
| height: 20px;
| }
|
| .datacard_cell {
| height: 32px;
| }
|
| .datacard th, .datacard td{
| border: 1px solid #dcc7c7;
| }
| .datacard input {
| width: 98%;
| height: 100%;
| border: none;
| padding-left: 2%;
| }
|
| .datacard select {
| width: 100%;
| height: 100%;
| border: none;
| padding-left: 5%;
| }
|
| .datacard_value_editor {
| position: absolute;
| left: 0px;
| top: 0px;
| right: 28px;
| bottom: 1px;
| }
|
| .datacard_value_validator {
| position: absolute;
| right: 0px;
| top: 0px;
| width: 28px;
| height: 100%;
| padding-top: 5px;
| cursor: pointer;
| }
|
| .datacard_title {
| margin-top: 3px;
| margin-left: 20px;
| height: 20px;
| font-style: italic;
| text-align: left;
| }
|
| .datacard_title_img {
| height: 18px;
| float: left;
| margin-right: 5px;
| }
|
|