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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss (+8 lines)
Lines 273-278 tr { Link Here
273
            font-weight: bold;
273
            font-weight: bold;
274
        }
274
        }
275
    }
275
    }
276
    
277
    &.debug {
278
        td {
279
            font-weight: bold;
280
            color: red;
281
            font-style: italic;
282
        }
283
    }
276
}
284
}
277
285
278
.selections-table {
286
.selections-table {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smtp_servers.tt (-2 / +6 lines)
Lines 346-352 SMTP servers Link Here
346
                        "searchable": false,
346
                        "searchable": false,
347
                        "orderable": false
347
                        "orderable": false
348
                    }
348
                    }
349
                ]
349
                ],
350
                createdRow: function (row, data, dataIndex) {
351
                    if ( data.debug ) {
352
                        $(row).addClass('debug');
353
                    }
354
                },
350
            });
355
            });
351
356
352
            $('#smtp_servers').on( "click", '.delete_server', function () {
357
            $('#smtp_servers').on( "click", '.delete_server', function () {
353
- 

Return to bug 22343