-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathaform.css
131 lines (120 loc) · 2.32 KB
/
aform.css
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* 输入控件的样式 */
.json-basic-element /* 输入控件外层容器样式 */
{
padding:5px;
}
label.json-field-label /* 输入控件左侧label样式 */
{
display:inline-block;
width:110px;
font-weight:bold;
font-size:13px;
color:#666;
}
.json-Object {
margin-bottom:5px;
}
.json-Object legend /* fieldset legend */
{
font-weight:bold;
font-size:14px;
color:#666;
padding-bottom:10px;
}
.json-basic-element input[readonly] /* 只读输入框的样式 */
{
border:none;
}
textarea.json-field-input /* 文本区域的样式 */
{
width:100%;
margin-top:5px;
}
.json-Boolean label /* 布尔类型控件左侧label样式 */
{
display:inline-block;
}
.json-field-input label
{
margin-right:5px;
}
input.json-form-dirty /* 被修改过值的输入框的样式 */
{
border-right:3px solid green;
}
span.json-form-required /* 必填提示容器span的样式 */
{
color:red;
padding-right:4px;
}
/* 字段组合容器样式 */
fieldset.json-Object /* fieldset的样式,该fieldset是一个Object的编辑容器 */
{
/* border:1px solid #000; */
}
/* 数组表格样式 */
table.json-Array /* 数组表格的样式 */
{
border:1px solid #c0c0c0;
border-collapse:collapse;
width:100%;
}
table.json-Array td,table.json-Array th
{
border:1px solid #c0c0c0;
}
table.json-Array caption /* 数组表格标题caption的样式 */
{
text-align:left;
padding:5px;
font-size:16px;
color: #666;
}
table.json-Array th /* 数组表格表头的样式 */
{
padding:5px;
text-align:center;
}
table.json-Array td.json-form-rowNumber /* 数组表格序号列单元格的样式 */
{
text-align:center;
vertical-align:middle;
}
table.json-Array td.json-form-actionCell /* 数组表格操作列单元格的样式 */
{
text-align:center;
vertical-align:middle;
}
table.json-Array td /* 数组表格单元格的样式 */
{
text-align:center;
}
table.json-Array td .form-group /* 数组表格表头的样式 */
{
margin-bottom : 0;
}
table.json-Array a.json-form-action /* 数组表格操作列单元格下删除链接的样式 */
{
text-decoration:none;
}
label.json-form-collapser input{
}
label.json-form-collapser:before{
}
th.json-form-required:after{
content: "*";
color: red;
}
label.json-form-un-checked{
position: relative;
}
/*展开的状态*/
label.json-form-ctrl-un-collapse{
padding-left: 20px;
background: url("img/arrow_collapsed.png") no-repeat left center;
}
/*折叠的状态*/
label.json-form-ctrl-collapse{
padding-left: 20px;
background: url("img/arrow_expanded.png") no-repeat 3px center;
}