Revision abf7cc34
Von Hans Peter Schlaepfer vor fast 5 Jahren hinzugefügt
bin/mozilla/gl.pl | ||
---|---|---|
807 | 807 |
for my $i (1 .. $form->{rowcount}) { |
808 | 808 |
if ($form->{show_details}) { |
809 | 809 |
$source = qq| |
810 |
<td><input name="source_$i" value="$form->{"source_$i"}" size="16"></td>|;
|
|
810 |
<td><input name="source_$i" value="$form->{"source_$i"}" class="wi-verysmall" type="text"></td>|;
|
|
811 | 811 |
$memo = qq| |
812 |
<td><input name="memo_$i" value="$form->{"memo_$i"}" size="16"></td>|;
|
|
812 |
<td><input name="memo_$i" value="$form->{"memo_$i"}" class="wi-small" type="text"></td>|;
|
|
813 | 813 |
} else { |
814 | 814 |
$source_hidden = qq| |
815 |
<input type="hidden" name="source_$i" value="$form->{"source_$i"}" size="16">|;
|
|
815 |
<input type="hidden" name="source_$i" value="$form->{"source_$i"}">|; |
|
816 | 816 |
$memo_hidden = qq| |
817 |
<input type="hidden" name="memo_$i" value="$form->{"memo_$i"}" size="16">|;
|
|
817 |
<input type="hidden" name="memo_$i" value="$form->{"memo_$i"}">|; |
|
818 | 818 |
} |
819 | 819 |
|
820 | 820 |
my %taxchart_labels = (); |
... | ... | |
928 | 928 |
$accno |
929 | 929 |
<td id="chart_balance_$i" align="right">${balance}</td> |
930 | 930 |
$fx_transaction |
931 |
<td><input name="debit_$i" size="8" value="$form->{"debit_$i"}" accesskey=$i $copy2credit $debitreadonly></td>
|
|
932 |
<td><input name="credit_$i" size=8 value="$form->{"credit_$i"}" $creditreadonly></td>
|
|
933 |
<td><input type="hidden" name="tax_$i" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
|
|
931 |
<td class="right"><input name="debit_$i" type="text" class="wi-small numeric" value="$form->{"debit_$i"}" accesskey=$i $copy2credit $debitreadonly></td>
|
|
932 |
<td class="right"><input name="credit_$i" type="text" class="wi-small numeric" value="$form->{"credit_$i"}" $creditreadonly></td>
|
|
933 |
<td class="right"><input name="tax_$i" type="hidden" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
|
|
934 | 934 |
$tax_ddbox|; |
935 | 935 |
|
936 | 936 |
if ($form->{show_details}) { |
Auch abrufbar als: Unified diff
Design 4.0: html-tags im Quelltext: size-Attribute gegen class getauscht