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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/mainpage.css (+196 lines)
Line 0 Link Here
1
/* 
2
 * This file contains CSS styles used only on the front page of Koha
3
 * 
4
 * COLORS
5
 * Navbar (light blue)  : #e6f0f2
6
 * Links (dark blue)    : #004d99
7
 * Links, hover (green) : #85ca11
8
 * Module buttons background (very light blue) : #f4f8f9
9
 * These colors are used in staff-global.css too
10
 * 
11
 */
12
13
#area-content {
14
    /* Contains the news + both columns of links + pending box + userblock box */
15
    float: left;
16
    background-image:url('/intranet-tmpl/prog/img/background_koha_logo.png');
17
    background-repeat:no-repeat;
18
    background-position:left top;
19
    padding-top: 12px;
20
}
21
22
23
/* ==== NEWS - Start ==== */
24
#area-news {
25
    /* Displayed if news are available */
26
    width: 300px;
27
    float: left;
28
    border: 1px solid #EEEEEE;
29
    margin: .2em;
30
    border-radius: 6px;
31
}
32
33
#area-news h3 {
34
    /* Title section for the news block : transparency to let the koha logo appear */
35
    background-color: #EEEEEE;
36
    filter:alpha(opacity=50);   /* for IE */
37
    -moz-opacity: 0.5;          /* for Firefox before 0.9 */
38
	opacity: 0.5;
39
    padding : .3em; margin: 0;
40
}
41
42
.newsitem {
43
    /* Block for one News entry */
44
    padding: 3px;
45
    margin: .3em;
46
    border-bottom: 1px solid #EEE;
47
    background-color : #ffffff;
48
    border-radius: 6px;
49
    }
50
51
.newsfooter {
52
    /* Footer containing the publication date and edition links for an News entry */
53
    font-size: 80%; color: #808080;
54
} 
55
56
#area-nonews {
57
    /* Displayed if no news are available, to keep the structure intact */
58
    width: 300px;
59
    float: left;
60
}
61
/* ==== NEWS - End ==== */
62
63
64
/* ==== MODULE LINKS - Start ==== */
65
#area-lists {
66
    /* Contains the two links columns */
67
    margin-left: 20px;
68
    float: left;
69
}
70
71
#area-list-left {
72
    /* Left column for links */
73
    width: 352px;
74
    float: left;
75
}
76
#area-list-right {
77
    /* Right column for links */
78
    margin-left: 20px;
79
    float: left;
80
    width: 352px;
81
}
82
83
ul.biglinks-list {
84
    /* List containing the module links */
85
    padding: 0px;
86
}
87
88
ul.biglinks-list li {
89
    /* Standard attributes for the list elements */
90
    list-style-type:none;
91
}
92
93
ul.biglinks-list li a.icon_general {
94
    /* Class used for each module link */
95
    display: block;
96
    float: left;
97
    
98
    width:295px;
99
    height: 46px;
100
    margin-bottom: 14px;
101
    padding-left:53px;
102
    padding-top:5px;
103
    
104
    border: solid 2px #e6f0f2;
105
    border-radius: 6px;
106
    
107
    text-decoration: none;
108
    font-family: verdana, arial;
109
    font-weight: bold;
110
    font-size: large;
111
    color: #000000;
112
    
113
    background-color:#f4f8f9;
114
    background-repeat:no-repeat;
115
}
116
117
ul.biglinks-list li a:hover.icon_general {
118
    /* Class used for each module link hover state */
119
    background-position:0 -46px;
120
    color: #85ca11;
121
    border-color: #85ca11;
122
}
123
124
/* CSS Sprites
125
 * Each image contains the normal and the hover state of the icon
126
 * The hover part starts at 46px below the top:
127
 * 
128
 *  46px
129
 * -------
130
 * |     |
131
 * |  N  | 46px \
132
 * |     |       |
133
 * -------        > 92px
134
 * |     |       |
135
 * |  H  | 46px /
136
 * |     |
137
 * -------
138
 * 
139
 */
140
141
/* Classes used for each individual module link */
142
ul.biglinks-list li a.icon_circulation {background-image:url('/intranet-tmpl/prog/img/icon_circulation.png')}
143
ul.biglinks-list li a.icon_patrons {background-image:url('/intranet-tmpl/prog/img/icon_patrons.png')}
144
ul.biglinks-list li a.icon_search {background-image:url('/intranet-tmpl/prog/img/icon_search.png')}
145
ul.biglinks-list li a.icon_lists {background-image:url('/intranet-tmpl/prog/img/icon_lists.png')}
146
ul.biglinks-list li a.icon_cataloging {background-image:url('/intranet-tmpl/prog/img/icon_cataloging.png')}
147
ul.biglinks-list li a.icon_authorities {background-image:url('/intranet-tmpl/prog/img/icon_authorities.png')}
148
149
ul.biglinks-list li a.icon_serials {background-image:url('/intranet-tmpl/prog/img/icon_serials.png')}
150
ul.biglinks-list li a.icon_acquisitions {background-image:url('/intranet-tmpl/prog/img/icon_acquisitions.png')}
151
ul.biglinks-list li a.icon_reports {background-image:url('/intranet-tmpl/prog/img/icon_reports.png')}
152
ul.biglinks-list li a.icon_administration {background-image:url('/intranet-tmpl/prog/img/icon_administration.png')}
153
ul.biglinks-list li a.icon_tools {background-image:url('/intranet-tmpl/prog/img/icon_tools.png')}
154
ul.biglinks-list li a.icon_koha {background-image:url('/intranet-tmpl/prog/img/icon_koha.png')}
155
/* ==== MODULE LINKS - End ==== */
156
157
158
/* ==== PENDING - Start ==== */
159
#area-pending {
160
    /* Block containing links to pending tags, comments and suggestions */
