wzp
2021-07-19 e65183d31755a0e5fae4bf428435d2e0fd6afdc5
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
@CHARSET "UTF-8";
 
.bsgrid_form {
    width: 100%;
    font-size: 13px;
    background-color: white;
}
 
.bsgrid_form .formLabel {
    width: 20%;
    color: #000;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
.bsgrid_form .formInput {
    width: 80%;
    color: #333;
    text-align: left;
    overflow: auto;
}
 
.bsgrid_form .formInput input, .bsgrid_form .formInput select, .bsgrid_form .formInput textarea, .bsgrid_form .formInput div.assist {
    width: 64%;
    background-color: white;
}
 
.bsgrid_form .formInput input {
    height: 1.8em;
    line-height: 1.8em;
    vertical-align: middle;
    padding-left: 1px;
}
 
.bsgrid_form .formInput textarea, .bsgrid_form .formInput div.assist {
    height: 8em;
}
 
.bsgrid_form .formInput div.assist {
    overflow: auto;
    word-wrap: break-word;
    word-break: break-all;
}
 
.bsgrid_form .formInput .radio {
    width: 20px;
}
 
.bsgrid_form .formInput .checkbox {
    width: 20px;
    text-align: left;
}
 
.bsgrid_form .formInput .inputTip {
    margin-left: 3px;
    color: #f18300;
    font-size: 12px;
}
 
.bsgrid_form .require {
    color: #ff0000;
    font-weight: bold;
    line-height: 1.5em;
}