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

(-)a/koha-tmpl/opac-tmpl/ccsr/en/css/colors.css (-1 lines)
Lines 60-66 a:hover { Link Here
60
    background: none;
60
    background: none;
61
    border: none;
61
    border: none;
62
    display: table;
62
    display: table;
63
    margin: 40px 0 0 !important;
64
    padding: 0.7em 0 0 0.5em;
63
    padding: 0.7em 0 0 0.5em;
65
    width: 100%;
64
    width: 100%;
66
}
65
}
(-)a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css (+4 lines)
Lines 1-6 Link Here
1
@import url("../../../lib/yui/reset-fonts-grids.css");
1
@import url("../../../lib/yui/reset-fonts-grids.css");
2
@import url("../../../lib/yui/skin.css");
2
@import url("../../../lib/yui/skin.css");
3
3
4
#doc3 {
5
    padding-top: 35px;
6
}
7
4
a {
8
a {
5
      font-weight : bold;
9
      font-weight : bold;
6
}
10
}
(-)a/koha-tmpl/opac-tmpl/ccsr/en/includes/masthead.inc (-76 lines)
Lines 1-79 Link Here
1
<div id="header-wrapper">
1
<div id="header-wrapper">
2
2
3
<div id="top-bar">
4
<ul id="menu-left">
5
    <!-- [% IF ( opacbookbag ) %] -->
6
        <li>
7
            <span id="cmspan"></span>
8
            <div id="cartDetails">Your cart is empty.</div>
9
        </li>
10
    <!-- [% END %] -->
11
12
    [% IF ( virtualshelves ) %]
13
14
    <li id="listsmenulink">
15
        <a href="/cgi-bin/koha/opac-shelves.pl"  class="">
16
            <span>Lists</span>
17
        </a>
18
    <div id="listsmenu" class="yuimenu" style="display: none">
19
        <h4>Public lists</h4>
20
            [% IF ( pubshelves ) %]
21
                <ul class="first-of-type">
22
                [% FOREACH pubshelvesloo IN pubshelvesloop %]
23
                <li class="yuimenuitem"><a href="/cgi-bin/koha/opac-shelves.pl?viewshelf=[% pubshelvesloo.shelfnumber %]&amp;sortfield=[% pubshelvesloo.sortfield %]">[% pubshelvesloo.shelfname |html %]</a></li>
24
                [% END %]
25
                <li class="yuimenuitem"><a class="yuimenuitemlabel" href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">[View All]</a></li>
26
            </ul>
27
            [% ELSE %]
28
            No public lists
29
            [% END %]
30
      [% IF ( opacuserlogin ) %]
31
        <h4>Your lists</h4>
32
        [% IF ( loggedinusername ) %]
33
            [% IF ( barshelves ) %]
34
                <ul class="first-of-type">
35
                [% FOREACH barshelvesloo IN barshelvesloop %]
36
                <li class="yuimenuitem"><a href="/cgi-bin/koha/opac-shelves.pl?viewshelf=[% barshelvesloo.shelfnumber %]&amp;sortfield=[% barshelvesloo.sortfield %]">[% barshelvesloo.shelfname |html %]</a></li>
37
                [% END %]
38
            <li class="yuimenuitem"><a class="yuimenuitemlabel" href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">[View all]</a></li>
39
            </ul>
40
            [% ELSE %]
41
                <ul class="first-of-type">
42
            <li>No private lists</li>
43
            <li class="yuimenuitem"><a class="yuimenuitemlabel" href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">[New list]</a></li></ul>
44
            [% END %]
45
        [% ELSE %]
46
            <ul class="first-of-type"><li><a href="/cgi-bin/koha/opac-user.pl">Log in to create your own lists</a></li></ul>
47
        [% END %]
48
      [% END %]
49
    </div><!-- /listmenu /virtualshelves -->
50
[% END %]
51
<div id="listsDetails"></div>
52
53
</li>
54
</ul>
55
56
    <div id="members">
57
      [% IF ( opacuserlogin ) %]
58
        <ul>
59
    [% UNLESS ( loggedinusername ) %]
60
                   <li><a href="/cgi-bin/koha/opac-user.pl">Log in to your account</a></li>[% END %]
61
                [% IF ( loggedinusername ) %]
62
                    <li><span class="members">Welcome, <a href="/cgi-bin/koha/opac-user.pl"><span class="loggedinusername">[% FOREACH USER_INF IN USER_INFO %][% USER_INF.title %] [% USER_INF.firstname %] [% USER_INF.surname %][% END %]</span></a></span></li>
63
64
                [% END %]
65
                [% IF ( ShowOpacRecentSearchLink ) %]
66
                    <li><a href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a></li>
67
                [% END %]
68
 [% IF ( loggedinusername ) %]<li>[% IF persona %]<a class="logout" id="logout" href="/cgi-bin/koha/opac-main.pl?logout.x=1" onclick='navigator.id.logout();'>[% ELSE %]<a class="logout" id="logout" href="/cgi-bin/koha/opac-main.pl?logout.x=1">[% END %]Log Out</a></li>[% END %]
69
        </ul>
70
      [% END %]
71
    </div>
72
73
    <div class="clear"></div>
74
75
</div>
76
77
<div id="opac-custom-header">
3
<div id="opac-custom-header">
78
[% IF ( opacheader ) %]
4
[% IF ( opacheader ) %]
79
    [% opacheader %]
5
    [% opacheader %]
Lines 211-217 Link Here
211
137
212
138
213
    <input type="submit" value="Go" id="searchsubmit" class="left" />
