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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/intranet-print.css (-235 lines)
Lines 1-235 Link Here
1
body {
2
    font-family : Verdana, Geneva, Arial, sans-serif;
3
    font-size : .9em;
4
}
5
6
table {
7
    border-collapse : inherit;
8
    border : 1px solid #CCCCCC;
9
    margin : 1em 0;
10
}
11
12
caption {
13
    font-size : 140%;
14
    text-align : left;
15
    font-weight : bold;
16
}
17
18
td,th {
19
    /*border-left : 1px solid #CCCCCC;
20
    border-bottom : 1px solid #CCCCCC;*/
21
    border : 1px solid #CCCCCC;
22
    padding : 5px;
23
}
24
25
th {
26
    background-color : #CCCCCC;
27
    border-left : 1px solid #999999;
28
    border-bottom : 1px solid #999999;
29
}
30
31
th[scope=row] {
32
    background-color : #EEEEEE;
33
    text-align : right;
34
}
35
36
input {
37
    font-size:0.9em;
38
}
39
40
select {
41
    font-size:0.9em;
42
}
43
44
input[type=submit], input[type=button], input[type=reset] {
45
    background-color : #6699CC;
46
    color : #FFFFFF;
47
    font-size : 1em;
48
    font-weight : bold;
49
}
50
51
.searchresults table tr:hover{
52
    background-color: #CCFFFF;
53
}
54
55
tr.highlight td, tr.highlight th {
56
    background-color : #EEEEEE;
57
}
58
59
.here {
60
    color: black;
61
    text-decoration:none;
62
}
63
64
#problem {
65
    color: red;
66
    background-color:white;
67
    font-weight : bold;
68
}
69
70
#admin_stopwords_select UL {
71
   width: 600px;
72
}
73
74
#admin_stopwords_select UL LI {
75
   white-space: nowrap;
76
}
77
78
legend {
79
    font-size:120%;
80
    font-weight:bold;
81
}
82
83
.problem {
84
    color: white;
85
    background-color:red;
86
    font-weight : bold;
87
}
88
89
/* css styles for reserves color alerts */
90
.onloan {
91
    background-color: #FFED3D;
92
}
93
94
.reserved {
95
    background-color: #8EBAFF;
96
}
97
98
.transfered {
99
    background-color: #F9FF9A;
100
}
101
102
.inwait {
103
    background-color: #33CC99;
104
}
105
106
.other {
107
    background-color: #FF0000;
108
}
109
110
.available {
111
    background-color: white;
112
}
113
114
.unavailable {
115
    background-color: #FFED3D;
116
}
117
118
.hasexpirated {
119
    text-decoration: line-through;
120
}
121
122
/* style for search terms in catalogsearch */
123
.term {
124
    background-color:yellow;
125
}
126
127
/* end of css styles for reserves color alerts */
128
129
/* MAIN MENU STYLES */
130
#mainmenu {
131
display:none;
132
}
133
134
/* submenus styles */
135
#submenu {
136
    display:none;
137
}
138
/*Action button*/
139
#action {
140
    display:none;
141
}
142
143
/* Main body style */
144
#main {
145
    margin-left:0%;
146
}
147
148
/* facets bloc */
149
#facets {
150
    display:none;
151
}
152
153
/* the USER information block */
154
#librarian_information {
155
    display:none;
156
}
157
158
/* css style for reregistration alert */
159
160
.reregistrinfo {
161
    color: #6699cc;
162
    font-weight : bold;
163
    background-color : #eeeeee;
164
}
165
/* MARC editor */
166
167
/* styles for the 11 buttons that the user can click on */
168
/* the design of the active tab button (only 1 at a given time)*/
169
.tab_active {
170
    color: #6699CC;
171
    background-color : #CCCCCC;
172
    font-size : 1em;
173
    border: 2px inset;
174
    font-weight : bold;
175
    text-decoration:none;
176
    display: inline;
177
    text-decoration:none;
178
    margin-left:10px;
179
}
180
181
#onlinehelp {
182
    display:none;
183
}
184
185
/* the design of the INactives tab buttons (all other tabs) */
186
.tab_inactive {
187
    background-color : #6699CC;
188
    color : #FFFFFF;
189
    font-size : 1em;
190
    font-weight : bold;
191
    display:inline;
192
    border: 2px outset;
193
    text-decoration:none;
194
    margin-left:10px;
195
}
196
197
/* the button of INactive tabs : we need this one to have white color on links, otherwise, default a look will be choosen */
198
#tabs a {
199
    color:white;
200
    text-decoration:none;
201
    padding-right:10px;
202
    padding-left:10px;
203
}
204
205
/* specify that we to do when the mouse is on 1 button */
206
#tabs a:hover {
207
    border: 2px inset;
208
}
209
210
#tabs {
211
    margin-top:45px;
212
    margin-bottom:5px;
213
}
214
215
/* styles for the 11 content blocks */
216
/* the property for hidden tabs */
217
.content_hidden {
218
    height:0px; /* you propably don't need to change this one */
219
    visibility:hidden; /* you propably don't need to change this one */
220
    display:none;
221
}
222
223
/* the property for the displayed tab */
224
.content_visible {
225
    height:0px; /* you propably don't need to change this one */
226
    visibility:visible; /* you propably don't need to change this one */
227
    display:block;
228
}
229
230
.lineSelected {
231
    background-color:yellow;
232
}
233
.DoNotPrint {
234
    display:none;
235
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/intranet.css (-491 lines)
Lines 1-491 Link Here
1
body {
2
    font-family : Verdana, Geneva, Arial, sans-serif;
3
    font-size : .9em;
4
    background-color:white;
5
}
6
7
h2 {
8
    display:block;
9
    clear:left;
10
/*     float:none; */
11
}
12
table {
13
    border-collapse : inherit;
14
    border : 1px solid #CCCCCC;
15
    margin : 1em 0;
16
    border-collapse:collapse;
17
}
18
19
caption {
20
    font-size : 140%;
21
    text-align : left;
22
    font-weight : bold;
23
}
24
25
td,th {
26
    /*border-left : 1px solid #CCCCCC;
27
    border-bottom : 1px solid #CCCCCC;*/
28
    border : 1px solid #CCCCCC;
29
    padding : 5px;
30
}
31
32
th {
33
    background-color : #CCCCCC;
34
    border-left : 1px solid #999999;
35
    border-bottom : 1px solid #999999;
36
}
37
38
th[scope=row] {
39
    background-color : #EEEEEE;
40
    text-align : right;
41
}
42
43
p {
44
    margin:0px 0px 0px 0px;
45
}
46
input {
47
    font-size:0.9em;
48
}
49
50
select {
51
    font-size:0.9em;
52
}
53
54
input[type=submit], input[type=button], input[type=reset] {
55
    background: url( /intranet-tmpl/prog/img/fade-butt.png );
56
    border: 3px double #999;
57
    border-left-color: #ccc;
58
    border-top-color: #ccc;
59
    color: #333;
60
    padding: 0.25em;
61
}
62
63
label {
64
    font-style:italic;
65
    vertical-align:top;
66
    display:block;
67
    float:left;
68
/*     text-align:right; */
69
    width:10em;
70
    margin-right:0.2em;
71
}
72
73
p {
74
clear:left;
75
}
76
.searchresults table tr:hover{
77
    background-color: #CCFFFF;
78
}
79
80
tr.highlight td, tr.highlight th {
81
    background-color : #EEEEEE;
82
}
83
84
.here {
85
    color: black;
86
    text-decoration:none;
87
}
88
89
#problem {
90
    color: red;
91
    background-color:white;
92
    font-weight : bold;
93
    margin:10px;
94
}
95
96
#admin_stopwords_select UL {
97
   width: 600px;