161
    width: 100%;
162
    border: solid 1px #e6f0f2;
163
    border-radius: 6px;
164
    clear: left;
165
}
166
167
.pending-info {
168
    /* For the div containing a "pending" link (useful to preserve width of area-pending box width) */
169
    margin-top: 2px;
170
    margin-bottom: 2px;
171
    margin-left: 8px;
172
}
173
174
.pending-number-link {
175
    /* Style for the "pending" links : the number of pending items appear bigger */
176
    font-weight: bold;
177
    font-size: 1.1em;
178
}
179
/* ==== PENDING - End ==== */
180
181
182
/* ==== USERBLOCK - Start ==== */
183
#area-userblock {
184
    /* Appears if the "IntranetmainUserblock" system preference is defined */
185
    margin-top: 10px;
186
    width: 100%;
187
    border: solid 1px #e6f0f2;
188
    border-radius: 6px;
189
    clear: left;
190
}
191
192
.user-info {
193
    /* For the div containing the information (useful to preserve width of area-userblock box width) */
194
    margin: 8px;
195
}
196
/* ==== USERBLOCK - End ==== */
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-33 / +67 lines)
Lines 1-8 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
a, a:link, a:visited, a:active {
4
input:focus{
5
	color : #0000CC;
5
    border-color:#85ca11;
6
    border-style:solid;
7
    border-radius: 4px;
8
}
9
10
li.active a {
11
    /* Color of active vertical tab on page like circulation.pl */
12
    color:#000000;
13
}
14
15
a, a:link, a:visited {
16
	color : #004d99;
17
    text-decoration: none;
18
}
19
20
a:hover, a:active {
21
    color : #85ca11;
22
    text-decoration: none;
6
}
23
}
7
24
8
.yui-button,.yui-button a:link,.yui-button a:visited {
25
.yui-button,.yui-button a:link,.yui-button a:visited {
Lines 13-21 a.yuimenuitemlabel { Link Here
13
        color: #000000;
30
        color: #000000;
14
}
31
}
15
32
16
a:hover {
17
	color : #669ACC;
18
}
19
33
20
a.overdue,
34
a.overdue,
21
.overdue,
35
.overdue,
Lines 164-172 ol li { Link Here
164
}
178
}
165
179
166
#header {
180
#header {
167
	background-color : #F3F3F3;
181
    background-color : #e6f0f2;
168
	border-bottom : 1px solid #E8E8E8;
182
    line-height : 2em;
169
	line-height : 2em;
183
}
184
185
#header a.toplinks {
186
    #color: #ffffff;
187
    font-weight: bold;
188
}
189
190
.gradient {
191
    background-image:url('/intranet-tmpl/prog/img/header_gradient.png');
192
    display: inline-block;
193
    width:100%;
170
}
194
}
171
195
172
.clearfix:after {
196
.clearfix:after {
Lines 177-183 ol li { Link Here
177
    visibility: hidden;
201
    visibility: hidden;
178
}
202
}
179
203
180
.clearfix {display: inline-block;}
204
.clearfix {
205
    display: inline-block;
206
}
181
207
182
/* Hides from IE-mac \*/
208
/* Hides from IE-mac \*/
183
* html .clearfix {height: 1%;}
209
* html .clearfix {height: 1%;}
Lines 318-342 span.problem { Link Here
318
}
344
}
319
345
320
fieldset {
346
fieldset {
321
	border : 2px solid #EEEEEE;
322
	margin : 1em 1em 1em 0;
347
	margin : 1em 1em 1em 0;
323
	padding : 1em;
348
	padding : 1em;
349
    background-color:#f4f8f9;
350
    border:2px solid #b9d8d9;
351
    border-radius:5px;
324
}
352
}
325
353
326
legend {
354
legend {
327
	font-size : 123.1%;
355
	font-size : 123.1%;
328
	font-weight : bold;
356
	font-weight : bold;
329
	margin : 0 0 0 -1em;
357
    border:2px solid #b9d8d9;
330
	padding : 0;
358
    background-color:#ffffff;
359
    border-radius:3px;
360
    text-align:right;
361
    padding: 0.2em 0.5em;
331
}
362
}
332
363
333
#breadcrumbs {
364
#breadcrumbs {
334
	background-color : #F3F3F3;
365
    background-color : #f4f8f9;
335
	border-bottom : 1px solid #E8E8E8;
366
    border-bottom : 2px solid #e6f0f2;
336
	clear : both;
367
    clear : both;
337
	font-size : 90%;
368
    font-size : 90%;
338
	padding :.2em .5em .4em 10px;
369
    padding :.2em .5em .4em 10px;
339
	margin : 0;
370
    margin : 0;
340
}
371
}
341
372
342
#header+#breadcrumbs {
373
#header+#breadcrumbs {
Lines 375-381 div#header_search ul.link-tabs li.off a { Link Here
375
406
376
div#header_search div.residentsearch {
407
div#header_search div.residentsearch {
377
	border : 0;
408
	border : 0;
378
	border-bottom : 1px solid #FF9900;
409
	border-bottom : 1px solid #85ca11;
379
	padding : 0 0 .2em 0;
