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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-7 / +6 lines)
Lines 27-33 Link Here
27
[% IF op == 'else' %]
27
[% IF op == 'else' %]
28
    [% FILTER collapse %]
28
    [% FILTER collapse %]
29
        <style>
29
        <style>
30
            h4.local_collapse a {
30
            h3.local_collapse a {
31
                font-size: 80%;
31
                font-size: 80%;
32
                text-decoration: none;
32
                text-decoration: none;
33
            }
33
            }
Lines 1013-1023 Link Here
1013
                                </ol>
1013
                                </ol>
1014
                            </fieldset> <!-- /.brief -->
1014
                            </fieldset> <!-- /.brief -->
1015
1015
1016
                            <h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4>
1016
                            <h2>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h2>
1017
1017
1018
                            <div id="limits">
1018
                            <div id="limits">
1019
                                <fieldset class="brief">
1019
                                <fieldset class="brief">
1020
                                    <h4 class="local_collapse"><a href="#">Bibliographic information</a></h4>
1020
                                    <h3 class="local_collapse"><a href="#">Bibliographic information</a></h3>
1021
                                    <ol>
1021
                                    <ol>
1022
                                        <li>
1022
                                        <li>
1023
                                            <label for="title"> Title:</label>
1023
                                            <label for="title"> Title:</label>
Lines 1047-1053 Link Here
1047
                                </fieldset> <!-- /.brief -->
1047
                                </fieldset> <!-- /.brief -->
1048
1048
1049
                                <fieldset class="brief">
1049
                                <fieldset class="brief">
1050
                                    <h4 class="local_collapse"><a href="#">Suggestion information</a></h4>
1050
                                    <h3 class="local_collapse"><a href="#">Suggestion information</a></h3>
1051
                                    <ol>
1051
                                    <ol>
1052
                                        <li>
1052
                                        <li>
1053
                                            <label for="archived" style="display: inline;">Include archived:</label>
1053
                                            <label for="archived" style="display: inline;">Include archived:</label>
Lines 1171-1177 Link Here
1171
                                </fieldset>
1171
                                </fieldset>
1172
1172
1173
                                <fieldset class="brief">
1173
                                <fieldset class="brief">
1174
                                    <h4 class="local_collapse">
1174
                                    <h3 class="local_collapse">
1175
                                        <a href="#">Acquisition information</a>
1175
                                        <a href="#">Acquisition information</a>
1176
                                    </h4>
1176
                                    </h4>
1177
                                    <ol>
1177
                                    <ol>
Lines 1348-1354 Link Here
1348
                    $(this).siblings("input[name='other_reason']").hide();
1348
                    $(this).siblings("input[name='other_reason']").hide();
1349
                    e.preventDefault();
1349
                    e.preventDefault();
1350
                });
1350
                });
1351
                $("h4.local_collapse a").click(function(){
1351
                $("h3.local_collapse a").click(function(){
1352
                    $(this).parent().parent().find("ol").toggle();
1352
                    $(this).parent().parent().find("ol").toggle();
1353
                    return false;
1353
                    return false;
1354
                });
1354
                });
1355
- 

Return to bug 27741