98
}
99
100
#admin_stopwords_select UL LI {
101
   white-space: nowrap;
102
}
103
104
legend {
105
    font-size:120%;
106
    font-weight:bold;
107
}
108
109
.problem {
110
    color: white;
111
    background-color:red;
112
    font-weight : bold;
113
    margin:10px;
114
}
115
116
/* css styles for reserves color alerts */
117
.onloan {
118
    background-color: #FFED3D;
119
}
120
121
.reserved {
122
    background-color: #8EBAFF;
123
}
124
125
.transfered {
126
    background-color: #F9FF9A;
127
}
128
129
.inwait {
130
    background-color: #33CC99;
131
}
132
133
.other {
134
    background-color: #FF0000;
135
}
136
137
.available {
138
    background-color: white;
139
}
140
141
.unavailable {
142
    background-color: #FFED3D;
143
}
144
145
.hasexpirated {
146
    text-decoration: line-through;
147
}
148
149
/* style for search terms in catalogsearch */
150
.term {
151
    background-color:yellow;
152
}
153
154
/* end of css styles for reserves color alerts */
155
156
/* the Koha logo (top left) */
157
#kohalogo {
158
    position:absolute;
159
    left:20px;
160
    top:20px;
161
}
162
163
/* MAIN MENU STYLES */
164
#mainmenu {
165
    display:block;
166
    position:fixed;
167
/*     float:left; */
168
    font-weight : normal;
169
    margin-right: 5px;
170
    padding-right: 5px;
171
    border-right:1px solid black;
172
    font-size:0.9em;
173
}
174
175
#mainmenu a {
176
    display:block;
177
    margin-bottom:0px;
178
    padding-left :5px;
179
    text-decoration:none;
180
    font-weight:bold;
181
    color:black;
182
}
183
184
185
#mainmenu a:hover {
186
    display:block;
187
    margin-bottom:0px;
188
    padding-left :5px;
189
    text-decoration:none;
190
    font-weight:bold;
191
    background-color:#6699CC;
192
    color:white;
193
}
194
195
#mainmenu ul a {
196
    display:block;
197
    margin-bottom:5px;
198
    padding-left :5px;
199
    text-decoration:none;
200
    font-weight:normal;
201
    color:black;
202
}
203
204
#mainmenu ul a:hover {
205
    display:block;
206
    margin-bottom:5px;
207
    padding-left :5px;
208
    text-decoration:none;
209
    font-weight:normal;
210
    background-color:#6699CC;
211
    color:white;
212
}
213
214
#mainmenu ul {
215
    list-style-type: none;
216
    padding-left:20px;
217
    margin-bottom:0px;
218
    margin-top:0px;
219
}
220
221
#mainmenu li {
222
    list-style-type: none;
223
    padding-left:0px;
224
    margin-left:0px;
225
    margin-bottom:0px;
226
    margin-top:0px;
227
}
228
229
#mainmenu label {
230
    width:4em;
231
}
232
233
/* submenus styles */
234
#submenu {
235
    margin-left:25%;
236
}
237
238
#submenu a {
239
    margin:5px;
240
    text-decoration:none;
241
    color:#6699CC;
242
}
243
244
#submenu a:hover {
245
    margin:5px;
246
    background-color:#6699CC;
247
    color:white;
248
}
249
250
/*Action button*/
251
#action {
252
    /*float:right;*/
253
}
254
255
#action a {
256
    background-color: #6699CC;
257
    color:white;
258
    font-size : 0.8em;
259
    border: 2px outset;
260
    font-weight : bold;
261
    margin:5px 0px 0px 0px;
262
    padding:3px;
263
    text-decoration:none;
264
    display:inline;
265
}
266
267
#action a:hover {
268
    border: 2px inset;
269
    color: #6699CC;
270
    background-color:white;
271
}
272
273
/*edit action*/
274
#action .edit {
275
	display:inline;
276
	margin-right:5px;
277
}
278
279
#action .edit a {
280
    background-color : #6699CC;
281
    color : white;
282
    margin-top: 1px;
283
}
284
285
#action .edit a:hover {
286
    border: 2px inset;
287
    color: #6699CC;
288
    background-color:white;
289
}
290
291
#action .view {
292
	display:inline;
293
	margin-right:5px;
294
}
295
296
#action .view a {
297
    background-color : #CECEFF;
298
    color : white;
299
    margin-top: 1px;
300
}
301
302
#action .view a:hover {
303
    border: 2px inset;
304
    color: #CECEFF;
305
    background-color:white;
306
}
307
308
#action .others {
309
	display:inline;
310
	margin-right:5px;
311
}
312
313
#action .others a {
314
    background-color : #6699AA;
315
    color : white;
316
    margin-top: 1px;
317
}
318
319
#action .others a:hover {
320
    border: 2px inset;
321
    color: #6699AA;
322
    background-color:white;
323
}
324
325
/* Main body style */
326
#main {
327
    margin-left:25%;
328
}
329
330
/* facets bloc */
331
#facets {
332
    position:absolute;
333
    right:1em;
334
}
335
336
#facets dl {
337
    background-color:white;
338
    margin:0px;
339
}
340
341
#facets dt {
342
    text-align:right;
343
    font-weight:bold;
344
}
345
346
#facets dd {
347
    border:1px solid #CCCCCC;
348
}
349
/* bulkedit bloc */
350
/*#bulkedit {
351
    margin-top: 15px;
352
    margin-left: 15px;
353
    border:1px solid #CCCCCC;
354
}
355
356
#bulkedit h2 {
357
    background-color:#CCCCCC;
358
    margin:0px;
359
    padding:0px;
360
    font-size:1.1em;
361
}*/
362
363
/* the USER information block */
364
#librarian_information {
365
/*     position:absolute; */
366
    float:right;
367
    font-size:10pt;
368
}
369
370
/* css style for reregistration alert */
371
372
.reregistrinfo {
373
    color: #6699cc;
374
    font-weight : bold;
375
    background-color : #eeeeee;
376
}
377
/* MARC editor */
378
379
/* styles for the 11 buttons that the user can click on */
380
/* the design of the active tab button (only 1 at a given time)*/
381
.tab_active {
382
    color: #6699CC;
383
    background-color : #CCCCCC;
384
    font-size : 1em;
385
    border: 2px inset;
386
    font-weight : bold;
387
    text-decoration:none;
388
    display: inline;
389
    text-decoration:none;
390
    margin-left:10px;
391
}
392
393
#onlinehelp {
394
    float:right;
395
}
396
397
/* the design of the INactives tab buttons (all other tabs) */
398
.tab_inactive {
399
    background-color : #6699CC;
400
    color : #FFFFFF;
401
    font-size : 1em;
402
    font-weight : bold;
403
    display:inline;
404
    border: 2px outset;
405
    text-decoration:none;
406
    margin-left:10px;
407
}
408
409
/* the button of INactive tabs : we need this one to have white color on links, otherwise, default a look will be choosen */
410
#tabs a {
411
    color:white;
412
    text-decoration:none;
413
    padding-right:10px;
414
    padding-left:10px;
415
}
416
417
/* specify that we to do when the mouse is on 1 button */
418
#tabs a:hover {
419
    border: 2px inset;
420
}
421
422
#tabs {
423
    margin-top:45px;
424
    margin-bottom:5px;
