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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss (+30 lines)
Lines 68-73 Link Here
68
    .search_operator {
68
    .search_operator {
69
        text-align: center;
69
        text-align: center;
70
    }
70
    }
71
72
    .ui-tabs .ui-tabs-nav {
73
        padding: 0;
74
    }
75
76
    .ui-tabs .ui-tabs-nav li,
77
    .ui-tabs .ui-tabs-nav li a,
78
    .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
79
        display: block;
80
        float: none;
81
        margin: 0;
82
    }
83
84
    .dt-buttons {
85
        display: flex;
86
    }
71
}
87
}
72
88
73
@media only screen and ( max-width: 608px ) {
89
@media only screen and ( max-width: 608px ) {
Lines 205-210 Link Here
205
        }
221
        }
206
222
207
        .table {
223
        .table {
224
            width: 100%;
225
208
            th,
226
            th,
209
            thead {
227
            thead {
210
                display: none;
228
                display: none;
Lines 250-255 Link Here
250
    .search-term-input {
268
    .search-term-input {
251
        margin-bottom: 5px;
269
        margin-bottom: 5px;
252
    }
270
    }
271
272
    #checkouts_filter {
273
        display: block;
274
    }
275
276
    .table_controls {
277
        display: block;
278
279
        label {
280
            display: block;
281
        }
282
    }
253
}
283
}
254
284
255
@media only screen and ( max-width: 700px ) {
285
@media only screen and ( max-width: 700px ) {
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +7 lines)
Lines 832-838 Link Here
832
    <script>
832
    <script>
833
        function tableInit( tableId ){
833
        function tableInit( tableId ){
834
            if( tableId == "checkoutst" ){
834
            if( tableId == "checkoutst" ){
835
                $(".dt-buttons").append("<a class=\"dt-button buttons-ical\" href=\"opac-ics.pl\">iCal</a> ");
835
                $(".dt-buttons").append("<button type=\"button\" class=\"dt-button buttons-ical\" id=\"buttons-ics\">iCal</button> ");
836
                [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
836
                [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
837
                    $(".dt-buttons").append("<button id=\"renewselected_link\" class=\"dt-button buttons-renew\"><i class=\"fa fa-check\" aria-hidden=\"true\"></i> "+_("Renew selected")+"</button> <button id=\"renewall_link\" class=\"dt-button buttons-renewall\"><span class=\"fa-stack\"><i class=\"fa fa-check fa-stack-1x\" aria-hidden=\"true\"></i><i class=\"fa fa-check fa-stack-1x\" aria-hidden=\"true\"></i></span> "+_("Renew all")+"</button>");
837
                    $(".dt-buttons").append("<button id=\"renewselected_link\" class=\"dt-button buttons-renew\"><i class=\"fa fa-check\" aria-hidden=\"true\"></i> "+_("Renew selected")+"</button> <button id=\"renewall_link\" class=\"dt-button buttons-renewall\"><span class=\"fa-stack\"><i class=\"fa fa-check fa-stack-1x\" aria-hidden=\"true\"></i><i class=\"fa fa-check fa-stack-1x\" aria-hidden=\"true\"></i></span> "+_("Renew all")+"</button>");
838
                [% END %]
838
                [% END %]
Lines 907-916 Link Here
907
                    "language": {
907
                    "language": {
908
                        "search": "_INPUT_",
908
                        "search": "_INPUT_",
909
                        "searchPlaceholder": _("Search")
909
                        "searchPlaceholder": _("Search")
910
                    }
910
                    },
911
                    "autoWidth": false
911
                }));
912
                }));
912
            });
913
            });
913
914
915
            $("body").on("click", "#buttons-ics", function(){
916
                location.href="/cgi-bin/koha/opac-ics.pl";
917
            });
918
914
            [% IF ( GoogleJackets ) %]KOHA.Google.GetCoverFromIsbn();[% END %]
919
            [% IF ( GoogleJackets ) %]KOHA.Google.GetCoverFromIsbn();[% END %]
915
            [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
920
            [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
916
                $("#renewselected").submit(function(){
921
                $("#renewselected").submit(function(){
917
- 

Return to bug 27814