410
	padding : 0 0 .2em 0;
380
}
411
}
381
412
Lines 458-464 div.patroninfo { Link Here
458
}
489
}
459
490
460
div.patroninfo h5 {
491
div.patroninfo h5 {
461
	border-right :  1px solid #000;
492
    border-right:1px solid #b9d8d9;
462
	margin-bottom : 0;
493
	margin-bottom : 0;
463
	padding-left : -.5em;
494
	padding-left : -.5em;
464
	padding-top : .3em;
495
	padding-top : .3em;
Lines 467-473 div.patroninfo h5 { Link Here
467
498
468
div.patroninfo ul {
499
div.patroninfo ul {
469
	border : 0;
500
	border : 0;
470
	border-right : 1px solid #000;
501
    border-right:1px solid #b9d8d9;
471
	border-bottom : 0;
502
	border-bottom : 0;
472
	border-top : 0;
503
	border-top : 0;
473
	padding : 0;
504
	padding : 0;
Lines 556-562 div.yui-b fieldset.brief fieldset legend { Link Here
556
587
557
fieldset.rows {  
588
fieldset.rows {  
558
border-width : 1px;
589
border-width : 1px;
559
border-bottom : 1px solid #666;
590
border:2px solid #b9d8d9;
560
float : left;
591
float : left;
561
font-size : 90%;
592
font-size : 90%;
562
clear : left;
593
clear : left;
Lines 666-671 fieldset.rows label.yesno { Link Here
666
fieldset.action, div.action {
697
fieldset.action, div.action {
667
	clear : both;
698
	clear : both;
668
	float : none;
699
	float : none;
700
    background-color:#ffffff;
669
	border : none;
701
	border : none;
670
	margin : 0;
702
	margin : 0;
671
	padding : 1em 0 .3em 0;
703
	padding : 1em 0 .3em 0;
Lines 740-746 fieldset.rows .inputnote { Link Here
740
}
772
}
741
773
742
.ui-tabs-nav a, .ui-tabs-nav a span, .ui-tabs-nav span.a {
774
.ui-tabs-nav a, .ui-tabs-nav a span, .ui-tabs-nav span.a {
743
   background : none;
775
    background : none;
744
	display : block;
776
	display : block;
745
	padding: .2em .5em .25em .5em;
777
	padding: .2em .5em .25em .5em;
746
}
778
}
Lines 750-763 fieldset.rows .inputnote { Link Here
750
}
782
}
751
783
752
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav .ui-tabs-selected span.a {
784
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav .ui-tabs-selected span.a {
753
	background-color : #FFFFCC;
785
	border-top: 1px solid #e6f0f2;
754
	border-top: 1px solid #FFFFCC;
786
	border-right: 1px solid #85ca11;
755
	border-right: 1px solid #FF9900;
787
	border-bottom: 1px solid #85ca11;
756
	border-bottom: 1px solid #FF9900;
788
	border-left: 1px solid #85ca11;
757
	border-left: 1px solid #FFCC66;
758
	font-weight : bold;
789
	font-weight : bold;
759
	text-align : center;
790
	text-align : center;
760
	text-decoration : none;
791
	text-decoration : none;
792
    border-radius: 0px 0px 4px 4px;
793
    color : #000000;
761
794
762
}
795
}
763
796
Lines 766-776 fieldset.rows .inputnote { Link Here
766
}
799
}
767
800
768
.ui-tabs-nav .ui-tabs-selected a:hover {
801
.ui-tabs-nav .ui-tabs-selected a:hover {
769
	color : #0000CC;
802
	color : #000000;
770
}
803
}
771
804
772
.ui-tabs-nav li.ui-tabs-selected {
805
.ui-tabs-nav li.ui-tabs-selected {
773
	background-color : #FFFFCC;
806
	/* background-color : #FFFFCC; */
774
}
807
}
775
808
776
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active, .ui-tabs-nav span.a {
809
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active, .ui-tabs-nav span.a {
Lines 1299-1305 a:hover .term { Link Here
1299
}
1332
}
1300
1333
1301
div#menu {
1334
div#menu {
1302
	border-right: 1px solid #000;
1335
    border-right:1px solid #b9d8d9;
1303
	margin-right: .5em;
1336
	margin-right: .5em;
1304
	padding-top: 1em;
1337
	padding-top: 1em;
1305
	padding-bottom: 2em;
1338
	padding-bottom: 2em;
Lines 1324-1330 div#menu li a { Link Here
1324
	border-top-left-radius: 5px;
1357
	border-top-left-radius: 5px;
1325
	-moz-border-bottom-left-radius: 5px;
1358
	-moz-border-bottom-left-radius: 5px;
1326
	border-bottom-left-radius: 5px;
1359
	border-bottom-left-radius: 5px;
1327
	border: 1px solid #000;
1360
    border:1px solid #b9d8d9;
1328
	font-size: 111%;
1361
	font-size: 111%;
1329
	margin: .5em 0;
1362
	margin: .5em 0;
1330
	padding: .4em .3em;
1363
	padding: .4em .3em;
Lines 1871-1877 span.permissiondesc { Link Here
1871
	border: 0;
1904
	border: 0;
1872
	padding: 5;
1905
	padding: 5;
1873
	font-size: 11pt;
1906
	font-size: 11pt;
1874
	color: darkblue;
1907
    color: #000000;
1908
    font-style: italic;
1875
}
1909
}
1876
1910
1877
.labeledmarc-value {
1911
.labeledmarc-value {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-search.inc (-2 / +3 lines)
Lines 1-4 Link Here
1
1
<div class="gradient">
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Acquisitions Resident Search Box -->
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Acquisitions Resident Search Box -->
3
<div id="header_search">
3
<div id="header_search">
4
<div id="supplier_search" class="residentsearch">
4
<div id="supplier_search" class="residentsearch">
Lines 27-31 Link Here
27
            <li><a href="/cgi-bin/koha/acqui/booksellers.pl#supplier_search">Vendor search</a></li>
27
            <li><a href="/cgi-bin/koha/acqui/booksellers.pl#supplier_search">Vendor search</a></li>
28
            <li><a href="/cgi-bin/koha/acqui/histsearch.pl#orders_search">Orders search</a></li>
28
            <li><a href="/cgi-bin/koha/acqui/histsearch.pl#orders_search">Orders search</a></li>
29
			</ul>	
29
			</ul>	
30
</div>
30
</div><!-- /header_search -->
31
</div><!-- /gradient -->
31
<!-- End Acquisitions Resident Search Box -->
32
<!-- End Acquisitions Resident Search Box -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc (-1 / +3 lines)
Lines 1-3 Link Here
1
<div class="gradient">
1
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1>
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1>
2
<!-- Begin Authorities Resident Search Box -->
3
<!-- Begin Authorities Resident Search Box -->
3
<div id="header_search" class="residentsearch">
4
<div id="header_search" class="residentsearch">
Lines 97-101 Link Here
97
        <li><a href="/cgi-bin/koha/authorities/authorities-home.pl#main_heading">Search main heading</a></li>
98
        <li><a href="/cgi-bin/koha/authorities/authorities-home.pl#main_heading">Search main heading</a></li>
98
        <li><a href="/cgi-bin/koha/authorities/authorities-home.pl#all_headings">Search all headings</a></li>
99
        <li><a href="/cgi-bin/koha/authorities/authorities-home.pl#all_headings">Search all headings</a></li>
99
    </ul>
100
    </ul>
100
</div>
101
</div><!-- /header_search -->
102
</div><!-- /gradient -->
101
<!-- End Authorities Resident Search Box -->
103
<!-- End Authorities Resident Search Box -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc (-2 / +3 lines)
Lines 1-4 Link Here
1
1
<div class="gradient">
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Catalogue Resident Search Box -->
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Catalogue Resident Search Box -->
3
[% IF ( CAN_user_circulate ) %][% IF ( CircAutocompl ) %]<script type="text/javascript">
3
[% IF ( CAN_user_circulate ) %][% IF ( CircAutocompl ) %]<script type="text/javascript">
4
//<![CDATA[
4
//<![CDATA[
Lines 93-97 YAHOO.util.Event.onContentReady("header_search", function() { Link Here
93
    [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/returns.pl#checkin_search">Check in</a></li>[% END %]
93
    [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/returns.pl#checkin_search">Check in</a></li>[% END %]
94
            [% IF ( CAN_user_catalogue ) %]<li class="ui-tabs-selected"><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
94
            [% IF ( CAN_user_catalogue ) %]<li class="ui-tabs-selected"><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
95
			</ul>	
95
			</ul>	
96
</div>
96
</div><!-- /header_search -->
97
</div><!-- /gradient -->
97
<!-- End Catalogue Resident Search Box -->
98
<!-- End Catalogue Resident Search Box -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cataloging-search.inc (-1 / +3 lines)
Lines 2-7 Link Here
2
	$("input[name=q]:eq(0)").focus();
2
	$("input[name=q]:eq(0)").focus();
3
});</script>
3
});</script>
4
4
5
<div class="gradient">
5
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Cataloging Resident Search Box -->
6
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Cataloging Resident Search Box -->
6
<div id="header_search">
7
<div id="header_search">
7
<div id="addbooks_search" class="residentsearch">
8
<div id="addbooks_search" class="residentsearch">
Lines 16-20 Link Here
16
            <li><a href="/cgi-bin/koha/catalogue/search.pl#addbooks_search">Cataloging search</a></li>
17
            <li><a href="/cgi-bin/koha/catalogue/search.pl#addbooks_search">Cataloging search</a></li>
17
            [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/circulation.pl#circ_search">Check out</a></li>[% END %]
18
            [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/circulation.pl#circ_search">Check out</a></li>[% END %]
18
			</ul>	
19
			</ul>	
19
</div>
20
</div><!-- /header_search -->
21
</div><!-- /gradient -->
20
<!-- End Cataloging Resident Search Box -->
22
<!-- End Cataloging Resident Search Box -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc (-3 / +3 lines)
Lines 1-4 Link Here
1
1
<div class="gradient">
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Circulation Resident Search Box -->
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Circulation Resident Search Box -->
3
3
4
<div id="header_search">
4
<div id="header_search">
Lines 26-31 Link Here
26
    [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
26
    [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
27
</ul>   
27
</ul>   
28
28
29
</div>
29
</div><!-- /header_search -->
30
30
</div><!-- /gradient -->
31
<!-- End Circulation Resident Search Box -->
31
<!-- End Circulation Resident Search Box -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc (-10 / +10 lines)
Lines 3-17 Link Here
3
    <div id="header" class="clearfix">
3
    <div id="header" class="clearfix">
4
        <div id="toplevelnav">
4
        <div id="toplevelnav">
5
            <ul id="toplevelmenu">
5
            <ul id="toplevelmenu">
6
                [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a></li>[% END %]
6
                [% IF ( CAN_user_circulate ) %]<li><a class="toplinks" href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a></li>[% END %]
7
                [% IF ( CAN_user_borrowers ) %]<li><a href="/cgi-bin/koha/members/members-home.pl">Patrons</a></li>[% END %]
7
                [% IF ( CAN_user_borrowers ) %]<li><a class="toplinks" href="/cgi-bin/koha/members/members-home.pl">Patrons</a></li>[% END %]
8
                [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl">Search</a></li>[% END %]
8
                [% IF ( CAN_user_catalogue ) %]<li><a class="toplinks" href="/cgi-bin/koha/catalogue/search.pl">Search</a></li>[% END %]
9
                [% IF ( intranetbookbag ) %]
9
                [% IF ( intranetbookbag ) %]
10
                    <li><a href="#" id="cartmenulink">Cart<span id="basketcount"></span></a></li>
10
                    <li><a class="toplinks" href="#" id="cartmenulink">Cart<span id="basketcount"></span></a></li>
11
                [% END %]
11
                [% END %]
12
                [% IntranetNav %]
12
                [% IntranetNav %]
13
                <li class="more">
13
                <li class="more">
14
                    <a id="showmore" href="/cgi-bin/koha/mainpage.pl">More</a>
14
                    <a class="toplinks" id="showmore" href="/cgi-bin/koha/mainpage.pl">More</a>
15
                    <div id="moremenu">
15
                    <div id="moremenu">
16
                        <div class="bd">
16
                        <div class="bd">
17
                            <ul>
17
                            <ul>
Lines 59-68 Link Here
59
            </strong>
59
            </strong>
60
            [% IF ( IndependantBranches ) %]
60
            [% IF ( IndependantBranches ) %]
61
                [% IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) %]
61
                [% IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) %]
62
                    (<a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>)
62
                    ( <a class="toplinks" href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a> )
63
                [% END %]
63
                [% END %]
64
            [% ELSE %]
64
            [% ELSE %]
65
                (<a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>)
65
                ( <a class="toplinks" href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a> )
66
            [% END %]
66
            [% END %]
67
        |
67
        |
68
        [% END %]
68
        [% END %]
Lines 71-83 Link Here
71
                [% loggedinusername %]
71
                [% loggedinusername %]
72
            </span>
72
            </span>
73
            [% IF ( intranetbookbag ) %]
73
            [% IF ( intranetbookbag ) %]
74
            (<a href="/cgi-bin/koha/mainpage.pl?logout.x=1" onclick="clearHoldFor(); delBasket('main', true);">Log out</a>) |
74
            ( <a class="toplinks" href="/cgi-bin/koha/mainpage.pl?logout.x=1" onclick="clearHoldFor(); delBasket('main', true);">Log out</a> ) |
75
            [% ELSE %]
75
            [% ELSE %]
76
            (<a href="/cgi-bin/koha/mainpage.pl?logout.x=1" onclick="clearHoldFor();">Log out</a>) |
76
            ( <a class="toplinks" href="/cgi-bin/koha/mainpage.pl?logout.x=1" onclick="clearHoldFor();">Log out</a> ) |
77
            [% END %]
77
            [% END %]
78
        [% ELSE %]
78
        [% ELSE %]
79
            You are not logged in |
79
            You are not logged in |
80
        [% END %]
80
        [% END %]
81
        <a href="/cgi-bin/koha/help.pl" id="helper" onclick="var link=window.open('','Koha_Help','width=600,height=600,toolbar=false,scrollbars=yes'); link.location='/cgi-bin/koha/help.pl'; return false;">[ ? ]</a>
81
        <a class="toplinks" href="/cgi-bin/koha/help.pl" id="helper" onclick="var link=window.open('','Koha_Help','width=600,height=600,toolbar=false,scrollbars=yes'); link.location='/cgi-bin/koha/help.pl'; return false;">[ ? ]</a>
82
    </div>
82
    </div>
83
</div>	
83
</div>	
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc (-3 / +3 lines)
Lines 1-4 Link Here
1
1
<div class="gradient">
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Main page Resident Search Box -->
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Main page Resident Search Box -->
3
3
4
<div id="header_search">
4
<div id="header_search">
Lines 35-40 Link Here
35
    [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
35
    [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
36
</ul>
36
</ul>
37
37
38
</div>
38
</div><!-- /header_search -->
39
39
</div><!-- /gradient -->
40
<!-- End Main page Resident Search Box -->
40
<!-- End Main page Resident Search Box -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-2 / +3 lines)
Lines 1-4 Link Here
1
1
<div class="gradient">
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Patrons Resident Search Box -->
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Patrons Resident Search Box -->
3
[% IF ( CAN_user_circulate ) %][% IF ( CircAutocompl ) %]<script type="text/javascript">
3
[% IF ( CAN_user_circulate ) %][% IF ( CircAutocompl ) %]<script type="text/javascript">
4
//<![CDATA[
4
//<![CDATA[
Lines 130-136 YAHOO.util.Event.onContentReady("header_search", function() { Link Here
130
    [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/returns.pl#checkin_search">Check in</a></li>[% END %]
130
    [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/returns.pl#checkin_search">Check in</a></li>[% END %]
131
            [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
131
            [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
132
			</ul>
132
			</ul>
133
</div>
133
</div><!-- /header_search -->
134
</div><!-- /gradient -->
134
<script type="text/javascript">//<![CDATA[
135
<script type="text/javascript">//<![CDATA[
135
$(document).ready(function() {
136
$(document).ready(function() {
136
    [% IF ( advsearch ) %]$("#filteraction_on").toggle();
137
    [% IF ( advsearch ) %]$("#filteraction_on").toggle();
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-search.inc (-2 / +3 lines)
Lines 1-4 Link Here
1
1
<div class="gradient">
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Serials Resident Search Box -->
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Serials Resident Search Box -->
3
<div id="header_search">
3
<div id="header_search">
4
	<div id="subscription_search" class="residentsearch">
4
	<div id="subscription_search" class="residentsearch">
Lines 21-25 Link Here
21
            [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/circulation.pl#circ_search">Check out</a></li>[% END %]
21
            [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/circulation.pl#circ_search">Check out</a></li>[% END %]
22
            [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
22
            [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the catalog</a></li>[% END %]
23
			</ul>	
23
			</ul>	
24
</div>
24
</div><!-- /header_search -->
25
</div><!-- /gradient -->
25
<!-- End Serials Resident Search Box -->
26
<!-- End Serials Resident Search Box -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/ui.tabs.css (-2 / +2 lines)
Lines 68-74 Link Here
68
.ui-tabs-panel {
68
.ui-tabs-panel {
69
    border: 1px solid #E8E8E8;
69
    border: 1px solid #E8E8E8;
70
	padding : 1em;
70
	padding : 1em;
71
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
71
    #background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
72
}
72
}
73
73
74
/* Additional IE specific bug fixes... */
74
/* Additional IE specific bug fixes... */
Lines 77-80 Link Here
77
}
77
}
78
*:first-child+html .ui-tabs-nav  { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
78
*:first-child+html .ui-tabs-nav  { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
79
    display: inline-block;
79
    display: inline-block;
80
}
80
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (+18 lines)
Lines 342-347 Link Here
342
                  <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>
342
                  <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>
343
                  by the Bridge Consortium of Carleton College and St. Olaf College.</li>
343
                  by the Bridge Consortium of Carleton College and St. Olaf College.</li>
344
              </ul>
344
              </ul>
345
            
346
            <h2>The Noun Project icons</h2>
347
                <ul>
348
                    <li>All images come from <a href="http://thenounproject.com/">The Noun Project</a> collection</li>
349
                    <li>
350
                        Circulation ("fair-trade") symbol by Edward Boatman ; Patrons
351
                        ("children's library") symbol by Edward Boatman, Saul Tannenbaum,
352
                        Stephen Kennedy, Nikki Snow, Brooke Hamilton ; Search ("magnifying
353
                        glass") symbol by Philipp Suess ; Lists ("folder") symbol by Jack
354
                        Biesek, Gladys Brenner, Margaret Faye, Healther Merrifield, Kate
355
                        Keating, Wendy Olmstead, Todd Pierce, Jamie Cowgill, Jim Bolek ;
356
                        Cataloging ("price tag") symbol by the Noun Project ; Authorities
357
                        ("link") symbol by Matthew Exton ; Serials ("newspaper") symbol by John
358
                        Caserta ; Acquisitions ("present") symbol by David Goodger ; Reports
359
                        ("pie chart") symbol by Scott Lewis ; Administration ("gears") symbol by
360
                        Jeremy Minnick ; Tools ("wrench") symbol by National Park Service
361
                    </li>
362
                </ul>
345
363
346
            <h2>jQuery Star Rating Plugin</h2>
364
            <h2>jQuery Star Rating Plugin</h2>
347
              <p>jQuery Star Rating Plugin v3.14 by <a href="http://www.fyneworks.com/">Fyneworks.com</a> is licensed under the <a target="_blank" href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a> and the <a target="_blank" href="http://creativecommons.org/licenses/GPL/2.0/">GPL License</a>.</p>
365
              <p>jQuery Star Rating Plugin v3.14 by <a href="http://www.fyneworks.com/">Fyneworks.com</a> is licensed under the <a target="_blank" href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a> and the <a target="_blank" href="http://creativecommons.org/licenses/GPL/2.0/">GPL License</a>.</p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt (-121 / +139 lines)
Lines 1-135 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha staff client</title>
2
<title>Koha staff client</title>
3
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
4
<style type="text/css"> #koha-news { border: 1px solid #EEEEEE; margin: .2em;} #koha-news h3 {background-color: #EEEEEE; padding : .3em; margin: 0;} .newsitem {margin: .3em; border-bottom: 1px solid #EEE;} .newsitem:last-child {border-bottom : 0;} .newsfooter {font-size: 80%; color: #CCCCCC;} </style>
4
<style type="text/css"> </style>
5
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/mainpage.css" />
5
</head>
6
</head>
6
<body id="main_intranet-main" class="main">
7
<body id="main_intranet-main" class="main">
7
[% INCLUDE 'header.inc' %]
8
[% INCLUDE 'header.inc' %]
8
[% INCLUDE 'home-search.inc' %]
9
[% INCLUDE 'home-search.inc' %]
9
10
10
<div id="breadcrumbs">Home</div>
11
<div id="breadcrumbs" >Home</div>
11
12
<div style="clear: both"></div>
12
<div id="doc3" class="yui-t3">
13
<div id="area-content">
13
<div id="bd">
14
<div id="yui-main"><div class="yui-b"><div class="yui-g">
15
16
<h1>Welcome to Koha</h1>
17
18
    <div class="yui-u first">
19
    <!-- START - CIRCULATION -->
20
    [% IF ( CAN_user_circulate ) %]
21
    <h3><a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a></h3>
22
    <ul>
23
        <li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfers</a></li>
24
    </ul>
25
    [% END %]
26
    <!-- END - CIRCULATION -->
27
28
    <!-- START - PATRONS -->
29
    [% IF ( CAN_user_borrowers ) %]
30
        <h3><a href="/cgi-bin/koha/members/members-home.pl">Patrons</a></h3>
31
    [% END %]
32
    <!-- END - PATRONS -->
33
34
    <!-- START - ADVANCED SEARCH -->
35
    [% IF ( CAN_user_catalogue ) %]
36
        <h3><a href="/cgi-bin/koha/catalogue/search.pl">Advanced search</a></h3>
37
    [% END %]
38
    <!-- END - ADVANCED SEARCH -->
39
    
40
    <!-- START - LISTS -->
41
    <h3><a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a></h3>
42
    <!-- END - LISTS -->
43
44
    <!-- START - CATALOGING -->
45
    [% IF ( CAN_user_catalogue || CAN_user_editcatalogue || CAN_user_editauthorities ) %]
46
        <h3><a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a></h3>
47
        <ul>
48
        [% IF ( CAN_user_catalogue || CAN_user_editcatalogue ) %]
49
                <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl">Add MARC record</a></li>
50
        [% END %]
51
        [% IF ( CAN_user_editauthorities ) %]
52
                <li><a href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a></li>
53
        [% END %]
54
        </ul>
55
    [% END %]
56
    <!-- END - CATALOGING -->
57
    </div>
58
59
    <div class="yui-u">
60
    <!-- START - SERIALS -->
61
    [% IF ( CAN_user_serials ) %]
62
        <h3><a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a></h3>
63
    [% END %]
64
    [% IF ( CAN_user_acquisition ) %]
65
        <h3><a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a></h3>
66
        [% IF ( pendingsuggestions ) %]
67
            <ul>
68
                <li><a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions pending approval</a>: <span class="holdcount"><a href="/cgi-bin/koha/suggestion/suggestion.pl">[% pendingsuggestions %]</a></span></li>
69
            </ul>
70
        [% END %]
71
    [% END %]
72
    <!-- END - SERIALS -->
73
74
    <!-- START - REPORTS -->
75
    [% IF ( CAN_user_reports ) %]
76
        <h3><a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a></h3>
77
    [% END %]
78
    <!-- END - REPORTS -->
79
80
    <!-- START - ADMINISTRATION -->
81
    [% IF ( CAN_user_parameters ) %]
82
        <h3><a href="/cgi-bin/koha/admin/admin-home.pl">Koha administration</a></h3>
83
        <ul>
84
            <li><a href="/cgi-bin/koha/admin/preferences.pl">System preferences</a></li>
85
        </ul>
86
        [% END %]
87
    [% IF ( CAN_user_tools ) %] 
88
        <h3><a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a></h3>
89
        [% IF ( CAN_user_tools_moderate_comments && pendingcomments ) || ( CAN_user_tools_moderate_tags && pendingtags ) %]
90
            <ul>
91
                [% IF ( CAN_user_tools_moderate_comments && pendingcomments ) %]
92
                    <li><a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments pending approval</a>: <span class="holdcount"><a href="/cgi-bin/koha/reviews/reviewswaiting.pl">[% pendingcomments %]</a></span></li>
93
                [% END %]
94
                [% IF ( CAN_user_tools_moderate_tags && pendingtags ) %]
95
                    <li><a href="/cgi-bin/koha/tags/review.pl">Tags pending approval</a>: <span class="holdcount"><a href="/cgi-bin/koha/tags/review.pl">[% pendingtags %]</a></span></li>
96
                [% END %]
97
            </ul>
98
        [% END %]
99
    [% END %]
100
    <!-- END - ADMINISTRATION -->
101
102
    <!-- START - ABOUT -->
103
    <h3><a href="/cgi-bin/koha/about.pl">About Koha</a></h3>
104
    <!-- END - ABOUT -->
105
    </div>
106
    </div>
107
        [% IF ( IntranetmainUserblock ) %]
108
            <div id="mainuserblock" class="yui-g">
109
            [% IntranetmainUserblock %]
110
            </div>[% ELSE %]&nbsp;
111
        [% END %]
112
    </div><!-- /yui-bd -->
113
    </div><!-- /yui-main -->
114
    [% IF ( koha_news_count ) %]
14
    [% IF ( koha_news_count ) %]
115
        <div class="yui-b">
15
        <div id="area-news">
116
            <div id="koha-news">
16
            <h3><span="news_title">News</span></h3>
117
                <h3>News</h3>
17
            [% FOREACH koha_new IN koha_news %]
118
                [% FOREACH koha_new IN koha_news %]
18
                <div class="newsitem" id="news[% koha_new.idnew %]"><h4>[% koha_new.title %]</h4>
119
                    <div class="newsitem" id="news[% koha_new.idnew %]"><h4>[% koha_new.title %]</h4>
19
                    <p>[% koha_new.new %]</p>
120
                        <p>[% koha_new.new %]</p>
20
                    <p class="newsfooter"> Posted on [% koha_new.newdate %]
121
                        <p class="newsfooter"> Posted on [% koha_new.newdate %]
21
                        [% IF ( CAN_user_tools ) %]
122
                            [% IF ( CAN_user_tools ) %]
22
                            <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% koha_new.idnew %]">Edit</a>
123
                                <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% koha_new.idnew %]">Edit</a> | <a href="/cgi-bin/koha/tools/koha-news.pl?op=del&amp;ids=[% koha_new.idnew %]">Delete</a> | <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form">New</a>
23
                             | <a href="/cgi-bin/koha/tools/koha-news.pl?op=del&amp;ids=[% koha_new.idnew %]">Delete</a>
124
                            [% END %]
24
                             | <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form">New</a>
125
                        </p>
25
                        [% END %]
126
                    </div>
26
                    </p>
127
                [% END %]
27
                </div>
128
            </div><!-- /koha-news -->
28
            [% END %]
129
        </div>
29
        </div><!-- /koha-news -->
30
    [% ELSE %]
31
        <div id="area-nonews">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>
130
    [% END %]
32
    [% END %]
33
        <div id="area-lists">
34
            <div id="area-list-left">
35
                <ul class="biglinks-list">
36
                    [% IF ( CAN_user_circulate ) %]
37
                    <li>
38
                        <a class="icon_general icon_circulation" href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
39
                        </a>
40
                    </li>
41
                    [% END %]
42
                    
43
                    [% IF ( CAN_user_borrowers ) %]
44
                    <li>
45
                        <a class="icon_general icon_patrons" href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
46
                    </li>
47
                    [% END %]
48
                    
49
                    [% IF ( CAN_user_catalogue ) %]
50
                    <li>
51
                        <a class="icon_general icon_search" href="/cgi-bin/koha/catalogue/search.pl">Advanced Search</a>
52
                    </li>
53
                    [% END %]
54
                    
55
                    <li>
56
                        <a class="icon_general icon_lists" href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a>
57
                    </li>
58
                    
59
                    [% IF ( CAN_user_catalogue || CAN_user_editcatalogue ) %]
60
                    <li>
61
                        <a class="icon_general icon_cataloging" href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a>
62
                    </li>
63
                    [% END %]
64
                    
65
                    [% IF ( CAN_user_editauthorities ) %]
66
                    <li>
67
                        <a class="icon_general icon_authorities" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
68
                    </li>
69
                    [% END %]
70
                </ul>
71
            </div><!-- /area-list-left --> 
72
            
73
            <div id="area-list-right">
74
                <ul class="biglinks-list">
75
                    [% IF ( CAN_user_serials ) %]
76
                    <li>
77
                        <a class="icon_general icon_serials" href="/cgi-bin/koha/serials/serials-home.pl">Serials</a>
78
                        <span class="biglink"></span>
79
                    </li>
80
                    [% END %]
81
                    
82
                    [% IF ( CAN_user_acquisition ) %]
83
                    <li>
84
                        <a class="icon_general icon_acquisitions" href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
85
                        <span class="biglink"></span>
86
                    </li>
87
                    [% END %]
88
                    
89
                    [% IF ( CAN_user_reports ) %]
90
                    <li>
91
                        <a class="icon_general icon_reports" href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>
92
                    </li>
93
                    [% END %]
94
                    
95
                    [% IF ( CAN_user_parameters ) %]
96
                    <li>
97
                        <a class="icon_general icon_administration" href="/cgi-bin/koha/admin/admin-home.pl">Koha Administration</a>
98
                    </li>
99
                    [% END %]
100
                    
101
                    [% IF ( CAN_user_tools ) %] 
102
                    <li>
103
                        <a class="icon_general icon_tools" href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
104
                    </li>
105
                    [% END %]
106
                    
107
                    <li>
108
                        <a class="icon_general icon_koha" href="/cgi-bin/koha/about.pl">About Koha</a>
109
                    </li>
110
                </ul>
111
            </div><!-- /area-list-right -->
131
112
113
            [% IF ( CAN_user_tools_moderate_comments ) && ( pendingsuggestions || pendingcomments || pendingtags ) %]
114
                <div id="area-pending">
115
                    [% IF ( pendingsuggestions ) %]
116
                    <div class="pending-info">
117
                        <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions pending approval:
118
                        <span class="pending-number-link">[% pendingsuggestions %]</span></a>
119
                    </div>
120
                    [% END %]
121
                    
122
                    [% IF ( pendingcomments ) %]
123
                    <div class="pending-info">
124
                        <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments pending approval: 
125
                        <span class="pending-number-link">[% pendingcomments %]</span></a>
126
                    </div>
127
                    [% END %]
128
                    
129
                    [% IF ( pendingtags ) %]
130
                    <div class="pending-info">
131
                        <a href="/cgi-bin/koha/tags/review.pl">Tags pending approval:
132
                        <span class="pending-number-link">[% pendingtags %]</span></a>
133
                    </div>
134
                    [% END %]
135
                </div>
136
            [% END %]
132
137
133
</div>
138
            [% IF ( IntranetmainUserblock ) %]
139
            <div id="area-userblock">
140
                <div class="user-info">
141
                    [% IntranetmainUserblock %]
142
                </div>
143
            </div>
144
            [% END %]
145
        
146
            <div style="height: 30px">
147
                <!-- Without this white space the end of the page can be hidden by the language selector -->
148
                &nbsp;
149
            </div>
150
        </div><!-- /area-lists -->
134
151
152
<!-- the main div is closed in intranet-bottom.inc -->
135
[% INCLUDE 'intranet-bottom.inc' %]
153
[% INCLUDE 'intranet-bottom.inc' %]

Return to bug 7979