425
}
426
427
/* styles for the 11 content blocks */
428
/* the property for hidden tabs */
429
.content_hidden {
430
    height:0px; /* you propably don't need to change this one */
431
    visibility:hidden; /* you propably don't need to change this one */
432
    display:none;
433
}
434
435
/* the property for the displayed tab */
436
.content_visible {
437
    height:0px; /* you propably don't need to change this one */
438
    visibility:visible; /* you propably don't need to change this one */
439
    display:block;
440
}
441
442
/* the style of tag description */
443
p.tag {
444
    font-weight:bold;
445
}
446
/* the style of subfield paragraph */
447
p.subfield {
448
    
449
}
450
451
452
453
.lineSelected {
454
    background-color:yellow;
455
}
456
457
458
/* display more informations with css layer */
459
a.info {
460
    position: relative;
461
    text-decoration: none;
462
    color: black;
463
    border-bottom: 1px gray dotted;
464
}
465
466
a.info span {
467
    display: none;
468
    width:300px;
469
}
470
471
a.info:hover {
472
    background: none; /* correcting IE bug*/
473
    z-index: 500;
474
}
475
a.info:hover span {
476
    display: inline;
477
    position: absolute;
478
    top: 2em;
479
    right: 1em;
480
    background: orange;
481
    text-align: center;
482
    color: white;
483
    padding: 2px;
484
}
485
486
fieldset {
487
        border : 1px solid #374b73;
488
        display: inline;
489
        float:left;
490
        vertical-align:top;
491
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/intranet2.css (-665 lines)
Lines 1-665 Link Here
1
body {
2
    font-family : Verdana, Geneva, Arial, sans-serif;
3
    font-size : .9em;
4
    color:#494949;
5
    background: url( /intranet-tmpl/prog/img/css_header.png );
6
    background-repeat:repeat-x;
7
    background-color:#EDF5FA;
8
}
9
10
h1 {
11
    margin:0px;
12
}
13
h2 {
14
    display:block;
15
    clear:left;
16
    margin:0px 0px 10px 10px;
17
}
18
19
h3 {
20
    display:block;
21
    clear:left;
22
    margin:0px 0px 0px 10px;
23
}
24
25
table {
26
    border-collapse : inherit;
27
    border : 1px solid #CCCCCC;
28
    margin : 1em 0 1em 20px;
29
    margin-right : 5%;
30
    border-collapse:collapse;
31
}
32
33
caption {
34
    font-size : 140%;
35
    text-align : left;
36
    font-weight : bold;
37
}
38
39
td,th {
40
    /*border-left : 1px solid #CCCCCC;
41
    border-bottom : 1px solid #CCCCCC;*/
42
    border : 1px solid #CCCCCC;
43
    padding : 5px;
44
}
45
46
th {
47
    background-color : #CCCCCC;
48
    border-left : 1px solid #999999;
49
    border-bottom : 1px solid #999999;
50
}
51
52
th[scope=row] {
53
    background-color : #EEEEEE;
54
    text-align : right;
55
}
56
57
p {
58
    margin:0px 0px 0px 20px;
59
}
60
input {
61
    font-size:0.9em;
62
}
63
64
select {
65
    font-size:0.9em;
66
}
67
68
fieldset {
69
    border : 1px solid #bbb;
70
    display: inline;
71
    vertical-align: top;
72
}
73
74
input[type=submit], input[type=button], input[type=reset] {
75
    border:0px;
76
    color: #0072b9;
77
    font-weight:bold;
78
    background: url( /intranet-tmpl/prog/img/bg-tab.png );
79
    font-size : 0.8em;
80
    padding:3px;
81
    text-decoration:none;
82
    display:inline;
83
    cursor:pointer;
84
    margin-left:20px;
85
}
86
87
label {
88
    font-style:italic;
89
    vertical-align:top;
90
    display:block;
91
    float:left;
92
    width:10em;
93
    margin-right:0.2em;
94
}
95
96
p {
97
clear:left;
98
}
99
100
a {
101
    text-decoration:none;
102
    color:#027ac6;
103
}
104
a:hover {
105
    text-decoration:underline;
106
    color:#0072b9;
107
}
108
.searchresults table tr:hover{
109
    background-color: #CCFFFF;
110
}
111
112
tr.highlight td, tr.highlight th {
113
    background-color : #EEEEEE;
114
}
115
116
.here {
117
    color: black;
118
    text-decoration:none;
119
}
120
121
.click{
122
    cursor:pointer;
123
    color: #027ac6;/*blue*/
124
}
125
.click:hover{   
126
    text-decoration:underline;
127
}
128
129
#problem {
130
    color: red;
131
    background-color:white;
132
    font-weight : bold;
133
    margin:10px;
134
}
135
136
#admin_stopwords_select UL {
137
   width: 600px;
138
}
139
140
#admin_stopwords_select UL LI {
141
   white-space: nowrap;
142
}
143
144
legend {
145
    font-size:120%;
146
    font-weight:bold;
147
}
148
149
.problem {
150
    color: white;
151
    background-color:red;
152
    font-weight : bold;
153
    margin:10px;
154
}
155
156
.toogle{
157
	background-color:#ffffcc;
158
}
159
160
.pages{
161
	margin:.7em;
162
}
163
/* css styles for reserves color alerts */
164
.onloan {
165
    background-color: #FFED3D;
166
}
167
168
.reserved {
169
    background-color: #8EBAFF;
170
}
171
172
.transfered {
173
    background-color: #F9FF9A;
174
}
175
176
.inwait {
177
    background-color: #33CC99;
178
}
179
180
.other {
181
    background-color: #FF0000;
182
}
183
184
.available {
185
    font-size:0.75em;
186
}
187
188
.unavailable {
189
    background-color: #FFED3D;
190
    font-size:0.75em;
191
}
192
193
.hasexpirated {
194
    text-decoration: line-through;
195
}
196
197
/* style for search terms in catalogsearch */
198
.term {
199
    background-color:yellow;
200
}
201
202
/* end of css styles for reserves color alerts */
203
204
/* the Koha logo (top left) */
205
#kohalogo {
206
    position:fixed;
207
    left:20px;
208
    top:10px;
209
}
210
211
#kohalogo h3 {
212
    padding-top:5px;
213
    margin-left:0px;
214
}
215
#kohalogo h3 a {
216
    color:white;
217
}
218
/* MAIN MENU STYLES */
219
#mainmenu {
220
    display:block;
221
    position:fixed;
222
    font-weight : normal;
223
    margin-top:30px;
224
    margin-right: 5px;
225
    padding-right: 5px;
226
    font-size:0.9em;
227
}
228
229
#mainmenu a {
230
    display:block;
231
    margin-bottom:0px;
232
    padding-left :5px;
233
    text-decoration:none;
234
    font-weight:bold;
235
    color:#027ac6;
236
}
237
238
239
#mainmenu a:hover {
240
    display:block;
241
    margin-bottom:0px;
242
    padding-left :5px;
243
    text-decoration:none;
244
    font-weight:bold;
245
    background-color:#027ac6;
246
    color:white;
247
}
248
249
#mainmenu ul a {
250
    display:block;
251
    margin-bottom:5px;
252
    padding-left :5px;
253
    text-decoration:none;
254
    font-weight:normal;
255
    color:#027ac6;
256
}
257
258
#mainmenu ul a:hover {
259
    display:block;
260
    margin-bottom:5px;
261
    padding-left :5px;
262
    text-decoration:none;
263
    font-weight:normal;
264
    background-color:#027ac6;
