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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+23 lines)
Lines 4373-4378 input.renew { Link Here
4373
    }
4373
    }
4374
}
4374
}
4375
4375
4376
/* transport cost matrix */
4377
#transport-cost-matrix {
4378
    table {
4379
        border-collapse: separate; /* Don't collapse */
4380
        border-spacing: 0;
4381
4382
        tbody {
4383
            tr {
4384
                th,
4385
                td {
4386
                    border: 1px solid #dddddd;
4387
                    padding: 5px;
4388
                }
4389
                th {
4390
                    position: sticky;
4391
                    top: 0;
4392
                    left: 0;
4393
                }
4394
            }
4395
        }
4396
    }
4397
}
4398
4376
/* Permissions */
4399
/* Permissions */
4377
4400
4378
#permissionstree {
4401
#permissionstree {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/transport-cost-matrix.tt (-3 / +2 lines)
Lines 74-82 Link Here
74
                    </tr>
74
                    </tr>
75
                [% FOR bf IN branchfromloop %]
75
                [% FOR bf IN branchfromloop %]
76
                    <tr>
76
                    <tr>
77
                        <th>[% bf.name | html %]</th>
77
                        <th title="[% bf.name | html %]">[% bf.name | html %]</th>
78
                    [% FOR bt IN bf.branchtoloop %]
78
                    [% FOR bt IN bf.branchtoloop %]
79
                        <td>
79
                        <td title="[% bf.name | html %] / [% bt.name | html %]">
80
                        [% IF bt.skip %]
80
                        [% IF bt.skip %]
81
                            &nbsp;
81
                            &nbsp;
82
                        [% ELSE %]
82
                        [% ELSE %]
83
- 

Return to bug 36559