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 246-251 Link Here
246
    .no-image {
264
    .no-image {
247
        display: none;
265
        display: none;
248
    }
266
    }
267
268
    #checkouts_filter {
269
        display: block;
270
    }
271
272
    .table_controls {
273
        display: block;
274
275
        label {
276
            display: block;
277
        }
278
    }
249
}
279
}
250
280
251
@media only screen and ( max-width: 700px ) {
281
@media only screen and ( max-width: 700px ) {
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +7 lines)
Lines 836-842 Link Here
836
    <script>
836
    <script>
837
        function tableInit( tableId ){
837
        function tableInit( tableId ){
838
            if( tableId == "checkoutst" ){
838
            if( tableId == "checkoutst" ){
839
                $(".dt-buttons").append("<a class=\"dt-button buttons-ical\" href=\"opac-ics.pl\">iCal</a> ");
839
                $(".dt-buttons").append("<button type=\"button\" class=\"dt-button buttons-ical\" id=\"buttons-ics\">iCal</button> ");
840
                [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
840
                [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
841
                    $(".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>");
841
                    $(".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>");
842
                [% END %]
842
                [% END %]
Lines 912-921 Link Here
912
                    "language": {
912
                    "language": {
913
                        "search": "_INPUT_",
913
                        "search": "_INPUT_",
914
                        "searchPlaceholder": _("Search")
914
                        "searchPlaceholder": _("Search")
915
                    }
915
                    },
916
                    "autoWidth": false
916
                }));
917
                }));
917
            });
918
            });
918
919
920
            $("body").on("click", "#buttons-ics", function(){
921
                location.href="/cgi-bin/koha/opac-ics.pl";
922
            });
923
919
            [% IF ( GoogleJackets ) %]KOHA.Google.GetCoverFromIsbn();[% END %]
924
            [% IF ( GoogleJackets ) %]KOHA.Google.GetCoverFromIsbn();[% END %]
920
            [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
925
            [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
921
                $("#renewselected").submit(function(){
926
                $("#renewselected").submit(function(){
922
- 

Return to bug 27814