265
    color:white;
266
}
267
268
#mainmenu ul {
269
    list-style-type: none;
270
    padding-left:20px;
271
    margin-bottom:0px;
272
    margin-top:0px;
273
    color:#027ac6;
274
}
275
276
#mainmenu li {
277
    list-style-type: none;
278
    padding-left:0px;
279
    margin-left:0px;
280
    margin-bottom:0px;
281
    margin-top:0px;
282
    color:#027ac6;
283
}
284
285
#mainmenu label {
286
    width:4em;
287
}
288
289
#mainmenu h3 {
290
    color:white;
291
    font-size:1.2em;
292
    margin:10px 0px 10px 0px ;
293
}
294
295
#mainmenu input {
296
    border:0px;
297
    border-bottom:1px solid #027ac6;
298
}
299
#mainmenu input[type=submit], input[type=button], input[type=reset] {
300
    margin-left:0px;
301
    border-bottom:0px;
302
}
303
304
305
/* submenus styles */
306
#submenu {
307
    position:absolute;
308
    top:10px;
309
    left:220px;
310
}
311
312
#submenu a {
313
    margin:5px;
314
    text-decoration:none;
315
    color:white;
316
}
317
318
#submenu a:hover {
319
    margin:5px;
320
    background-color:white;
321
    color:#027ac6;
322
}
323
324
/*Action button*/
325
#action {
326
    float:right;
327
}
328
329
#action a {
330
    color: #0072b9;
331
    font-weight:bold;
332
    background: url( /intranet-tmpl/prog/img/bg-tab.png );
333
    font-size : 0.8em;
334
    padding:3px;
335
    margin-bottom:2px;
336
    text-decoration:none;
337
    display:block;
338
}
339
340
/*edit action*/
341
#action .edit {
342
    display:inline;
343
    margin-bottom:10px;
344
}
345
346
#action .edit a {
347
    background:none;
348
    background-color : #0072b9;
349
    color : white;
350
}
351
352
#action .edit a:hover {
353
    cursor:pointer;
354
}
355
356
#action .view {
357
	display:inline;
358
	margin-bottom:5px;
359
}
360
361
#action .view a {
362
    background:none;
363
    background-color : #5ab5ee;
364
    color : white;
365
    margin-top: 1px;
366
}
367
368
#action .view a:hover {
369
    cursor:pointer;
370
}
371
372
#action .others {
373
    display:inline;
374
    margin-bottom:5px;
375
}
376
377
#action .others a {
378
    background:none;
379
    background-color : #2385C2;
380
    color : white;
381
    margin-top: 1px;
382
}
383
384
#action .others a:hover {
385
    cursor:pointer;
386
}
387
388
/* Main body style */
389
#main {
390
    margin-left:220px;
391
    margin-top:75px;
392
    padding:5px;
393
    padding-bottom:100px;
394
    background-color:white;
395
    border:1px solid #bbb;
396
}
397
398
/* facets bloc */
399
#facets {
400
    position:absolute;
401
    right:1em;
402
}
403
404
#facets dl {
405
    background-color:white;
406
    margin:0px;
407
}
408
409
#facets dt {
410
    text-align:right;
411
    font-weight:bold;
412
}
413
414
#facets dd {
415
    border:1px solid #CCCCCC;
416
}
417
418
/* the USER information block */
419
#librarian_information {
420
/*     position:absolute; */
421
    float:right;
422
    font-size:10pt;
423
}
424
425
/* css style for reregistration alert */
426
427
.reregistrinfo {
428
    color: #6699cc;
429
    font-weight : bold;
430
    background-color : #eeeeee;
431
}
432
/* MARC editor */
433
434
/* styles for the 11 buttons that the user can click on */
435
/* the design of the active tab button (only 1 at a given time)*/
436
.tab_active {
437
    color: #6699CC;
438
    background-color : #CCCCCC;
439
    font-size : 1em;
440
    border: 2px inset;
441
    font-weight : bold;
442
    text-decoration:none;
443
    display: inline;
444
    text-decoration:none;
445
    margin-left:10px;
446
}
447
448
449
/* the online help button */
450
#onlinehelp {
451
    position:absolute;
452
    top:0px;
453
    right:0px;
454
}
455
#onlinehelp a {
456
        color:white;
457
}
458
459
/* the login box */
460
#login {
461
    font-size:0.7em;
462
}
463
464
/* the design of the INactives tab buttons (all other tabs) */
465
.tab_inactive {
466
    background-color : #6699CC;
467
    color : #FFFFFF;
468
    font-size : 1em;
469
    font-weight : bold;
470
    display:inline;
471
    border: 2px outset;
472
    text-decoration:none;
473
    margin-left:10px;
474
}
475
476
/* the button of INactive tabs : we need this one to have white color on links, otherwise, default a look will be choosen */
477
#tabs a {
478
    color:white;
479
    text-decoration:none;
480
    padding-right:1.2em;
481
    padding-left:1.2em;
482
    -moz-border-radius:4px;
483
}
484
485
/* specify that we to do when the mouse is on 1 button */
486
#tabs a:hover {
487
    border: 2px inset;
488
}
489
490
#tabs {
491
    margin-top:35px;
492
    margin-bottom:10px;
493
}
494
495
/* styles for the 11 content blocks */
496
/* the property for hidden tabs */
497
.content_hidden {
498
    visibility:hidden; /* you propably don't need to change this one */
499
    display:none;
500
}
501
502
/* the property for the displayed tab */
503
.content_visible {
504
    visibility:visible; /* you propably don't need to change this one */
505
    display:block;
506
}
507
508
.lineSelected {
509
    background-color:yellow;
510
}
511
512
/* display more informations with css layer */
513
a.info {
514
    position: relative;
515
    text-decoration: none;
516
    color: black;
517
    border-bottom: 1px gray dotted;
518
}
519
520
a.info span {
521
    display: none;
522
    width:300px;
523
}
524
525
a.info:hover {
526
    background: none; /* correcting IE bug*/
527
    z-index: 500;
528
}
529
a.info:hover span {
530
    display: inline;
531
    position: absolute;
532
    top: 2em;
533
    right: 1em;
534
    background: orange;
535
    text-align: center;
536
    color: white;
537
    padding: 2px;
538
}
539
540
/* the itemtype list (in adv search) */
541
#itemtypelist {
542
    width:700px;
543
}
544
#itemtypelist td {
545
    border : 0px;
546
    margin : 0px;
547
    padding: 5px;
548
    border-collapse:collapse;
549
    border: 1px solid white;
550
    background-color:#CCCCCC;
551
    vertical-align:top;
552
}
553
554
#itemtypelist p {
555
    margin:0px;
