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 4362-4367 input.renew { Link Here
4362
    }
4362
    }
4363
}
4363
}
4364
4364
4365
/* transport cost matrix */
4366
#transport-cost-matrix {
4367
    table {
4368
        border-collapse: separate; /* Don't collapse */
4369
        border-spacing: 0;
4370
4371
        tbody {
4372
            tr {
4373
                th,
4374
                td {
4375
                    border: 1px solid #dddddd;
4376
                    padding: 5px;
4377
                }
4378
                th {
4379
                    position: sticky;
4380
                    top: 0;
4381
                    left: 0;
4382
                }
4383
            }
4384
        }
4385
    }
4386
}
4387
4365
/* Permissions */
4388
/* Permissions */
4366
4389
4367
#permissionstree {
4390
#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