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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-1 / +5 lines)
Lines 2061-2067 input { Link Here
2061
        margin: 0;
2061
        margin: 0;
2062
    }
2062
    }
2063
2063
2064
    h4 {
2064
    h2 {
2065
        font-size: 90%;
2065
        font-size: 90%;
2066
        margin: 0 0 .6em 0;
2066
        margin: 0 0 .6em 0;
2067
        text-align: center;
2067
        text-align: center;
Lines 2076-2081 input { Link Here
2076
        }
2076
        }
2077
    }
2077
    }
2078
2078
2079
    h3 {
2080
        font-size: 80%;
2081
    }
2082
2079
    li {
2083
    li {
2080
        font-size: 90%;
2084
        font-size: 90%;
2081
        font-weight: bold;
2085
        font-weight: bold;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc (-14 / +13 lines)
Lines 3-11 Link Here
3
[% USE Languages %]
3
[% USE Languages %]
4
[% IF ( opacfacets && facets_loop && total ) %]
4
[% IF ( opacfacets && facets_loop && total ) %]
5
    <div id="search-facets">
5
    <div id="search-facets">
6
        <h4><a href="#" class="menu-collapse-toggle">Refine your search</a></h4>
6
        <h2><a href="#" class="menu-collapse-toggle">Refine your search</a></h2>
7
        <ul class="menu-collapse">
7
        <ul class="menu-collapse">
8
            <li id="availability_facet"><h5 id="facet-availability">Availability</h5>
8
            <li id="availability_facet"><h3 id="facet-availability">Availability</h3>
9
                <ul>
9
                <ul>
10
                    <li>
10
                    <li>
11
                        [% IF ( available ) %]
11
                        [% IF ( available ) %]
Lines 21-39 Link Here
21
            [% FOREACH facets_loo IN facets_loop %]
21
            [% FOREACH facets_loo IN facets_loop %]
22
                [% IF facets_loo.facets.size > 0 %]
22
                [% IF facets_loo.facets.size > 0 %]
23
                    <li id="[% facets_loo.type_id | html %]">
23
                    <li id="[% facets_loo.type_id | html %]">
24
                        [% IF facets_loo.type_label_Authors %]<h5 id="facet-authors">Authors</h5>[% END %]
24
                        [% IF facets_loo.type_label_Authors %]<h3 id="facet-authors">Authors</h3>[% END %]
25
                        [% IF facets_loo.type_label_Titles %]<h5 id="facet-titles">Titles</h5>[% END %]
25
                        [% IF facets_loo.type_label_Titles %]<h3 id="facet-titles">Titles</h3>[% END %]
26
                        [% IF facets_loo.type_label_Topics %]<h5 id="facet-topics">Topics</h5>[% END %]
26
                        [% IF facets_loo.type_label_Topics %]<h3 id="facet-topics">Topics</h3>[% END %]
27
                        [% IF facets_loo.type_label_Places %]<h5 id="facet-places">Places</h5>[% END %]
27
                        [% IF facets_loo.type_label_Places %]<h3 id="facet-places">Places</h3>[% END %]
28
                        [% IF facets_loo.type_label_Series %]<h5 id="facet-series">Series</h5>[% END %]
28
                        [% IF facets_loo.type_label_Series %]<h3 id="facet-series">Series</h3>[% END %]
29
                        [% IF facets_loo.type_label_ItemTypes %]<h5 id="facet-itemtypes">Item types</h5>[% END %]
29
                        [% IF facets_loo.type_label_ItemTypes %]<h3 id="facet-itemtypes">Item types</h3>[% END %]
30
                        [% IF facets_loo.type_label_CollectionCodes %]<h5 id="facet-collections">Collections</h5>[% END %]
30
                        [% IF facets_loo.type_label_CollectionCodes %]<h3 id="facet-collections">Collections</h3>[% END %]
31
                        [% IF facets_loo.type_label_Language %]<h5 id="facet-languages">Languages</h5>[% END %]
31
                        [% IF facets_loo.type_label_Language %]<h3 id="facet-languages">Languages</h3>[% END %]
32
                        [% UNLESS singleBranchMode %]
32
                        [% UNLESS singleBranchMode %]
33
                            [% IF ( facets_loo.type_label_HomeLibrary ) %]<h5 id="facet-home-libraries">Home libraries</h5>[% END %]
33
                            [% IF ( facets_loo.type_label_HomeLibrary ) %]<h3 id="facet-home-libraries">Home libraries</h3>[% END %]
34
                            [% IF ( facets_loo.type_label_HoldingLibrary ) %]<h5 id="facet-holding-libraries">Holding libraries</h5>[% END %]
34
                            [% IF ( facets_loo.type_label_HoldingLibrary ) %]<h3 id="facet-holding-libraries">Holding libraries</h3>[% END %]
35
                        [% END %]
35
                        [% END %]
36
                        [% IF facets_loo.type_label_Location %]<h5 id="facet-locations">Locations</h5>[% END %]
36
                        [% IF facets_loo.type_label_Location %]<h3 id="facet-locations">Locations</h3>[% END %]
37
                        <ul>
37
                        <ul>
38
                            [% SET url = "/cgi-bin/koha/opac-search.pl?" _ query_cgi _ limit_cgi %]
38
                            [% SET url = "/cgi-bin/koha/opac-search.pl?" _ query_cgi _ limit_cgi %]
39
                            [% IF ( sort_by ) %]
39
                            [% IF ( sort_by ) %]
40
- 

Return to bug 25236