556
}
557
558
/* MARC Editor stylesheet */
559
560
/* the style of tag description */
561
div.tag_title {
562
    font-weight:bold;
563
    cursor:pointer;
564
}
565
566
div.tag_title span {
567
    display:inline;
568
    font-size:1em;
569
    color : #027ac6;
570
}
571
572
div.tag_title a:hover{
573
    text-decoration:none;
574
}
575
576
577
.subfield_line{
578
    margin-left:1.1em;
579
}
580
581
.CursorHelp{
582
    cursor:help;
583
}
584
585
.buttonDot{
586
    cursor:help;
587
}
588
589
.buttonUp {
590
    cursor: crosshair;
591
    color: grey;
592
    font-size: .8em;
593
}
594
595
.labelsubfield{
596
    min-width:210px;
597
    display:inline;
598
}
599
600
.subfield_mandatory{
601
    color:red;
602
}
603
604
.subfield_not_filled {
605
    width:506px;
606
    color:darkblue;
607
    background-color:#ffe5ed;
608
    border:1px solid #ffe5ed;
609
    border-bottom:1px solid red;
610
    padding:0.15em;
611
}
612
613
.line_not_filled{
614
    margin-left:1.1em;
615
    background-color:#ffe5ed;
616
    border:1px solid red;
617
}
618
619
.indicator{
620
    width:20px;
621
    color:darkblue;
622
    background-color: #ffffff;
623
    border:1px dotted #a4cde6;
624
    padding:0.15em;
625
}
626
627
.indicator:focus {
628
    background-color:#fdfde3;
629
    border-bottom:1px solid darkblue;
630
    width:20px;
631
    color:darkblue;
632
}
633
634
.input_marceditor {
635
    width:506px;
636
    color:darkblue;
637
    background-color:#ffffff;
638
    border:1px solid #ffffff;
639
    border-bottom:1px solid lightgray;
640
    padding:0.15em;
641
}
642
643
.input_marceditor:focus{
644
    background-color:#fdfde3;
645
    border-bottom:1px solid darkblue;
646
    width:506px;
647
    color:darkblue;
648
}
649
650
.tag{
651
    padding-bottom:1.1em;
652
/*     border-bottom:1px dotted #a4cde6; */
653
}
654
655
.buttonPlus {
656
    cursor: crosshair;
657
    color: grey; 
658
    font-size: 80%;
659
}
660
661
/*.flat{
662
    border:0px;
663
}*/
664
665
/* End of Marc Editor stylesheet */
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/intranet2popup.css (-551 lines)
Lines 1-551 Link Here
1
body {
2
    font-family : Verdana, Geneva, Arial, sans-serif;
3
    font-size : .9em;
4
    color:#494949;
5
    background-color:#EDF5FA;
6
}
7
8
h1 {
9
    margin:0px;
10
}
11
h2 {
12
    display:block;
13
    clear:left;
14
    margin:0px 0px 10px 10px;
15
}
16
17
h3 {
18
    display:block;
19
    clear:left;
20
    margin:0px 0px 0px 10px;
21
}
22
23
table {
24
    border-collapse : inherit;
25
    border : 1px solid #CCCCCC;
26
    margin : 1em 0 1em 20px;
27
    margin-right : 5%;
28
    border-collapse:collapse;
29
}
30
31
caption {
32
    font-size : 140%;
33
    text-align : left;
34
    font-weight : bold;
35
}
36
37
td,th {
38
    /*border-left : 1px solid #CCCCCC;
39
    border-bottom : 1px solid #CCCCCC;*/
40
    border : 1px solid #CCCCCC;
41
    padding : 5px;
42
}
43
44
th {
45
    background-color : #CCCCCC;
46
    border-left : 1px solid #999999;
47
    border-bottom : 1px solid #999999;
48
}
49
50
th[scope=row] {
51
    background-color : #EEEEEE;
52
    text-align : right;
53
}
54
55
p {
56
    margin:0px 0px 0px 20px;
57
}
58
input {
59
    font-size:0.9em;
60
}
61
62
select {
63
    font-size:0.9em;
64
}
65
66
fieldset {
67
        border : 1px solid #bbb;
68
        display: inline;
69
        vertical-align: top;
70
}
71
72
input[type=submit], input[type=button], input[type=reset] {
73
    border:0px;
74
    color: #0072b9;
75
    font-weight:bold;
76
    background: url( /intranet-tmpl/prog/img/bg-tab.png );
77
    font-size : 0.8em;
78
    padding:3px;
79
    text-decoration:none;
80
    display:inline;
81
    cursor:pointer;
82
    margin-left:20px;
83
}
84
85
label {
86
    font-style:italic;
87
    vertical-align:top;
88
    display:block;
89
    float:left;
90
/*     text-align:right; */
91
    width:10em;
92
    margin-right:0.2em;
93
}
94
95
p {
96
clear:left;
97
}
98
99
a {
100
    text-decoration:none;
101
    color:#027ac6;
102
}
103
a:hover {
104
    text-decoration:underline;
105
    color:#0072b9;
106
}
107
.searchresults table tr:hover{
108
    background-color: #CCFFFF;
109
}
110
111
tr.highlight td, tr.highlight th {
112
    background-color : #EEEEEE;
113
}
114
115
.here {
116
    color: black;
117
    text-decoration:none;
118
}
119
120
#problem {
121
    color: red;
122
    background-color:white;
123
    font-weight : bold;
124
    margin:10px;
125
}
126
127
#admin_stopwords_select UL {
128
   width: 600px;
129
}
130
131
#admin_stopwords_select UL LI {
132
   white-space: nowrap;
133
}
134
135
legend {
136
    font-size:120%;
137
    font-weight:bold;
138
}
139
140
.problem {
141
    color: white;
142
    background-color:red;
143
    font-weight : bold;
144
    margin:10px;
145
}
146
147
/* css styles for reserves color alerts */
148
.onloan {
149
    background-color: #FFED3D;
150
}
151
152
.reserved {
153
    background-color: #8EBAFF;
154
}
155
156
.transfered {
157
    background-color: #F9FF9A;
158
}
159
160
.inwait {
161
    background-color: #33CC99;
162
}
163
164
.other {
165
    background-color: #FF0000;
166
}
167
168
.available {
169
    font-size:0.75em;
170
}
171
172
.unavailable {
173
    background-color: #FFED3D;
174
    font-size:0.75em;
175
}
176
177
.hasexpirated {
178
    text-decoration: line-through;
179
}
180
181
/* style for search terms in catalogsearch */
182
.term {
183
    background-color:yellow;
184
}
185
186
/* end of css styles for reserves color alerts */
187
188
/* the Koha logo (top left) */
189
#kohalogo {
190
    position:fixed;
191
    left:20px;
192
    top:10px;
193
}
194
195
#kohalogo h3 {
196
    padding-top:5px;
197
    margin-left:0px;
198
}
199
#kohalogo h3 a {
200
    color:white;
201
}
202
/* MAIN MENU STYLES */
203
#mainmenu {
204
    display:block;
205
    position:fixed;
206
    font-weight : normal;
207
    margin-top:30px;
208
    margin-right: 5px;
209
    padding-right: 5px;
210
    font-size:0.9em;
211
}
212
213
#mainmenu a {
214
    display:block;
215
    margin-bottom:0px;
216
    padding-left :5px;
217
    text-decoration:none;
218
    font-weight:bold;
219
    color:#027ac6;
220
}
221
222
223
#mainmenu a:hover {
224
    display:block;
225
    margin-bottom:0px;
226
    padding-left :5px;
227
    text-decoration:none;
228
    font-weight:bold;
229
    background-color:#027ac6;
230
    color:white;
231
}
232
233
#mainmenu ul a {
234
    display:block;
235
    margin-bottom:5px;
236
    padding-left :5px;
237
    text-decoration:none;
238
    font-weight:normal;
239
    color:#027ac6;
240
}
241
242
#mainmenu ul a:hover {
243
    display:block;
244
    margin-bottom:5px;
245
    padding-left :5px;
246
    text-decoration:none;
247
    font-weight:normal;
248
    background-color:#027ac6;
249
    color:white;
250
}
251
252
#mainmenu ul {
253
    list-style-type: none;
254
    padding-left:20px;
255
    margin-bottom:0px;
256
    margin-top:0px;
257
    color:#027ac6;
