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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss (-50 / +52 lines)
Lines 548-619 tbody { Link Here
548
        }
548
        }
549
    }
549
    }
550
550
551
    button,
551
    input {
552
    div,
552
        &[type="search"] {
553
    a {
553
            border: 1px solid #CCC;
554
        &.dt-button {
554
        }
555
            background: transparent none;
555
    }
556
            border: 0;
557
            color: #000;
558
            font-size: 1em;
559
            line-height: 1.7em;
560
            margin: 3px 3px 0;
561
            padding: 0 .5em;
562
563
            &::before {
564
                content: "";
565
            }
566
556
567
            &.disabled {
557
    &:empty {
568
                color: #999;
558
        border: 0;
569
                cursor: default;
559
        padding: 0;
560
    }
561
} /* /.pager */
570
562
571
                a,
563
button,
572
                span {
564
div,
573
                    background: transparent none;
565
a {
574
                }
566
    &.dt-button {
575
            }
567
        background: transparent none;
568
        border: 0;
569
        color: #000;
570
        font-size: 1em;
571
        line-height: 1.7em;
572
        margin: 3px 3px 0;
573
        padding: 0 .5em;
576
574
577
            &:active,
575
        &::before {
578
            &:focus {
576
            content: "";
579
                background: transparent none;
577
        }
580
                border: 0;
581
                box-shadow: none;
582
                text-shadow: none;
583
578
584
                &:not( .disabled ):hover:not( .disabled ) {
579
        &.disabled {
585
                    background: transparent none;
580
            color: #999;
586
                    box-shadow: none;
581
            cursor: default;
587
                }
588
            }
589
582
590
            &:hover {
583
            a,
584
            span {
591
                background: transparent none;
585
                background: transparent none;
592
                border: 0;
593
594
                &:not( .disabled ) {
595
                    background: transparent none;
596
                }
597
            }
586
            }
587
        }
588
589
        &:active,
590
        &:focus {
591
            background: transparent none;
592
            border: 0;
593
            box-shadow: none;
594
            text-shadow: none;
598
595
599
            &.active:not( .disabled ):hover:not( .disabled ) {
596
            &:not( .disabled ):hover:not( .disabled ) {
600
                background: transparent none;
597
                background: transparent none;
601
                box-shadow: none;
598
                box-shadow: none;
602
            }
599
            }
603
        }
600
        }
604
    }
605
601
606
    input {
602
        &:hover {
607
        &[type="search"] {
603
            background: transparent none;
608
            border: 1px solid #CCC;
604
            border: 0;
605
606
            &:not( .disabled ) {
607
                background: transparent none;
608
                border: 0;
609
            }
609
        }
610
        }
610
    }
611
611
612
    &:empty {
612
        &.active:not( .disabled ):hover:not( .disabled ) {
613
        border: 0;
613
            background: transparent none;
614
        padding: 0;
614
            box-shadow: none;
615
        }
615
    }
616
    }
616
} /* /.pager */
617
}
617
618
618
.toptabs {
619
.toptabs {
619
    .pager {
620
    .pager {
Lines 781-786 div { Link Here
781
    border-top: 1px solid #EEE;
782
    border-top: 1px solid #EEE;
782
    display: flex;
783
    display: flex;
783
    flex-grow: 1;
784
    flex-grow: 1;
785
    justify-content: flex-end;
784
    margin-top: .5em;
786
    margin-top: .5em;
785
    padding-top: .5em;
787
    padding-top: .5em;
786
}
788
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +1 lines)
Lines 1417-1423 Link Here
1417
                    "bPaginate":false,
1417
                    "bPaginate":false,
1418
                    "bInfo":false,
1418
                    "bInfo":false,
1419
                    "bSort":false,
1419
                    "bSort":false,
1420
                    "dom": 'B<"clearfix">t',
1420
                    "dom": '<"table_controls"B>rt',
1421
                    }, table_settings);
1421
                    }, table_settings);
1422
1422
1423
            $("#exemptcheck").change(function () {
1423
            $("#exemptcheck").change(function () {
(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-3 / +2 lines)
Lines 276-282 $(document).ready(function() { Link Here
276
                "sProcessing": msg_loading,
276
                "sProcessing": msg_loading,
277
            },
277
            },
278
            "bAutoWidth": false,
278
            "bAutoWidth": false,
279
            "dom": 'B<"clearfix">rt',
279
            "dom": '<"table_controls"B>rt',
280
            "aoColumns": [
280
            "aoColumns": [
281
                {
281
                {
282
                    "mDataProp": function( oObj ) {
282
                    "mDataProp": function( oObj ) {
Lines 708-714 $(document).ready(function() { Link Here
708
        if ( ! relativesIssuesTable ) {
708
        if ( ! relativesIssuesTable ) {
709
            relativesIssuesTable = KohaTable("relatives-issues-table", {
709
            relativesIssuesTable = KohaTable("relatives-issues-table", {
710
                "bAutoWidth": false,
710
                "bAutoWidth": false,
711
                "dom": 'B<"clearfix">rt',
711
                "dom": '<"table_controls"B>rt',
712
                "aaSorting": [],
712
                "aaSorting": [],
713
                "aoColumns": [
713
                "aoColumns": [
714
                    {
714
                    {
715
- 

Return to bug 31861