Skip to content

Commit 04670bb

Browse files
committed
extensive rearrangement
1 parent 7d3f717 commit 04670bb

File tree

3 files changed

+1178
-1100
lines changed

3 files changed

+1178
-1100
lines changed

css/header_dialog.css

Lines changed: 77 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Colums START> */
22
.cf_column {
3-
min-height: 20px;
3+
min-height: 18px;
44
margin-bottom: 0;
55
}
66

@@ -55,6 +55,7 @@
5555
input[type="number"]::-webkit-inner-spin-button {
5656
opacity: 1; /* required for chromium 33+ beta */
5757
margin-left: 5px;
58+
margin-right: 5px;
5859
}
5960

6061
.clear-both {
@@ -73,22 +74,23 @@ input[type="number"]::-webkit-inner-spin-button {
7374
.gui_box {
7475
border: 1px solid #ccc;
7576
border-radius: 4px;
76-
background-color: #FFFFFF;
77+
background-color: #ccc;
7778
float: left;
7879
width: calc(100% - 2px);
7980
margin-bottom: 10px;
8081
font-family: 'open_sansregular', Arial, serif;
8182
}
8283

8384
.gui_box_titlebar {
84-
background-color: #e4e4e4;
85+
background-color: #808080;
8586
border-radius: 3px 3px 0 0;
86-
font-size: 13px;
87+
font-size: 14px;
8788
width: 100%;
8889
height: 27px;
8990
padding-bottom: 0;
9091
float: left;
91-
margin-bottom: 7px;
92+
color: white;
93+
margin-bottom: 0px;
9294
font-family: 'open_sanssemibold', Arial, serif;
9395
}
9496

@@ -101,10 +103,12 @@ input[type="number"]::-webkit-inner-spin-button {
101103
}
102104

103105
.spacer_box {
104-
padding: 10px;
105-
margin-bottom: 3px;
106+
padding: 0px;
107+
margin: 0px;
108+
width: 100%;
106109
}
107110

111+
/* main title for each div*/
108112
.spacer_box_title {
109113
padding-left: 10px;
110114
padding-right: 10px;
@@ -113,6 +117,7 @@ input[type="number"]::-webkit-inner-spin-button {
113117
float: left;
114118
}
115119

120+
/* space around each div*/
116121
.spacer_left {
117122
padding-left: 15px;
118123
float: left;
@@ -133,39 +138,44 @@ input[type="number"]::-webkit-inner-spin-button {
133138
border-top-right-radius: 3px;
134139
}
135140

141+
/* Parameter box titles */
142+
.header-dialog .parameter th {
143+
background-color: #b0b0b0;
144+
padding: 2px;
145+
padding-left: 10px;
146+
border-left: 0 solid #ccc;
147+
font-weight: bold;
148+
font-size: 14px;
149+
color: #505050;
150+
text-align: left;
151+
}
152+
153+
/* Parameter box other lines */
136154
.header-dialog .parameter label {
137-
background-color: #828885;
138-
padding: 4px;
155+
background-color: #d8d8d8;
156+
padding: 0px;
157+
margin: 0px;
139158
border-left: 0 solid #ccc;
140-
border-bottom: 1px solid #ccc;
141159
font-weight: normal;
142-
color: white;
143-
text-align: left;
160+
font-size: 13px;
161+
color: #505050;
162+
text-align: center;
144163
width:100%;
145164
}
146165

147-
.header-dialog .parameter th {
148-
background-color: #828885;
149-
padding: 4px;
150-
border-left: 0 solid #ccc;
151-
border-bottom: 1px solid #ccc;
152-
font-weight: bold;
153-
color: white;
154-
text-align: left;
166+
/* Parameter box other rows */
167+
.header-dialog .cf tr {
168+
background-color: #d8d8d8;
169+
text-align: center;
155170
}
156171

157172
.header-dialog .modal-dialog {
158173
width:75%;
159174
min-width:954px;
160175
}
161176

162-
.header-dialog .cf tr {
163-
background-color: #DEDEDE;
164-
}
165-
166177
.header-dialog .cf th {
167178
border-right: solid 1px silver;
168-
height: 19px;
169179
font-weight: normal;
170180
}
171181

@@ -184,17 +194,22 @@ input[type="number"]::-webkit-inner-spin-button {
184194
border-top-right-radius: 3px;
185195
}
186196

197+
/* Box holding text inputs */
187198
.header-dialog .cf input {
188-
margin: 4px;
189199
width: calc(100% - 10px);
190200
border: 1px solid silver;
191201
border-radius: 3px;
202+
margin-left:5px;
192203
}
193204

205+
/* Box holding drop down elements*/
194206
.header-dialog .cf select {
195-
margin: 4px;
196207
width: calc(100% - 10px);
197208
border: 1px solid silver;
209+
background-color: #FFFFFF;
210+
color: black;
211+
padding-top: 2px;
212+
padding-bottom: 1px;
198213
}
199214

200215
.header-dialog .parameter th:nth-child(2) {
@@ -214,7 +229,7 @@ input[type="number"]::-webkit-inner-spin-button {
214229
}
215230

216231
.header-dialog table {
217-
float: left;
232+
float: center;
218233
margin: 0;
219234
border-collapse: collapse;
220235
width: calc(100% - 1px);
@@ -226,13 +241,11 @@ input[type="number"]::-webkit-inner-spin-button {
226241

227242
.header-dialog .parameter td+input {
228243
padding: 1px;
229-
background-color:red;
230244
border-bottom: 0 solid #ccc;
231245
}
232246

233247
.header-dialog table, .header-dialog table td {
234248
padding: 1px;
235-
border-bottom: 0 solid #ccc;
236249
}
237250

238251
.header-dialog table th {
@@ -245,7 +258,6 @@ input[type="number"]::-webkit-inner-spin-button {
245258
padding: 5px;
246259
text-align: left;
247260
border-right: 1px solid #ccc;
248-
width: calc(100% - 1px);
249261
}
250262

251263
.header-dialog .pid_titlebar th:first-child {
@@ -256,8 +268,9 @@ input[type="number"]::-webkit-inner-spin-button {
256268
border-right: none;
257269
}
258270

271+
/* for labels in PID rows */
259272
.header-dialog table:not(.parameter) tr td:first-child {
260-
text-align: left;
273+
text-align: center;
261274
padding-left: 5px;
262275
}
263276

@@ -270,25 +283,26 @@ input[type="number"]::-webkit-inner-spin-button {
270283
padding: 1px;
271284
width: 20%;
272285
border-right: 1px solid #ccc;
286+
border-bottom: 1px solid #ccc;
273287
}
274288

275289
.header-dialog table tr td {
276-
text-align: left;
277-
padding-left: 0;
290+
text-align: center;
291+
padding-left: ;
278292
}
279293

294+
/* numeric inputs in tables */
280295
.header-dialog table input {
281296
display: block;
282297
width: calc(100% - 4px);
283-
height: 20px;
284-
line-height: 20px;
285298
text-align: right;
286299
border: 0 solid #ccc;
287300
border-radius: 0;
301+
background-color: #F5F5F5;
288302
}
289303

290304
.header-dialog .missing {
291-
background:rgba(255,0,0,0.2);
305+
background:rgba(255,0,0,0.2);
292306
}
293307

294308
.header-dialog .static-features span {
@@ -311,8 +325,8 @@ input[type="number"]::-webkit-inner-spin-button {
311325

312326
.header-dialog .controller select {
313327
width: calc(100% - 10px);
314-
height: 20px;
315-
line-height: 20px;
328+
height: 18px;
329+
line-height: 18px;
316330
}
317331

318332
.header-dialog .profile {
@@ -325,7 +339,7 @@ input[type="number"]::-webkit-inner-spin-button {
325339
.header-dialog .profile .head {
326340
display: block;
327341
text-align: left;
328-
line-height: 20px;
342+
line-height: 18px;
329343
border-bottom: 1px solid #ccc;
330344
background-color: #828885;
331345
color: white;
@@ -337,8 +351,8 @@ input[type="number"]::-webkit-inner-spin-button {
337351
.header-dialog .profile select {
338352
width: 100%;
339353
padding-left: calc(100% - 35px);
340-
height: 20px;
341-
line-height: 20px;
354+
height: 18px;
355+
line-height: 18px;
342356
}
343357

344358
.header-dialog .pid_tuning .name {
@@ -369,18 +383,18 @@ input[type="number"]::-webkit-inner-spin-button {
369383
width: 80%;
370384
}
371385

386+
/* text in parameter boxes*/
372387
.header-dialog .parameter {
373388
float: right;
374-
width: calc(100% - 2px);
375-
margin-top: 10px;
376389
/* padding-left: 0; */
377390
}
378391

392+
/*drop-down names display text*/
379393
html:not(.isCF) .cf-only,
380394
html:not(.isBF) .bf-only {
381395
/*display:none;*/
382396
/*visibility:hidden;*/
383-
opacity:0.25;
397+
/*opacity:0.25;*/
384398
}
385399
/*
386400
html:not(.isBF28) .bf-only {
@@ -399,9 +413,16 @@ html:not(.isBF28) .bf-only {
399413
}
400414

401415
.header-dialog .spacer_box {
402-
padding-bottom: 10px;
403416
float: left;
404-
width: calc(100% - 5px);
417+
}
418+
419+
.pid_labels th{
420+
text-align: center;
421+
}
422+
423+
.pid_labels th label{
424+
font-weight: normal;
425+
font-size: 12px;
405426
}
406427

407428
.pid_mode {
@@ -414,7 +435,7 @@ html:not(.isBF28) .bf-only {
414435
padding: 8px 0 0 5px;
415436
font-size: 12px;
416437
border-bottom: 1px solid #ccc;
417-
color: #828282;
438+
color: #202020;
418439
font-family: 'open_sans', Arial, serif;
419440
background: #D6D6D6 linear-gradient(315deg, rgba(255, 255, 255, .2) 10%, transparent 10%, transparent 20%,
420441
rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, .2) 30%, transparent 30%, transparent 40%,
@@ -429,7 +450,8 @@ html:not(.isBF28) .bf-only {
429450
background-color: #828885;
430451
border-top-left-radius: 3px;
431452
border-top-right-radius: 3px;
432-
height: 20px;
453+
height: 18px;
454+
padding: 30px;
433455
}
434456

435457
.pid_titlebar td:first-child {
@@ -474,6 +496,7 @@ html:not(.isBF28) .bf-only {
474496
border-bottom: 1px solid #ddd;
475497
width: 100%;
476498
float: left;
499+
477500
}
478501

479502
.header-dialog .number:last-child {
@@ -484,13 +507,12 @@ html:not(.isBF28) .bf-only {
484507
.header-dialog .number input {
485508
width: 50px;
486509
padding-left: 3px;
487-
height: 20px;
488-
line-height: 20px;
489510
text-align: left;
490511
border: 1px solid silver;
491512
border-radius: 3px;
492513
margin-right: 11px;
493514
font-weight: normal;
515+
494516
}
495517

496518
.header-dialog .other table td,
@@ -509,8 +531,6 @@ html:not(.isBF28) .bf-only {
509531
.header-dialog .static-features label{
510532
/* width: 70px; */
511533
/* padding-left: 3px; */
512-
height: 20px;
513-
line-height: 20px;
514534
text-align: left;
515535
border: 0 solid silver;
516536
border-radius: 3px;
@@ -523,21 +543,21 @@ html:not(.isBF28) .bf-only {
523543
.header-dialog .features span,
524544
.header-dialog .static-features span {
525545
padding-right: 3px;
526-
height: 20px;
527-
line-height: 20px;
546+
height: 18px;
547+
line-height: 18px;
528548
text-align: left;
529549
border: 0 solid silver;
530550
border-radius: 3px;
531551
margin-right: 11px;
532552
font-weight: normal;
533553
font-size: 11px;
534-
}
554+
}
535555

536556
.header-dialog .gui_box span {
537557
font-style: normal;
538558
font-family: 'open_sansregular', Arial, sans-serif;
539559
line-height: 19px;
540-
color: #7d7d7d;
560+
color: #404040;
541561
font-size: 11px;
542562
}
543563

0 commit comments

Comments
 (0)