258
}
259
260
#mainmenu li {
261
    list-style-type: none;
262
    padding-left:0px;
263
    margin-left:0px;
264
    margin-bottom:0px;
265
    margin-top:0px;
266
    color:#027ac6;
267
}
268
269
#mainmenu label {
270
    width:4em;
271
}
272
273
#mainmenu h3 {
274
    color:white;
275
    font-size:1.2em;
276
    margin:10px 0px 10px 0px ;
277
}
278
279
#mainmenu input {
280
    border:0px;
281
    border-bottom:1px solid #027ac6;
282
}
283
#mainmenu input[type=submit], input[type=button], input[type=reset] {
284
    margin-left:0px;
285
    border-bottom:0px;
286
}
287
288
289
/* submenus styles */
290
#submenu {
291
    position:absolute;
292
    top:10px;
293
    left:220px;
294
}
295
296
#submenu a {
297
    margin:5px;
298
    text-decoration:none;
299
    color:white;
300
}
301
302
#submenu a:hover {
303
    margin:5px;
304
    background-color:white;
305
    color:#027ac6;
306
}
307
308
/*Action button*/
309
#action {
310
    float:right;
311
}
312
313
#action a {
314
    color: #0072b9;
315
    font-weight:bold;
316
    background: url( /intranet-tmpl/prog/img/bg-tab.png );
317
    font-size : 0.8em;
318
    padding:3px;
319
    margin-bottom:2px;
320
    text-decoration:none;
321
    display:block;
322
}
323
324
/*edit action*/
325
#action .edit {
326
    display:inline;
327
    margin-bottom:10px;
328
}
329
330
#action .edit a {
331
    background:none;
332
    background-color : #0072b9;
333
    color : white;
334
}
335
336
#action .edit a:hover {
337
    cursor:pointer;
338
}
339
340
#action .view {
341
	display:inline;
342
	margin-bottom:5px;
343
}
344
345
#action .view a {
346
    background:none;
347
    background-color : #5ab5ee;
348
    color : white;
349
    margin-top: 1px;
350
}
351
352
#action .view a:hover {
353
    cursor:pointer;
354
}
355
356
#action .others {
357
    display:inline;
358
    margin-bottom:5px;
359
}
360
361
#action .others a {
362
    background:none;
363
    background-color : #2385C2;
364
    color : white;
365
    margin-top: 1px;
366
}
367
368
#action .others a:hover {
369
    cursor:pointer;
370
}
371
372
/* Main body style */
373
#main {
374
    margin-left:220px;
375
    margin-top:75px;
376
    padding:5px;
377
    padding-bottom:100px;
378
    background-color:white;
379
    border:1px solid #bbb;
380
}
381
382
/* facets bloc */
383
#facets {
384
    position:absolute;
385
    right:1em;
386
}
387
388
#facets dl {
389
    background-color:white;
390
    margin:0px;
391
}
392
393
#facets dt {
394
    text-align:right;
395
    font-weight:bold;
396
}
397
398
#facets dd {
399
    border:1px solid #CCCCCC;
400
}
401
402
/* the USER information block */
403
#librarian_information {
404
/*     position:absolute; */
405
    float:right;
406
    font-size:10pt;
407
}
408
409
/* css style for reregistration alert */
410
411
.reregistrinfo {
412
    color: #6699cc;
413
    font-weight : bold;
414
    background-color : #eeeeee;
415
}
416
/* MARC editor */
417
418
/* styles for the 11 buttons that the user can click on */
419
/* the design of the active tab button (only 1 at a given time)*/
420
.tab_active {
421
    color: #6699CC;
422
    background-color : #CCCCCC;
423
    font-size : 1em;
424
    border: 2px inset;
425
    font-weight : bold;
426
    text-decoration:none;
427
    display: inline;
428
    text-decoration:none;
429
    margin-left:10px;
430
}
431
432
433
/* the online help button */
434
#onlinehelp {
435
    position:absolute;
436
    top:0px;
437
    right:0px;
438
}
439
#onlinehelp a {
440
        color:white;
441
}
442
443
/* the login box */
444
#login {
445
    font-size:0.7em;
446
}
447
448
/* the design of the INactives tab buttons (all other tabs) */
449
.tab_inactive {
450
    background-color : #6699CC;
451
    color : #FFFFFF;
452
    font-size : 1em;
453
    font-weight : bold;
454
    display:inline;
455
    border: 2px outset;
456
    text-decoration:none;
457
    margin-left:10px;
458
}
459
460
/* the button of INactive tabs : we need this one to have white color on links, otherwise, default a look will be choosen */
461
#tabs a {
462
    color:white;
463
    text-decoration:none;
464
    padding-right:10px;
465
    padding-left:10px;
466
}
467
468
/* specify that we to do when the mouse is on 1 button */
469
#tabs a:hover {
470
    border: 2px inset;
471
}
472
473
#tabs {
474
    margin-top:45px;
475
    margin-bottom:5px;
476
}
477
478
/* styles for the 11 content blocks */
479
/* the property for hidden tabs */
480
.content_hidden {
481
    visibility:hidden; /* you propably don't need to change this one */
482
    display:none;
483
}
484
485
/* the property for the displayed tab */
486
.content_visible {
487
    visibility:visible; /* you propably don't need to change this one */
488
    display:block;
489
}
490
491
/* the style of tag description */
492
p.tag {
493
    font-weight:bold;
494
}
495
/* the style of subfield paragraph */
496
p.subfield {
497
    
498
}
499
500
501
502
.lineSelected {
503
    background-color:yellow;
504
}
505
506
507
/* display more informations with css layer */
508
a.info {
509
    position: relative;
510
    text-decoration: none;
511
    color: black;
512
    border-bottom: 1px gray dotted;
513
}
514
515
a.info span {
516
    display: none;
517
    width:300px;
518
}
519
520
a.info:hover {
521
    background: none; /* correcting IE bug*/
522
    z-index: 500;
523
}
524
a.info:hover span {
525
    display: inline;
526
    position: absolute;
527
    top: 2em;
528
    right: 1em;
529
    background: orange;
530
    text-align: center;
531
    color: white;
532
    padding: 2px;
533
}
534
535
/* the itemtype list (in adv search) */
536
#itemtypelist {
537
    width:700px;
538
}
539
#itemtypelist td {
540
    border : 0px;
541
    margin : 0px;
542
    padding: 5px;
543
    border-collapse:collapse;
544
    border: 1px solid white;
545
    background-color:#CCCCCC;
546
    vertical-align:top;
547
}
548
549
#itemtypelist p {
550
    margin:0px;
551
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/pages/addbiblio.css (-75 lines)
Lines 1-75 Link Here
1
/* addbiblio.css */
2
3
/* MARC editor */
4
5
/* styles for the 11 buttons that the user can click on */
6
/* the design of the active tab button (only 1 at a given time)*/
7
.tab_active {
8
    color: #6699CC;
9
    background-color : #CCCCCC;
10
    font-size : 1em;
11
    border: 2px inset;
12
    font-weight : bold;
13
    text-decoration:none;
14
    display: inline;
15
    text-decoration:none;
16
    margin-left:10px;
17
}
18
19
#onlinehelp {
20
    float:right;
21
}
22
23
/* the design of the INactives tab buttons (all other tabs) */
24
.tab_inactive {
25
    background-color : #6699CC;
26
    color : #FFFFFF;
27
    font-size : 1em;
28
    font-weight : bold;
29
    display:inline;
30
    border: 2px outset;
31
    text-decoration:none;
32
    margin-left:10px;
33
}
34
35
/* the button of INactive tabs : we need this one to have white color on links, otherwise, default a look will be choosen */
36
#tabs a {
37
    color:white;
