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 1009-1019 Link Here
1009
                                </ol>
1009
                                </ol>
1010
                            </fieldset> <!-- /.brief -->
1010
                            </fieldset> <!-- /.brief -->
1011
1011
1012
                            <h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4>
1012
                            <h2>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h2>
1013
1013
1014
                            <div id="limits">
1014
                            <div id="limits">
1015
                                <fieldset class="brief">
1015
                                <fieldset class="brief">
1016
                                    <h4 class="local_collapse"><a href="#">Bibliographic information</a></h4>
1016
                                    <h3 class="local_collapse"><a href="#">Bibliographic information</a></h3>
1017
                                    <ol>
1017
                                    <ol>
1018
                                        <li>
1018
                                        <li>
1019
                                            <label for="title"> Title:</label>
1019
                                            <label for="title"> Title:</label>
Lines 1043-1049 Link Here
1043
                                </fieldset> <!-- /.brief -->
1043
                                </fieldset> <!-- /.brief -->
1044
1044
1045
                                <fieldset class="brief">
1045
                                <fieldset class="brief">
1046
                                    <h4 class="local_collapse"><a href="#">Suggestion information</a></h4>
1046
                                    <h3 class="local_collapse"><a href="#">Suggestion information</a></h3>
1047
                                    <ol>
1047
                                    <ol>
1048
                                        <li>
1048
                                        <li>
1049
                                            <label for="archived" style="display: inline;">Include archived:</label>
1049
                                            <label for="archived" style="display: inline;">Include archived:</label>
Lines 1167-1173 Link Here
1167
                                </fieldset>
1167
                                </fieldset>
1168
1168
1169
                                <fieldset class="brief">
1169
                                <fieldset class="brief">
1170
                                    <h4 class="local_collapse">
1170
                                    <h3 class="local_collapse">
1171
                                        <a href="#">Acquisition information</a>
1171
                                        <a href="#">Acquisition information</a>
1172
                                    </h4>
1172
                                    </h4>
1173
                                    <ol>
1173
                                    <ol>
Lines 1344-1350 Link Here
1344
                    $(this).siblings("input[name='other_reason']").hide();
1344
                    $(this).siblings("input[name='other_reason']").hide();
1345
                    e.preventDefault();
1345
                    e.preventDefault();
1346
                });
1346
                });
1347
                $("h4.local_collapse a").click(function(){
1347
                $("h3.local_collapse a").click(function(){
1348
                    $(this).parent().parent().find("ol").toggle();
1348
                    $(this).parent().parent().find("ol").toggle();
1349
                    return false;
1349
                    return false;
1350
                });
1350
                });
1351
- 

Return to bug 27741