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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/mainpage.css (+198 lines)
Line 0 Link Here
1
/* 
2
 * This file contains CSS styles used only on the front page of Koha
3
 * 
4
 * COLORS
5
 * Very light blue  Module links background                 : #f4f8f9
6
 * Light blue       Navbar, breadcrumb                      : #e6f0f2
7
 * Blue             Module links and breadcrumb border      : #b9d8d9
8
 * Dark blue        Links                                   : #004d99
9
 * Green            Links:hover                             : #538200
10
 * These colors are used in staff-global.css too
11
 * 
12
 */
13
14
#area-content {
15
    /* Contains the news + both columns of links + pending box + userblock box */
16
    float: left;
17
    background-image:url('/intranet-tmpl/prog/img/background_koha_logo.png');
18
    background-repeat:no-repeat;
19
    background-position:left top;
20
    padding-top: 12px;
21
}
22
23
24
/* ==== NEWS - Start ==== */
25
#area-news {
26
    /* Displayed if news are available */
27
    width: 300px;
28
    float: left;
29
    border: 1px solid #EEEEEE;
30
    margin: .2em;
31
    border-radius: 6px;
32
}
33
34
#area-news h3 {
35
    /* Title section for the news block : transparency to let the koha logo appear */
36
    background-color: #EEEEEE;
37
    filter:alpha(opacity=50);   /* for IE */
38
    -moz-opacity: 0.5;          /* for Firefox before 0.9 */
39
	opacity: 0.5;
40
    padding : .3em; margin: 0;
41
}
42
43
.newsitem {
44
    /* Block for one News entry */
45
    padding: 3px;
46
    margin: .3em;
47
    border-bottom: 1px solid #EEE;
48
    background-color : #ffffff;
49
    border-radius: 6px;
50
    }
51
52
.newsfooter {
53
    /* Footer containing the publication date and edition links for an News entry */
54
    font-size: 80%;
55
    color: #808080;
56
} 
57
58
#area-nonews {
59
    /* Displayed if no news are available, to keep the structure intact */
60
    width: 300px;
61
    float: left;
62
}
63
/* ==== NEWS - End ==== */
64
65
66
/* ==== MODULE LINKS - Start ==== */
67
#area-lists {
68
    /* Contains the two links columns */
69
    margin-left: 20px;
70
    float: left;
71
}
72
73
#area-list-left {
74
    /* Left column for links */
75
    width: 352px;
76
    float: left;
77
}
78
#area-list-right {
79
    /* Right column for links */
80
    margin-left: 20px;
81
    float: left;
82
    width: 352px;
83
}
84
85
ul.biglinks-list {
86
    /* List containing the module links */
87
    padding: 0px;
88
}
89
90
ul.biglinks-list li {
91
    /* Standard attributes for the list elements */
92
    list-style-type:none;
93
}
94
95
ul.biglinks-list li a.icon_general {
96
    /* Class used for each module link */
97
    display: block;
98
    float: left;
99
    
100
    width:295px;
101
    height: 46px;
102
    margin-bottom: 14px;
103
    padding-left:53px;
104
    padding-top:5px;
105
    
106
    border: solid 2px #b9d8d9;
107
    border-radius: 6px;
108
    
109
    text-decoration: none;
110
    font-family: verdana, arial;
111
    font-weight: bold;
112
    font-size: large;
113
    color: #000000;
114
    
115
    background-color:#f4f8f9;
116
    background-repeat:no-repeat;
117
}
118
119
ul.biglinks-list li a:hover.icon_general {
120
    /* Class used for each module link hover state */
121
    background-position:0 -46px;
122
    color: #538200;
123
    border-color: #538200;
124
}
125
126
/* CSS Sprites
127
 * Each image contains the normal and the hover state of the icon
128
 * The hover part starts at 46px below the top:
129
 * 
130
 *  46px
131
 * -------
132
 * |     |
133
 * |  N  | 46px \
134
 * |     |       |
135
 * -------        > 92px
136
 * |     |       |
137
 * |  H  | 46px /
138
 * |     |
139
 * -------
140
 * 
141
 */
