View | Details | Raw Unified | Return to bug 38964
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss (-1 / +8 lines)
Lines 95-100 table { Link Here
95
            th {
95
            th {
96
                padding: .5em;
96
                padding: .5em;
97
            }
97
            }
98
99
            & > tr {
100
                & th[scope="row"] {
101
                    background-color: $table-odd-row;
102
                    text-align: right;
103
                }
104
            }
98
        }
105
        }
99
106
100
        thead {
107
        thead {
Lines 113-119 table { Link Here
113
                }
120
                }
114
            }
121
            }
115
122
116
            & > tr {
123
            & > tr { 
117
                th {
124
                th {
118
                    padding: .5em;
125
                    padding: .5em;
119
                    text-align: center;
126
                    text-align: center;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-5 / +8 lines)
Lines 179-194 Link Here
179
179
180
<tfoot>
180
<tfoot>
181
    <tr>
181
    <tr>
182
        <td class="total" colspan="12">Total due:</td>
182
        <th scope="row" class="total" colspan="14">Total due:</th>
183
        <td style="text-align: right;">[% total | $Price %]</td>
183
        <td style="text-align: right;">[% total | $Price %]</td>
184
    </tr>
184
    </tr>
185
    [% IF outstanding_credits.total_outstanding < 0 %]
185
    [% IF outstanding_credits.total_outstanding < 0 %]
186
        <tr>
186
        <tr>
187
            <td class="total" colspan="12">Outstanding credits could be applied: </td>
187
            <th scope="row" class="total" colspan="14">Outstanding credits could be applied: </th>
188
            <td class="credit" style="text-align: right;"><button type="submit" id="apply_credits" name="op" value="cud-apply_credits" class="btn btn-default btn-sm">Apply <strong class="credit">[% outstanding_credits.total_outstanding | $Price %]</strong></button></td>
188
            <td class="credit" style="text-align: right;"
189
                ><button type="submit" id="apply_credits" name="op" value="cud-apply_credits" class="btn btn-default btn-sm"
190
                    >Apply <strong class="credit">[% outstanding_credits.total_outstanding | $Price %]</strong></button
191
                ></td
192
            >
189
        </tr>
193
        </tr>
190
        <tr>
194
        <tr>
191
            <td class="total" colspan="12">Total due if credit applied:</td>
195
            <th scope="row" class="total" colspan="14">Total due if credit applied:</th>
192
            <td style="text-align: right;">[% total + outstanding_credits.total_outstanding | $Price %]</td>
196
            <td style="text-align: right;">[% total + outstanding_credits.total_outstanding | $Price %]</td>
193
        </tr>
197
        </tr>
194
    [% END %]
198
    [% END %]
195
- 

Return to bug 38964