38
    text-decoration:none;
39
    padding-right:10px;
40
    padding-left:10px;
41
}
42
43
/* specify that we to do when the mouse is on 1 button */
44
#tabs a:hover {
45
    border: 2px inset;
46
}
47
48
#tabs {
49
    margin-top:45px;
50
    margin-bottom:5px;
51
}
52
53
/* styles for the 11 content blocks */
54
/* the property for hidden tabs */
55
.content_hidden {
56
    height:0px; /* you propably don't need to change this one */
57
    visibility:hidden; /* you propably don't need to change this one */
58
    display:none;
59
}
60
61
/* the property for the displayed tab */
62
.content_visible {
63
    height:0px; /* you propably don't need to change this one */
64
    visibility:visible; /* you propably don't need to change this one */
65
    display:block;
66
}
67
68
/* the style of tag description */
69
p.tag {
70
    font-weight:bold;
71
}
72
/* the style of subfield paragraph */
73
p.subfield {
74
    
75
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global2.css (-576 lines)
Lines 1-575 Link Here
1
@import url( /intranet-tmpl/prog/en/lib/yui/reset-fonts-grids.css) all;
2
3
a, a:link, a:visited, a:active {
4
    text-decoration:none;
5
    color:#027ac6;
6
}
7
8
a:hover {
9
    text-decoration:underline;
10
    color:#0072b9;
11
    }
12
13
body {
14
    text-align : left;
15
    background-color:#EDF5FA;
16
    color:#494949;
17
}
18
19
form {
20
	display : inline;
21
}
22
23
h1 {
24
    margin-top:0.5em;
25
    margin-bottom:0.5em;
26
    font-size : 182%;
27
    font-weight : bold;
28
}
29
30
h2 {
31
    margin-top:0.3em;
32
    margin-bottom:0.3em;
33
    font-size : 167%;
34
    font-weight : bold;
35
}
36
37
h3 {
38
	font-size : 153.9%;
39
	font-weight : bold;
40
}
41
42
h4 {
43
	font-size : 138.5%;	
44
	font-weight : bold;
45
}
46
47
h5 {
48
	font-size : 123.1%;	
49
	font-weight : bold;
50
    background: url( /intranet-tmpl/prog/img/css_header.png );
51
    background-repeat:repeat-x;
52
    color:white;}
53
54
h6 {
55
	font-size : 93%;
56
	font-weight : bold;
57
}
58
59
strong {
60
	font-weight : bold;
61
}
62
63
em {
64
	font-style : italic;
65
}
66
67
input[type=submit], input[type=button], input[type=reset] {
68
    border:0px;
69
    color: #0072b9;
70
    font-weight:bold;
71
    background: url( /intranet-tmpl/prog/img/bg-tab.png );
72
    font-size : 0.8em;
73
    padding:3px;
74
    text-decoration:none;
75
    display:inline;
76
    cursor:pointer;
77
    margin-left:20px;
78
}
79
80
#hd {
81
}
82
83
#navigation {
84
	border-right : 1px solid #BCBCBC;
85
}
86
87
#navigation li {
88
	font-weight : bold;
89
}
90
91
#navigation li li {
92
	font-weight : normal;
93
}
94
95
#navigation input {
96
	font-size : 85%;
97
}
98
99
#ft {
100
}
101
102
.yui-u {
103
}
104
105
#doc3 {
106
	padding-top : 1em;
107
	background-color:white;
108
}
109
110
#login	 {
111
	position : absolute;
112
	top : 3px;
113
	right : .5em;
114
}
115
116
#login a {
117
118
}
119
120
ul {
121
	padding-left : 1.1em;
122
}
123
124
li {
125
	
126
	list-style-type : disc;
127
}
128
129
#header {
130
    border-bottom : 1px solid #494949;
131
    background: url( /intranet-tmpl/prog/img/css_header.png );
132
    color:#494949;
133
}
134
#header a {
135
    color:white;
136
}
137
138
139
#header:after { /* clearing without presentational markup, IE gets extra treatment */
140
    display: block;
141
    clear: both;
142
    content: " ";
143
}
144
145
#sitetitle {
146
/*	background-image : url("../../img/koha-logo-black.png");
147
	background-position : 5px 2px;
148
	background-repeat : no-repeat;
149
	float : left;
150
	height : 54px;
151
	padding-left : 50px;*/
152
	border-bottom : 1px solid #E8E8E8;
153
}
154
155
#sitetitle h1 {
156
	display : inline;
157
	line-height : 54px;
158
}
159
160
#sitetitle h1 a {
161
	text-decoration : none;
162
}
163
164
#toplevelnav {
165
	float : left;
166
	line-height : 2em;
167
}
168
169
#submenu {
170
    margin : 0 0 .5em 0;
171
    padding : 10px 0 0 0;
172
    margin-top:10px;
173
}
174
175
#submenu ul {
176
    margin : 0;
177
    display:inline;
178
}
179
180
#submenu ul li {
181
    padding : 0px 5px 0px 5px;
182
    background-color:#027ac6;
183
    color:white;
184
    display:inline;
185
    background: url( /intranet-tmpl/prog/img/css_header.png );
186
}
187
188
#submenu ul li a {
189
    color:white;
190
}
191
192
/*#toplevelnav ul {
193
	margin : 0;
194
	padding : 0;
195
}
196
197
#toplevelnav li, #submenu li {
198
	display : inline;
199
	border-right : 1px solid #E8E8E8;
200
	padding : 0 .5em;
201
	white-space : nowrap;
202
}
203
204
#toplevelnav li:last-child, #submenu li:last-child {
205
	border : 0;
206
}*/
207
208
table {
209
    border-collapse : collapse;
210
    border-top : 1px solid #BCBCBC;
211
    border-right : 1px solid #BCBCBC;
212
}
213
214
th {
215
    color:white;
216
    background: url( /intranet-tmpl/prog/img/css_header.png );
217
    background-repeat:repeat-x;
218
    border-bottom : 1px solid #BCBCBC;
219
    border-left : 1px solid #BCBCBC;
220
    padding : .5em;
221
}
222
223
td {
224
    background-color : White;
225
    border-bottom : 1px solid #BCBCBC;
226
    border-left : 1px solid #BCBCBC;
227
    padding : .5em;
228
}
229
230
th {
231
	background-color : #E8E8E8;
232
	font-weight : bold;
233
}
234
235
td.highlight {
236
	background-color : #F3F3F3;
237
}
238
239
caption {
240
	font-size : 153.9%;
241
	font-weight : bold;
242
}
243
244
span.problem {
245
	background-color : #FFFFCC;
246
	color : #990000;
247
	font-weight : bold;
248
	line-height : 1.7em;
249
}
250
251
fieldset {
252
	border : 2px solid #EEEEEE;
253
	margin : 1em;
254
	padding : 1em;
255
}
256
257
legend {
258
	font-size : 138.5%;
259
	font-weight : bold;
260
	margin : 0 0 0 -1em;
261
	padding : 0;
262
}
263
264
#breadcrumbs {
265
	background-color : #F3F3F3;
266
	border-bottom : 1px solid #E8E8E8;
267
	clear : both;
268
	font-size : 90%;
269
	padding :.2em .5em .4em .5em;
270
}
271
272
#commonsearch {
273
	display : inline;
274
}
275
276
277
div#header_search {
278
	background-image : url("../../img/koha-logo-medium.gif");