142
143
/* Classes used for each individual module link */
144
ul.biglinks-list li a.icon_circulation {background-image:url('/intranet-tmpl/prog/img/icon_circulation.png')}
145
ul.biglinks-list li a.icon_patrons {background-image:url('/intranet-tmpl/prog/img/icon_patrons.png')}
146
ul.biglinks-list li a.icon_search {background-image:url('/intranet-tmpl/prog/img/icon_search.png')}
147
ul.biglinks-list li a.icon_lists {background-image:url('/intranet-tmpl/prog/img/icon_lists.png')}
148
ul.biglinks-list li a.icon_cataloging {background-image:url('/intranet-tmpl/prog/img/icon_cataloging.png')}
149
ul.biglinks-list li a.icon_authorities {background-image:url('/intranet-tmpl/prog/img/icon_authorities.png')}
150
151
ul.biglinks-list li a.icon_serials {background-image:url('/intranet-tmpl/prog/img/icon_serials.png')}
152
ul.biglinks-list li a.icon_acquisitions {background-image:url('/intranet-tmpl/prog/img/icon_acquisitions.png')}
153
ul.biglinks-list li a.icon_reports {background-image:url('/intranet-tmpl/prog/img/icon_reports.png')}
154
ul.biglinks-list li a.icon_administration {background-image:url('/intranet-tmpl/prog/img/icon_administration.png')}
155
ul.biglinks-list li a.icon_tools {background-image:url('/intranet-tmpl/prog/img/icon_tools.png')}
156
ul.biglinks-list li a.icon_koha {background-image:url('/intranet-tmpl/prog/img/icon_koha.png')}
157
/* ==== MODULE LINKS - End ==== */
158
159
160
/* ==== PENDING - Start ==== */
161
#area-pending {
162
    /* Block containing links to pending tags, comments and suggestions */
163
    width: 100%;
164
    border: solid 1px #b9d8d9;
165
    border-radius: 6px;
166
    clear: left;
167
}
168
169
.pending-info {
170
    /* For the div containing a "pending" link (useful to preserve width of area-pending box width) */
171
    margin-top: 2px;
172
    margin-bottom: 2px;
173
    margin-left: 8px;
174
}
175
176
.pending-number-link {
177
    /* Style for the "pending" links : the number of pending items appear bigger */
178
    font-weight: bold;
179
    font-size: 1.1em;
180
}
181
/* ==== PENDING - End ==== */
182
183
184
/* ==== USERBLOCK - Start ==== */
185
#area-userblock {
186
    /* Appears if the "IntranetmainUserblock" system preference is defined */
187
    margin-top: 10px;
188
    width: 100%;
189
    border: solid 1px #b9d8d9;
190
    border-radius: 6px;
191
    clear: left;
192
}
193
194
.user-info {
195
    /* For the div containing the information (useful to preserve width of area-userblock box width) */
196
    margin: 8px;
197
}
198
/* ==== USERBLOCK - End ==== */
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-36 / +87 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, textarea:focus {
5
	color : #0000CC;
5
    border-color:#538200;
6
    border-style:solid;
7
    border-radius: 4px;
8
}
9
10
radio:focus, checkbox:focus {
11
    border-color:#538200;
12
    border-style:solid;
13
    border-radius: 4px;
14
}
15
16
::selection      { background:#538200; color:#ffffff; /* Safari and Opera */ }
17
::-moz-selection  { background:#538200; color:#ffffff; /* Firefox */ }
18
19
a, a:link, a:visited {
20
	color : #004d99;
21
    text-decoration: none;
22
}
23
24
a:hover, a:active {
25
    color : #538200;
26
    text-decoration: none;
6
}
27
}
7
28
8
.yui-button,.yui-button a:link,.yui-button a:visited {
29
.yui-button,.yui-button a:link,.yui-button a:visited {
Lines 13-21 a.yuimenuitemlabel { Link Here
13
        color: #000000;
34
        color: #000000;
14
}
35
}
15
36
16
a:hover {
17
	color : #669ACC;
18
}
19
37
20
a.overdue,
38
a.overdue,
21
.overdue,
39
.overdue,
Lines 164-172 ol li { Link Here
164
}
182
}
165
183
166
#header {
184
#header {
167
	background-color : #F3F3F3;
185
    background-color : #e6f0f2;
168
	border-bottom : 1px solid #E8E8E8;
186
    line-height : 2em;
169
	line-height : 2em;
187
}
188
189
#header a.toplinks {
190
    #color: #ffffff;
