##// END OF EJS Templates
system-info: fix styling for elements
marcink -
r3974:cb1bcddc default
parent child Browse files
Show More
@@ -468,6 +468,42 b' dd {'
468 margin-left: 20px;
468 margin-left: 20px;
469 }
469 }
470 }
470 }
471
472 &.dt-300 {
473 dt {
474 width: 300px;
475 }
476 }
477
478 &.dt-400 {
479 dt {
480 width: 400px;
481 }
482 }
483
484 &.dt-500 {
485 dt {
486 width: 500px;
487 }
488 }
489
490 &.dt-600 {
491 dt {
492 width: 600px;
493 }
494 }
495
496 &.dt-700 {
497 dt {
498 width: 700px;
499 }
500 }
501
502 &.dt-800 {
503 dt {
504 width: 800px;
505 }
506 }
471 }
507 }
472
508
473
509
@@ -12,7 +12,7 b''
12 % endif
12 % endif
13 </div>
13 </div>
14 <div class="panel-body">
14 <div class="panel-body">
15 <dl class="dl-horizontal settings">
15 <dl class="dl-horizontal settings dt-400">
16 % for dt, dd, warn in c.data_items:
16 % for dt, dd, warn in c.data_items:
17 <dt>${dt}${':' if dt else '---'}</dt>
17 <dt>${dt}${':' if dt else '---'}</dt>
18 <dd>${dd}${'' if dt else '---'}
18 <dd>${dd}${'' if dt else '---'}
@@ -32,7 +32,7 b''
32 <h3 class="panel-title">${_('VCS Server')}</h3>
32 <h3 class="panel-title">${_('VCS Server')}</h3>
33 </div>
33 </div>
34 <div class="panel-body">
34 <div class="panel-body">
35 <dl class="dl-horizontal settings">
35 <dl class="dl-horizontal settings dt-400">
36 % for dt, dd in c.vcsserver_data_items:
36 % for dt, dd in c.vcsserver_data_items:
37 <dt>${dt}${':' if dt else '---'}</dt>
37 <dt>${dt}${':' if dt else '---'}</dt>
38 <dd>${dd}${'' if dt else '---'}</dd>
38 <dd>${dd}${'' if dt else '---'}</dd>
@@ -46,20 +46,12 b''
46 <h3 class="panel-title">${_('Python Packages')}</h3>
46 <h3 class="panel-title">${_('Python Packages')}</h3>
47 </div>
47 </div>
48 <div class="panel-body">
48 <div class="panel-body">
49 <table class="table">
49 <dl class="dl-horizontal settings dt-400">
50 <colgroup>
50 % for dt, dd in c.py_modules['human_value']:
51 <col class='label'>
51 <dt>${dt}${':' if dt else '---'}</dt>
52 <col class='content'>
52 <dd>${dd}${'' if dt else '---'}</dd>
53 </colgroup>
53 % endfor
54 <tbody>
54 </dl>
55 % for key, value in c.py_modules['human_value']:
56 <tr>
57 <td>${key}</td>
58 <td>${value}</td>
59 </tr>
60 % endfor
61 </tbody>
62 </table>
63 </div>
55 </div>
64 </div>
56 </div>
65
57
General Comments 0
You need to be logged in to leave comments. Login now