Revision 3aa5cee2
Von Sven Schöling vor etwa 10 Jahren hinzugefügt
bin/mozilla/ic.pl | ||
---|---|---|
288 | 288 |
# $form->header; |
289 | 289 |
# |
290 | 290 |
# print qq| |
291 |
# <h1>| . $locale->text('choice part') . qq|</h1> |
|
291 | 292 |
# <form method=post action=ic.pl> |
292 | 293 |
# <table width=100%> |
293 |
# <tr> |
|
294 |
# <th class=listtop colspan=6>| . $locale->text('choice part') . qq|</th> |
|
295 |
# </tr> |
|
296 |
# <tr height="5"></tr> |
|
297 | 294 |
# <tr class=listheading> |
298 | 295 |
# <th> </th> |
299 | 296 |
# <th class=listheading>| . $locale->text('Part Number') . qq|</th> |
... | ... | |
722 | 719 |
my $colspan = $#column_index + 1; |
723 | 720 |
|
724 | 721 |
print qq| |
722 |
<h1>$form->{title}</h1> |
|
723 |
|
|
725 | 724 |
<table width=100%> |
726 |
<tr> |
|
727 |
<th class=listtop colspan=$colspan>$form->{title}</th> |
|
728 |
</tr> |
|
729 |
<tr height="5"></tr> |
|
730 | 725 |
|
731 | 726 |
<tr><td colspan=$colspan>$option</td></tr> |
732 | 727 |
|
Auch abrufbar als: Unified diff
Layout: title Ausgabe normalisieren
...mit dem Ziel das später ins Layout zu migrieren.
- In allen Templates den Tital auch wirklich als erstes ins DOM
verschoben
- unterschiedliche Verwendung der folgenden Muster vereinheitlicht:
<h1>...</h1>
<div class='listtop'>...</div>
<p><div class='listtop'>...</div></p>a
<tr><th class='listtop' colspan=..>....</th></tr>
- Verwendung der gleichen Klasse im Footer in <h2> geändert
- Puffer <tr height=5> entfert
Das ergibt insgesamt folgende Effekte:
- Einheitliches Rendern der Überschrift
- Einheitlicher Abstand zum Content
- flash/message werden immer unter der Überschrift angezeigt