191
    font-weight: bold;
192
}
193
194
.gradient {
195
    background-image: linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
196
    background-image: -o-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
197
    background-image: -moz-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
198
    background-image: -webkit-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
199
    background-image: -ms-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
200
201
    background-image: -webkit-gradient(
202
        linear,
203
        left top,
204
        left bottom,
205
        color-stop(0.1, rgb(212,214,255)),
206
        color-stop(0.99, rgb(255,255,255))
207
    );
208
    display: inline-block;
209
    width:100%;
170
}
210
}
171
211
172
.clearfix:after {
212
.clearfix:after {
Lines 177-183 ol li { Link Here
177
    visibility: hidden;
217
    visibility: hidden;
178
}
218
}
179
219
180
.clearfix {display: inline-block;}
220
.clearfix {
221
    display: inline-block;
222
}
181
223
182
/* Hides from IE-mac \*/
224
/* Hides from IE-mac \*/
183
* html .clearfix {height: 1%;}
225
* html .clearfix {height: 1%;}
Lines 318-342 span.problem { Link Here
318
}
360
}
319
361
320
fieldset {
362
fieldset {
321
	border : 2px solid #EEEEEE;
322
	margin : 1em 1em 1em 0;
363
	margin : 1em 1em 1em 0;
323
	padding : 1em;
364
	padding : 1em;
365
    background-color:#f4f8f9;
366
    border:2px solid #b9d8d9;
367
    border-radius:5px;
324
}
368
}
325
369
326
legend {
370
legend {
327
	font-size : 123.1%;
371
	font-size : 123.1%;
328
	font-weight : bold;
372
	font-weight : bold;
329
	margin : 0 0 0 -1em;
373
    border:2px solid #b9d8d9;
330
	padding : 0;
374
    background-color:#ffffff;
375
    border-radius:3px;
376
    text-align:right;
377
    padding: 0.2em 0.5em;
331
}
378
}
332
379
333
#breadcrumbs {
380
#breadcrumbs {
334
	background-color : #F3F3F3;
381
    background-color : #e6f0f2;
335
	border-bottom : 1px solid #E8E8E8;
382
    clear : both;
336
	clear : both;
383
    font-size : 90%;
337
	font-size : 90%;
384
    padding :.2em .5em .4em 10px;
338
	padding :.2em .5em .4em 10px;
385
    margin : 0;
339
	margin : 0;
340
}
386
}
341
387
342
#header+#breadcrumbs {
388
#header+#breadcrumbs {
Lines 375-381 div#header_search ul.link-tabs li.off a { Link Here
375
421
376
div#header_search div.residentsearch {
422
div#header_search div.residentsearch {
377
	border : 0;
423
	border : 0;
378
	border-bottom : 1px solid #FF9900;
424
	border-bottom : 1px solid #85ca11;
379
	padding : 0 0 .2em 0;
425
	padding : 0 0 .2em 0;
