frame.css
2.88 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*公用框架的样式*/
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
outline: none;
font: 14px "微软雅黑";
}
html,
body {
height: 100%;
width: 100%;
border: 0;
}
body {
background: url(../images/body_bg.png) no-repeat fixed right bottom;
background-color: #f3f5f6;
}
.clear {
clear: both;
width: 0;
height: 0;
}
/*-------使用Table做为布局--------*/
table.settingsContainer {
border: 0;
border-collapse: collapse;
position: relative;
}
table.settingsContainer tr td {
height: 28px;
padding-top: 1px;
padding-bottom: 1px;
}
.tdTitle {
text-align: right;
padding-right: 10px;
}
.tdContent {
text-align: left;
padding-left: 10px;
}
.settingParameter {
width: 150px;
border: 1px solid gray;
height: 21px;
line-height: 21px;
}
.settingParameter.timePicker,
.Wdate.timePicker {
background: url(../images/timePicker.png) no-repeat 101% -1px;
}
select.settingParameter {
height: 23px;
width: 152px;
line-height: 23px;
}
.fileInput {
width: 250px;
}
.fake_input {
border: 1px solid gray;
width: 250px;
}
input[type="file"]::-ms-browse {
border: 1px solid gray;
cursor: pointer;
}
input[type="file"]::-ms-value {
border: 1px solid gray;
}
select::-ms-expand {
border: 0;
}
/*修正checkbox与后面元素对不齐*/
.checkboxAlign {
vertical-align: -1px;
margin-right: 5px;
}
/*通用的保存按钮样式*/
a.settingBtn {
display: block;
height: 23px;
line-height: 23px;
width: 98px;
border: 0;
background: url(../images/btn_bg.png) no-repeat 0 0;
margin-right: 0;
text-align: center;
cursor: pointer;
color: black;
outline: none;
}
a.settingBtn:link,
a.settingBtn:visited,
a.settingBtn:hover {
color: black;
}
a.settingBtn:active {
background-position: 0 -23px;
}
/*保存失败的输入框错误样式*/
.save-failed {
border-color: red;
}
/*------------自定义(Tabs)标签页样式-----------*/
.tab_header {
padding: 8px 5px;
}
.tab_header .tab_title {
float: left;
display: block;
width: 88px;
height: 28px;
margin-left: 1px;
background-color: black;
color: white;
line-height: 28px;
text-align: center;
cursor: pointer;
}
.tab_header .tab_title.selected {
background-color: #bd0000;
}
.tableTitle {
text-align: center;
font-weight: bold;
}
.tab_content {
padding: 0 5px;
/*height: 500px;*/
width: 900px;
}
.tab_content .content_group {
background-color: #dcdfe2;
margin-bottom: 20px;
padding-left: 20px;
padding-bottom: 10px;
}
/*验证的Css样式*/
input.error {
border-color: red;
background-color: #efb0a7;
}
.error {
color: red;
margin-left: 5px;
}
label.disabled {
color: gray;
/*background-color: #F0F0F0;*/
}
.needRebootHint {
color: #bd0000;
}