1
|
body {
|
2
|
background-color: #ecf0f5;
|
3
|
}
|
4
|
|
5
|
main {
|
6
|
margin-top: 15px;
|
7
|
}
|
8
|
|
9
|
.container {
|
10
|
padding: 0;
|
11
|
}
|
12
|
|
13
|
.container > h1
|
14
|
{
|
15
|
font-size: 24px;
|
16
|
}
|
17
|
|
18
|
.box {
|
19
|
border-radius: 3px;
|
20
|
background: #ffffff;
|
21
|
border-top: 3px solid #d2d6de;
|
22
|
border-top-color: #005cab;
|
23
|
margin-bottom: 20px;
|
24
|
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
|
25
|
|
26
|
padding: 5px 5px 5px 5px;
|
27
|
}
|
28
|
|
29
|
.box-title {
|
30
|
display: inline-block;
|
31
|
font-weight: bold;
|
32
|
font-size: 18px;
|
33
|
margin: 0;
|
34
|
line-height: 1;
|
35
|
}
|
36
|
|
37
|
.box-header {
|
38
|
border-bottom: 1px solid #f4f4f4;
|
39
|
color: #444;
|
40
|
display: block;
|
41
|
padding: 10 10 10 0;
|
42
|
position: relative;
|
43
|
}
|
44
|
|
45
|
table {
|
46
|
margin-top: 10px;
|
47
|
}
|
48
|
|
49
|
|
50
|
.button-container {
|
51
|
margin-top: 10px;
|
52
|
margin-bottom: 10px;
|
53
|
}
|
54
|
|
55
|
.align-right {
|
56
|
float: right;
|
57
|
}
|
58
|
|
59
|
.action-button {
|
60
|
width: 28px;
|
61
|
height: 24px;
|
62
|
background: #f5f5f5;
|
63
|
text-align: center;
|
64
|
box-shadow: 0 0 1px #b3b3b3;
|
65
|
color: #333333;
|
66
|
display: inline-block;
|
67
|
}
|
68
|
|
69
|
.action-button a{
|
70
|
color: #333333;
|
71
|
text-decoration: none;
|
72
|
padding-top: 4px;
|
73
|
}
|
74
|
|
75
|
.center-cell {
|
76
|
display: inline-block;
|
77
|
border: none !important;
|
78
|
|
79
|
}
|
80
|
table > tbody > tr > td > .action-wrapper {
|
81
|
text-align:center;
|
82
|
margin-left:auto;
|
83
|
margin-right:auto;
|
84
|
}
|
85
|
|
86
|
table > thead {
|
87
|
text-align:center;
|
88
|
margin-left:auto;
|
89
|
margin-right:auto;
|
90
|
}
|
91
|
|
92
|
.submit_center_button {
|
93
|
text-align: center;
|
94
|
}
|
95
|
|
96
|
.enum_box {
|
97
|
padding-left: 20px;
|
98
|
}
|
99
|
|
100
|
.enum_values {
|
101
|
padding-left: 20px;
|
102
|
}
|
103
|
|
104
|
.panel {
|
105
|
border: 1px solid #d2d6de;
|
106
|
border-radius: 4px;
|
107
|
margin-bottom: 5px;
|
108
|
}
|
109
|
|
110
|
.panel-body {
|
111
|
padding: 5px;
|
112
|
}
|
113
|
|
114
|
.panel-heading a {
|
115
|
display: inline-block;
|
116
|
margin: 0;
|
117
|
padding-top: 3px;
|
118
|
text-decoration: none;
|
119
|
color: black;
|
120
|
padding-left: 5px;
|
121
|
font-size: 18px;
|
122
|
}
|
123
|
|
124
|
.input-action-box {
|
125
|
display: flex;
|
126
|
}
|
127
|
|
128
|
.input-action-margin {
|
129
|
margin-top: 8px;
|
130
|
}
|
131
|
|
132
|
.input-border-bottom {
|
133
|
border-bottom: 1px solid #d2d6de;
|
134
|
}
|
135
|
|
136
|
.form-add-item {
|
137
|
margin-top: 5px;
|
138
|
margin-bottom: 0px;
|
139
|
}
|
140
|
|
141
|
.margin-select {
|
142
|
margin-top: 2px;
|
143
|
}
|
144
|
|
145
|
.flex {
|
146
|
display:flex;
|
147
|
}
|
148
|
|
149
|
.sort-icon {
|
150
|
margin-top: 13px;
|
151
|
padding-right: 13px;
|
152
|
}
|
153
|
|
154
|
.collapse-actions {
|
155
|
margin-top: -5px;
|
156
|
padding-right: 4px;
|
157
|
}
|
158
|
|
159
|
.action-padding a {
|
160
|
padding-left: 0;
|
161
|
}
|
162
|
|
163
|
.input-action-margin-collapse {
|
164
|
margin-top:8px;
|
165
|
}
|
166
|
|
167
|
.transform {
|
168
|
transform: rotate(90deg);
|
169
|
}
|
170
|
|
171
|
.select-filter {
|
172
|
display: flex;
|
173
|
}
|
174
|
|
175
|
table .col-1 { width:30%; }
|
176
|
|
177
|
table .col-2 { width:25%; }
|
178
|
|
179
|
table .col-3 { width:45%; }
|
180
|
|
181
|
|
182
|
.select-input-action-margin-collapse {
|
183
|
margin-top:8px;
|
184
|
}
|
185
|
|
186
|
|
187
|
.select-action-button {
|
188
|
width: 28px;
|
189
|
height: 24px;
|
190
|
background: #f5f5f5;
|
191
|
text-align: center;
|
192
|
box-shadow: 0 0 1px #b3b3b3;
|
193
|
color: #333333;
|
194
|
display: inline-block;
|
195
|
margin-left: 3px;
|
196
|
}
|
197
|
|
198
|
.select-action-button a{
|
199
|
color: #333333;
|
200
|
text-decoration: none;
|
201
|
padding-top: 4px;
|
202
|
}
|
203
|
|
204
|
.select-filter-input {
|
205
|
margin-left: 3px;
|
206
|
}
|
207
|
|
208
|
.select-text-padding {
|
209
|
margin-top:11px;
|
210
|
display: block;
|
211
|
}
|
212
|
|
213
|
.select-action-headlight {
|
214
|
-webkit-box-shadow: 0px 0px 7px 3px rgba(255,0,0,1);
|
215
|
-moz-box-shadow: 0px 0px 7px 3px rgba(255,0,0,1);
|
216
|
box-shadow: 0px 0px 7px 3px rgba(255,0,0,1);
|
217
|
}
|
218
|
|
219
|
.unselectable {
|
220
|
-moz-user-select: none;
|
221
|
-webkit-user-select: none;
|
222
|
-ms-user-select: none;
|
223
|
}
|
224
|
|
225
|
.selected-input-container {
|
226
|
display:inline-flex;
|
227
|
width: 100%;
|
228
|
flex-wrap: wrap;
|
229
|
justify-content: space-between;
|
230
|
}
|
231
|
|
232
|
.selected-input-box {
|
233
|
border: 1px solid #d2d6de;
|
234
|
width: 33%;
|
235
|
box-shadow: 0 0 1px #b3b3b3;
|
236
|
}
|
237
|
|
238
|
.selected-input-box-icon {
|
239
|
|
240
|
width: 28px;
|
241
|
height: 24px;
|
242
|
background: #f5f5f5;
|
243
|
text-align: center;
|
244
|
box-shadow: 0 0 1px #b3b3b3;
|
245
|
color: #333333;
|
246
|
display: inline-block;
|
247
|
padding-top: 4px;
|
248
|
}
|
249
|
.table-parameter {
|
250
|
margin-top: -26px;
|
251
|
}
|
252
|
|
253
|
.table-parameter >thead > tr >th {
|
254
|
border: none;
|
255
|
}
|
256
|
|
257
|
.table-parameter > tbody > tr > td > span {
|
258
|
margin-top: 8px;
|
259
|
display: block;
|
260
|
}
|
261
|
|
262
|
table .col-1-p { width:35%; }
|
263
|
|
264
|
table .col-2-p { width:55%; }
|
265
|
|
266
|
table .col-3-p { width:10%; }
|
267
|
|
268
|
.template-input {
|
269
|
margin-top: 10px;
|
270
|
}
|
271
|
|
272
|
.template-input-label {
|
273
|
margin-right: 10px;
|
274
|
margin-top: 8px;
|
275
|
}
|
276
|
|
277
|
.template-input-submit {
|
278
|
margin-left: 10px;
|
279
|
}
|
280
|
|
281
|
.name-input {
|
282
|
margin-top: 10px;
|
283
|
width: 50%;
|
284
|
}
|
285
|
|
286
|
.name-input-label {
|
287
|
margin-right: 10px;
|
288
|
margin-top: 16px;
|
289
|
}
|
290
|
|
291
|
|
292
|
|
293
|
.tg {
|
294
|
border-collapse:collapse;
|
295
|
border-spacing:0;
|
296
|
padding: 10px;
|
297
|
border: 1px solid #d2d6de;
|
298
|
box-shadow: 0 0 1px #b3b3b3;
|
299
|
}
|
300
|
.tg td{
|
301
|
font-family:Arial, sans-serif;
|
302
|
font-size:14px;
|
303
|
padding:10px 5px;
|
304
|
overflow:hidden;
|
305
|
word-break:normal;
|
306
|
border: 1px solid #d2d6de;
|
307
|
}
|
308
|
.tg th{
|
309
|
font-family:Arial, sans-serif;
|
310
|
font-size:14px;
|
311
|
font-weight:normal;
|
312
|
padding:10px 5px;
|
313
|
overflow:hidden;
|
314
|
word-break:normal;
|
315
|
border: 1px solid #d2d6de;
|
316
|
}
|
317
|
.tg-align{
|
318
|
text-align:center;
|
319
|
vertical-align:middle !important;
|
320
|
}
|
321
|
|
322
|
.hidden {
|
323
|
display: none !important;
|
324
|
}
|
325
|
|
326
|
.user-panel {
|
327
|
text-align: right;
|
328
|
padding-right: 20px;
|
329
|
padding-top: 20px;
|
330
|
}
|