380
}
426
}
381
427
Lines 458-464 div.patroninfo { Link Here
458
}
504
}
459
505
460
div.patroninfo h5 {
506
div.patroninfo h5 {
461
	border-right :  1px solid #000;
507
    border-right:1px solid #b9d8d9;
462
	margin-bottom : 0;
508
	margin-bottom : 0;
463
	padding-left : -.5em;
509
	padding-left : -.5em;
464
	padding-top : .3em;
510
	padding-top : .3em;
Lines 467-473 div.patroninfo h5 { Link Here
467
513
468
div.patroninfo ul {
514
div.patroninfo ul {
469
	border : 0;
515
	border : 0;
470
	border-right : 1px solid #000;
516
    border-right:1px solid #b9d8d9;
471
	border-bottom : 0;
517
	border-bottom : 0;
472
	border-top : 0;
518
	border-top : 0;
473
	padding : 0;
519
	padding : 0;
Lines 556-562 div.yui-b fieldset.brief fieldset legend { Link Here
556
602
557
fieldset.rows {  
603
fieldset.rows {  
558
border-width : 1px;
604
border-width : 1px;
559
border-bottom : 1px solid #666;
605
border:2px solid #b9d8d9;
560
float : left;
606
float : left;
561
font-size : 90%;
607
font-size : 90%;
562
clear : left;
608
clear : left;
Lines 666-671 fieldset.rows label.yesno { Link Here
666
fieldset.action, div.action {
712
fieldset.action, div.action {
667
	clear : both;
713
	clear : both;
668
	float : none;
714
	float : none;
715
    background-color:#ffffff;
669
	border : none;
716
	border : none;
670
	margin : 0;
717
	margin : 0;
671
	padding : 1em 0 .3em 0;
718
	padding : 1em 0 .3em 0;
Lines 740-746 fieldset.rows .inputnote { Link Here
740
}
787
}
741
788
742
.ui-tabs-nav a, .ui-tabs-nav a span, .ui-tabs-nav span.a {
789
.ui-tabs-nav a, .ui-tabs-nav a span, .ui-tabs-nav span.a {
743
   background : none;
790
    background : none;
744
	display : block;
791
	display : block;
745
	padding: .2em .5em .25em .5em;
792
	padding: .2em .5em .25em .5em;
746
}
793
}
Lines 750-763 fieldset.rows .inputnote { Link Here
750
}
797
}
751
798
752
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav .ui-tabs-selected span.a {
799
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav .ui-tabs-selected span.a {
753
	background-color : #FFFFCC;
800
	border-top: 1px solid #e6f0f2;
754
	border-top: 1px solid #FFFFCC;
801
	border-right: 1px solid #85ca11;
755
	border-right: 1px solid #FF9900;
802
	border-bottom: 1px solid #85ca11;
756
	border-bottom: 1px solid #FF9900;
803
	border-left: 1px solid #85ca11;
757
	border-left: 1px solid #FFCC66;
758
	font-weight : bold;
804
	font-weight : bold;
759
	text-align : center;
805
	text-align : center;
760
	text-decoration : none;
806
	text-decoration : none;
807
    border-radius: 0px 0px 4px 4px;
808
    color : #000000;
761
809
762
}
810
}
763
811
Lines 766-776 fieldset.rows .inputnote { Link Here
766
}
814
}
767
815
768
.ui-tabs-nav .ui-tabs-selected a:hover {
816
.ui-tabs-nav .ui-tabs-selected a:hover {
769
	color : #0000CC;
817
	color : #000000;
770
}
818
}
771
819
772
.ui-tabs-nav li.ui-tabs-selected {
820
.ui-tabs-nav li.ui-tabs-selected {
773
	background-color : #FFFFCC;
821
	/* background-color : #FFFFCC; */
774
}
822
}
775
823
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 {
824
.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 803-814 fieldset.rows .inputnote { Link Here
803
	border : 1px solid #E8E8E8;
851
	border : 1px solid #E8E8E8;
804
	text-align : center;
852
	text-align : center;
805
	text-decoration : none;
853
	text-decoration : none;
854
    border-radius : 3px;
806
}
855
}
807
856
808
.toptabs .ui-tabs-nav li.ui-tabs-selected a, .toptabs .ui-tabs-nav li.ui-tabs-selected span.a {
857
.toptabs .ui-tabs-nav li.ui-tabs-selected a, .toptabs .ui-tabs-nav li.ui-tabs-selected span.a {
809
	background-color : #FFF;
858
	background-color : #FFF;
810
	border-bottom : 1px solid #FFF;
859
	border-bottom : 1px solid #FFF;
811
	margin-top : 0;
860
	margin-top : 0;
861
    border-radius : 3px;
812
}
862
}
813
863
814
.toptabs .tabs-container {
864
.toptabs .tabs-container {
Lines 1299-1305 a:hover .term { Link Here
1299
}
1349
}
1300
1350
1301
div#menu {
1351
div#menu {
1302
	border-right: 1px solid #000;
1352
    border-right:1px solid #b9d8d9;
1303
	margin-right: .5em;
1353
	margin-right: .5em;
1304
	padding-top: 1em;
1354
	padding-top: 1em;
1305
	padding-bottom: 2em;
1355
	padding-bottom: 2em;
Lines 1324-1330 div#menu li a { Link Here
1324
	border-top-left-radius: 5px;
1374
	border-top-left-radius: 5px;
1325
	-moz-border-bottom-left-radius: 5px;
1375
	-moz-border-bottom-left-radius: 5px;
1326
	border-bottom-left-radius: 5px;
1376
	border-bottom-left-radius: 5px;
1327
	border: 1px solid #000;
1377
    border:1px solid #b9d8d9;
1328
	font-size: 111%;
1378
	font-size: 111%;
1329
	margin: .5em 0;
1379
	margin: .5em 0;
1330
	padding: .4em .3em;
1380
	padding: .4em .3em;
Lines 1344-1350 div#menu li a:hover { Link Here
1344
1394
1345
div#menu li.active a:hover {
1395
div#menu li.active a:hover {
1346
	background-color: #fff;
1396
	background-color: #fff;
1347
	color :  #0000CC;
1397
	color :  #538200;
1348
}
1398
}
1349
1399
1350
#menu ul li {
1400
#menu ul li {
Lines 1356-1361 div#menu li.active a:hover { Link Here
1356
	background-image : none;
1406
	background-image : none;
1357
	border-right: 0;
1407
	border-right: 0;
1358
	font-weight: bold;
1408
	font-weight: bold;
1409
    color:#000000;
1359
}
1410
}
1360
1411
1361
ul.error {
1412
ul.error {
Lines 1672-1684 a.yuimenuitemlabel:hover { Link Here
1672
#toplevelnav {
1723
#toplevelnav {
1673
	float : left;
1724
	float : left;
1674
	margin-left : .5em;
1725
	margin-left : .5em;
1675
	width : 30em;
1676
}
1726
}
1677
1727
1678
ul#toplevelmenu {
1728
ul#toplevelmenu {
1679
	padding : 0;
1729
	padding : 0;
1680
}
1730
}
1681
		
1731
1682
ul#toplevelmenu li {
1732
ul#toplevelmenu li {
1683
	display: inline;
1733
	display: inline;
1684
	padding : 0 .6em;
1734
	padding : 0 .6em;
Lines 1871-1877 span.permissiondesc { Link Here
1871
	border: 0;
1921
	border: 0;
1872
	padding: 5;
1922
	padding: 5;
1873
	font-size: 11pt;
1923
	font-size: 11pt;
1874
	color: darkblue;
1924
    color: #000000;
1925
    font-style: italic;
1875
}
1926
}
1876
1927
1877
.labeledmarc-value {
1928
.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 / +3 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
    border-radius : 3px;
72
    #background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
72
}
73
}
73
74
74
/* Additional IE specific bug fixes... */
75
/* Additional IE specific bug fixes... */
Lines 77-80 Link Here
77
}
78
}
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
*: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;
80
    display: inline-block;