139
    <input type="submit" value="Go" id="searchsubmit" class="left" />
214
[% IF ( opacbookbag ) %]<span id="cmspan"></span>[% END %]
215
140
216
    <div class="clear"></div>
141
    <div class="clear"></div>
217
142
Lines 259-265 Link Here
259
184
260
185
261
    <input type="submit" value="Go" id="searchsubmit" class="left transparent" disabled="disabled" />
186
    <input type="submit" value="Go" id="searchsubmit" class="left transparent" disabled="disabled" />
262
[% IF ( opacbookbag ) %]<span id="cmspan"></span>[% END %]
263
187
264
    <div class="clear"></div>
188
    <div class="clear"></div>
265
189
(-)a/koha-tmpl/opac-tmpl/ccsr/en/includes/opac-bottom.inc (+7 lines)
Lines 13-18 Link Here
13
</div>
13
</div>
14
</div>
14
</div>
15
15
16
[%# Sticking the div for the top bar here; since the
17
    top bar is positioned absolutely in this theme, it
18
    it makes the positioning of the rest of the elements
19
    easier to keep it out of the doc3 div.
20
%]
21
[% INCLUDE 'top-bar.inc' %]
22
16
<div id="main_footer">
23
<div id="main_footer">
17
    <div class="colleft">
24
    <div class="colleft">
18
    </div>
25
    </div>
(-)a/koha-tmpl/opac-tmpl/ccsr/en/includes/top-bar.inc (-1 / +73 lines)
Line 0 Link Here
0
- 
1
<div id="top-bar">
2
<ul id="menu-left">
3
    <!-- [% IF ( opacbookbag ) %] -->
4
        <li>
5
            <span id="cmspan"></span>
6
            <div id="cartDetails">Your cart is empty.</div>
7
        </li>
8
    <!-- [% END %] -->
9
10
    [% IF ( virtualshelves ) %]
11
12
    <li id="listsmenulink">
13
        <a href="/cgi-bin/koha/opac-shelves.pl"  class="">
14
            <span>Lists</span>
15
        </a>
16
    <div id="listsmenu" class="yuimenu" style="display: none">
17
        <h4>Public lists</h4>
18
            [% IF ( pubshelves ) %]
19
                <ul class="first-of-type">
20
                [% FOREACH pubshelvesloo IN pubshelvesloop %]
21
                <li class="yuimenuitem"><a href="/cgi-bin/koha/opac-shelves.pl?viewshelf=[% pubshelvesloo.shelfnumber %]&amp;sortfield=[% pubshelvesloo.sortfield %]">[% pubshelvesloo.shelfname |html %]</a></li>
22
                [% END %]
23
                <li class="yuimenuitem"><a class="yuimenuitemlabel" href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">[View All]</a></li>
24
            </ul>
25
            [% ELSE %]
26
            No public lists
27
            [% END %]
28
      [% IF ( opacuserlogin ) %]
29
        <h4>Your lists</h4>
30
        [% IF ( loggedinusername ) %]
31
            [% IF ( barshelves ) %]
32
                <ul class="first-of-type">
33
                [% FOREACH barshelvesloo IN barshelvesloop %]
34
                <li class="yuimenuitem"><a href="/cgi-bin/koha/opac-shelves.pl?viewshelf=[% barshelvesloo.shelfnumber %]&amp;sortfield=[% barshelvesloo.sortfield %]">[% barshelvesloo.shelfname |html %]</a></li>
35
                [% END %]
36
            <li class="yuimenuitem"><a class="yuimenuitemlabel" href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">[View all]</a></li>
37
            </ul>
38
            [% ELSE %]
39
                <ul class="first-of-type">
40
            <li>No private lists</li>
41
            <li class="yuimenuitem"><a class="yuimenuitemlabel" href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">[New list]</a></li></ul>
42
            [% END %]
43
        [% ELSE %]
44
            <ul class="first-of-type"><li><a href="/cgi-bin/koha/opac-user.pl">Log in to create your own lists</a></li></ul>
45
        [% END %]
46
      [% END %]
47
    </div><!-- /listmenu /virtualshelves -->
48
[% END %]
49
<div id="listsDetails"></div>
50
51
</li>
52
</ul>
53
54
    <div id="members">
55
      [% IF ( opacuserlogin ) %]
56
        <ul>
57
    [% UNLESS ( loggedinusername ) %]
58
                   <li><a href="/cgi-bin/koha/opac-user.pl">Log in to your account</a></li>[% END %]
59
                [% IF ( loggedinusername ) %]
60
                    <li><span class="members">Welcome, <a href="/cgi-bin/koha/opac-user.pl"><span class="loggedinusername">[% FOREACH USER_INF IN USER_INFO %][% USER_INF.title %] [% USER_INF.firstname %] [% USER_INF.surname %][% END %]</span></a></span></li>
61
62
                [% END %]
63
                [% IF ( ShowOpacRecentSearchLink ) %]
64
                    <li><a href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a></li>
65
                [% END %]
66
 [% IF ( loggedinusername ) %]<li>[% IF persona %]<a class="logout" id="logout" href="/cgi-bin/koha/opac-main.pl?logout.x=1" onclick='navigator.id.logout();'>[% ELSE %]<a class="logout" id="logout" href="/cgi-bin/koha/opac-main.pl?logout.x=1">[% END %]Log Out</a></li>[% END %]
67
        </ul>
68
      [% END %]
69
    </div>
70
71
    <div class="clear"></div>
72
73
</div>

Return to bug 8884