279
	background-position : .5em .5em;
280
	background-repeat : no-repeat;
281
	float: left;
282
	padding-left : 14.2em;
283
	margin: 1em 0 1.5em 0;
284
}
285
286
div#header_search input {
287
	font-size : 1.3em;
288
}
289
290
div#header_search ul.link-tabs {
291
	font-family : Arial, Geneva, sans-serif;
292
	margin-bottom : -4px;
293
}
294
295
div#header_search ul.link-tabs li.on a,
296
div#header_search ul.link-tabs li a,
297
div#header_search ul.link-tabs li.off a {
298
	padding : 0.1em .5em .2em .5em;
299
}
300
301
div#circ_search,div#catalog_search,div#patron_search {
302
	border : 0;
303
	border-bottom : 1px solid #FF9900;
304
	padding : 0 0 .2em 0;
305
}
306
307
/* Panel-Switch Tabs */
308
ul.link-tabs {
309
	list-style-type: none;
310
	margin: 1px 0 9px 5px;
311
	padding: 0;
312
}
313
314
ul.link-tabs li {
315
	display: inline;
316
	padding: 0px;
317
}
318
319
ul.link-tabs li a {
320
	border-bottom: 1px solid #333333;
321
	border-left : 1px solid #DDDDDD;
322
	border-right : 1px solid #666666;
323
	padding: .2em 1.2em .2em 1.2em;
324
	text-decoration: none;
325
}
326
327
ul.link-tabs li.off a {
328
	background-color: #FFFFFF;
329
	border : 0;
330
	margin-right : 1px;
331
	text-decoration: underline;
332
}
333
334
ul.link-tabs li.off a:hover {
335
	background-color: #FFFFEC;
336
	border : 0;
337
	margin-right : 0;
338
	padding: .2em 1.2em .2em 1.2em;
339
}
340
341
ul.link-tabs li.on a {
342
	background-color: #FFFFCC;
343
	border-top: 1px solid #FFFFCC;
344
	border-right: 1px solid #FF9900;
345
	border-bottom: 1px solid #FF9900;
346
	border-left: 1px solid #FFCC66;
347
	font-weight : bold;
348
}
349
350
div#header_search .tip {
351
	font-size: 93%;
352
	color : Gray;
353
}
354
355
/* ClickMenu Overrides */
356
357
div.cmDiv
358
{
359
	border: 0;
360
	background-color: #F3F3F3;
361
}
362
363
364
.clickMenu li.more a {
365
	background-image: url("../../img/more-arrow.gif");
366
	background-position: right;
367
	background-repeat: no-repeat;
368
	padding-right : 13px;
369
}
370
371
.clickMenu li.more li a {
372
	background-image : none;
373
	padding-right : 0;
374
}
375
376
.clickMenu
377
{
378
	margin: 0;
379
	padding: 0;
380
	cursor: default;
381
}
382
.clickMenu, .clickMenu ul
383
{
384
	list-style: none;
385
}
386
.clickMenu ul
387
{
388
    margin: 0;
389
    padding: 2px;
390
    border: 0;
391
    background-color: #F3F3F3;
392
    min-width: 100px; /* ie doesnt know this :/ */
393
    //float: left;/*ie again*/
394
    //width: 100%;/*and again*/
395
}
396
.clickMenu div.outerbox
397
{
398
    display: none;
399
    min-width: 106px; /* firefox produces animation-flickering when the box is bigger than this :/ */
400
}
401
.clickMenu div.inner
402
{
403
    //top: 20px; /* for ie */
404
    left: 0;
405
    margin: 0;
406
}
407
.clickMenu div.inner div.outerbox
408
{
409
    margin: 0;
410
    left: 98px;
411
    //left: 90px; /* for ie */
412
    top: -3px;
413
}
414
.clickMenu li
415
{
416
    list-style-type : none;
417
    position: relative;
418
    padding: 0 20px 0 2px;
419
    /*white-space: nowrap; does not really work in ie */
420
}
421
.clickMenu li.main
422
{
423
    float: left;
424
    padding: 0 10px;
425
    background: url( /intranet-tmpl/prog/img/css_header.png );
426
    //height: 20px; /* for ie */
427
}
428
.clickMenu li.main li
429
{
430
    z-index: 2;
431
    min-width: 78px;
432
    background-color: #2e8fcb;
433
}
434
.clickMenu li.hover
435
{
436
    z-index: 1 !important; /* the hover z-index has to be below the normal one the hovering items may be drawn over a submenu */
437
    background-color : transparent;
438
}
439
.clickMenu img.liArrow
440
{
441
    position: absolute;
442
    right: 5px;
443
    top: 0.41em;
444
}
445
.clickMenu ul a {
446
    cursor: default;
447
}
448
449
ul.innerBox a {
450
    cursor : pointer;
451
}
452
453
ul.innerBox {
454
    border: none;
455
}
456
457
div.yui-b {
458
    border: 1px solid #dddddd;
459
    padding:10px 0 10px 5px;
460
    background:#e4eaee;
461
}
462
463
div.yui-b h5 {
464
	font-size : 100%;
465
    margin : .5em 0;
466
}
467
468
/*Action button*/
469
#action {
470
    float:right;
471
}
472
473
#action a {
474
    color: #0072b9;
475
    font-weight:bold;
476
    background: url( /intranet-tmpl/prog/img/bg-tab.png );
477
    font-size : 0.8em;
478
    padding:3px;
479
    margin-bottom:2px;
480
    text-decoration:none;
481
    display:block;
482
}
483
484
#action li {
485
    list-style:none;
486
}
487
/*edit action*/
488
#action .edit {
489
    display:inline;
490
    margin-bottom:10px;
491
}
492
493
#action .edit a {
494
    background:none;
495
    background-color : #0072b9;
496
    color : white;
497
}
498
499
#action .edit a:hover {
500
    cursor:pointer;
501
}
502
503
#action .view {
504
	display:inline;
505
	margin-bottom:5px;
506
}
507
508
#action .view a {
509
    background:none;
510
    background-color : #5ab5ee;
511
    color : white;
512
    margin-top: 1px;
513
}
514
515
#action .view a:hover {
516
    cursor:pointer;
517
}
518
519
#action .others {
520
    display:inline;
521
    margin-bottom:5px;
522
}
523
524
#action .others a {
525
    background:none;
526
    background-color : #2385C2;
527
    color : white;
528
    margin-top: 1px;
529
}
530
531
#action .others a:hover {
532
    cursor:pointer;
533
}
534
535
536
537
538
div#toolbar {
539
background:url(/intranet-tmpl/prog/img/bg-tab.png) repeat-x;
540
background-color : #82badd;
541
padding-bottom:0px;
542
}
543
544
ul.toolbar {
545
}
546
547
ul.toolbar li {
548
	display : inline;
549
	float : left;
550
	list-style : none;
551
}
552
553
ul.toolbar li a {
554
    background: url( /intranet-tmpl/prog/img/css_header.png );
555
    background-repeat:repeat-x;
556
    color:white;
557
    border : 1px solid #F3F3F3;
558
	display : block;
559
	margin : 3px;
560
	padding : 3px;
561
	text-decoration : none;
562
}
563
564
ul.toolbar li a:hover {
565
    background:none;
566
    background-color : #FFFFCC;
567
    color:#82badd;
568
}
569
570
ul.toolbar li:last-child a:hover {
571
}
572
573
ul.toolbar ul {
574
	display : none;
575
}
576
- 

Return to bug 5234