80
}
81
}
(-)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 / +138 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
                    </li>
40
                    [% END %]
41
                    
42
                    [% IF ( CAN_user_borrowers ) %]
43
                    <li>
44
                        <a class="icon_general icon_patrons" href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
45
                    </li>
46
                    [% END %]
47
                    
48
                    [% IF ( CAN_user_catalogue ) %]
49
                    <li>
50
                        <a class="icon_general icon_search" href="/cgi-bin/koha/catalogue/search.pl">Advanced Search</a>
51
                    </li>
52
                    [% END %]
53
                    
54
                    <li>
55
                        <a class="icon_general icon_lists" href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a>
56
                    </li>
57
                    
58
                    [% IF ( CAN_user_catalogue || CAN_user_editcatalogue ) %]
59
                    <li>
60
                        <a class="icon_general icon_cataloging" href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a>
61
                    </li>
62
                    [% END %]
63
                    
64
                    [% IF ( CAN_user_editauthorities ) %]
65
                    <li>
66
                        <a class="icon_general icon_authorities" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
67
                    </li>
68
                    [% END %]
69
                </ul>
70
            </div><!-- /area-list-left --> 
71
            
72
            <div id="area-list-right">
73
                <ul class="biglinks-list">
74
                    [% IF ( CAN_user_serials ) %]
75
                    <li>
76
                        <a class="icon_general icon_serials" href="/cgi-bin/koha/serials/serials-home.pl">Serials</a>
77
                        <span class="biglink"></span>
78
                    </li>
79
                    [% END %]
80
                    
81
                    [% IF ( CAN_user_acquisition ) %]
82
                    <li>
83
                        <a class="icon_general icon_acquisitions" href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
84
                        <span class="biglink"></span>
85
                    </li>
86
                    [% END %]
87
                    
88
                    [% IF ( CAN_user_reports ) %]
89
                    <li>
90
                        <a class="icon_general icon_reports" href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>
91
                    </li>
92
                    [% END %]
93
                    
94
                    [% IF ( CAN_user_parameters ) %]
95
                    <li>
96
                        <a class="icon_general icon_administration" href="/cgi-bin/koha/admin/admin-home.pl">Koha Administration</a>
97
                    </li>
98
                    [% END %]
99
                    
100
                    [% IF ( CAN_user_tools ) %] 
101
                    <li>
102
                        <a class="icon_general icon_tools" href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
103
                    </li>
104
                    [% END %]
105
                    
106
                    <li>
107
                        <a class="icon_general icon_koha" href="/cgi-bin/koha/about.pl">About Koha</a>
108
                    </li>
109
                </ul>
110
            </div><!-- /area-list-right -->
131
111
112
            [% IF ( CAN_user_tools_moderate_comments ) && ( pendingsuggestions || pendingcomments || pendingtags ) %]
113
                <div id="area-pending">
114
                    [% IF ( pendingsuggestions ) %]
115
                    <div class="pending-info">
116
                        <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions pending approval:
117
                        <span class="pending-number-link">[% pendingsuggestions %]</span></a>
118
                    </div>
119
                    [% END %]
120
                    
121
                    [% IF ( pendingcomments ) %]
122
                    <div class="pending-info">
123
                        <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments pending approval: 
124
                        <span class="pending-number-link">[% pendingcomments %]</span></a>
125
                    </div>
126
                    [% END %]
127
                    
128
                    [% IF ( pendingtags ) %]
129
                    <div class="pending-info">
130
                        <a href="/cgi-bin/koha/tags/review.pl">Tags pending approval:
131
                        <span class="pending-number-link">[% pendingtags %]</span></a>
132
                    </div>
133
                    [% END %]
134
                </div>
135
            [% END %]
132
136
133
</div>
137
            [% IF ( IntranetmainUserblock ) %]
138
            <div id="area-userblock">
139
                <div class="user-info">
140
                    [% IntranetmainUserblock %]
141
                </div>
142
            </div>
143
            [% END %]
144
        
145
            <div style="height: 30px">
146
                <!-- Without this white space the end of the page can be hidden by the language selector -->
147
                &nbsp;
148
            </div>
149
        </div><!-- /area-lists -->
134
150
151
<!-- the main div is closed in intranet-bottom.inc -->
135
[% INCLUDE 'intranet-bottom.inc' %]
152
[% INCLUDE 'intranet-bottom.inc' %]

Return to bug 7979