]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/css/style.css.tt2
LP#1681943: tweak background color of edit list description box
[working/Evergreen.git] / Open-ILS / src / templates / opac / css / style.css.tt2
1 [%-
2     PROCESS "opac/parts/css/colors.tt2";
3     PROCESS "opac/parts/css/fonts.tt2";
4     rtl = ctx.get_i18n_l(ctx.eg_locale).rtl;
5 %]
6
7 body {
8     margin:0;
9     font-family: Arial, Helvetica, sans-serif;
10     font-size: [% css_fonts.size_base %];
11     background: [% css_colors.primary %];
12     [% IF rtl == 't' -%]
13     direction: rtl;
14     [%- END %]
15 }
16
17 button, input {
18     font-family: Arial, Helvetica, sans-serif;
19     font-size: [% css_fonts.size_base %];
20 }
21
22 img {
23     border: none;
24 }
25
26 #topnav_logo {
27     margin: 2em 0;
28 }
29
30 #homesearch_main_logo {
31     padding-top: 60px;
32     margin: auto;
33     width: 50%;
34 }
35
36 a {
37     color: [% css_colors.primary %];
38 }
39
40 #search-wrapper input[type=text] {
41     margin:0;
42     padding:0;
43 }
44
45 #search-wrapper select, .results_header_lbl select {
46     border:1px solid [% css_colors.border_standard %];
47     margin:0;
48     padding:0;
49     width: 12em;
50 }
51
52 .searchbar {
53     font-weight: bold;
54     padding-top: 10px;
55     [% IF rtl == 't' -%]
56     margin-right: 1em;
57     [%- ELSE %]
58     margin-left: 1em;
59     [%- END %]
60 }
61
62 .refine_search {
63     padding-bottom: 7px;
64     margin-left: 1em;
65 }
66
67 /*
68 #search-wrapper select {
69     border:0px solid [% css_colors.border_dark %];
70     filter:alpha(opacity=0);
71     -moz-opacity:0;
72     -khtml-opacity:0;
73     opacity:0;
74     padding:0;
75     margin:0;
76     height:18px;
77 }
78 */
79 h1 {
80     margin:0;
81     margin-bottom: 5px;
82     font-size: [% css_fonts.size_biggest %];
83     font-weight:normal;
84 }
85
86 h2 {
87     font-size: [% css_fonts.size_bigger %];
88     font-weight:bold;
89 }
90
91 h2.graphic880 {
92     font-size: [% css_fonts.size_bigger %];
93     font-weight:normal;
94 }
95
96 .hide_me, .hidden {
97     display: none;
98     visibility: hidden;
99 }
100
101 div.select-box-wrapper {
102     position:absolute;
103     padding-top:2px;
104     overflow:hidden;
105     [% IF rtl == 't' -%]
106     padding-right: 3px;
107     text-align:right;
108     [%- ELSE %]
109     padding-left:3px;
110     text-align:left;
111     [%- END %]
112 }
113
114 #dash_wrapper {
115     [% IF rtl == 't' -%]
116     margin-right: 0.5em;
117     [%- ELSE %]
118     margin-left: 0.5em;
119     [%- END %]
120 }
121
122 #dash_wrapper div {
123     background: [% css_colors.primary %];
124     border-radius: 5px;
125     padding: 0em 1em;
126 }
127
128 .dash_divider {
129     margin: 1em;
130     color: [% css_colors.primary_fade %];
131     display:inline-block;
132 }
133
134 #dashboard, #dashboard_e {
135     margin-top: 1em;
136     height: 3em;
137 }
138
139 #dashboard span.dash-align a, #dashboard_e span.dash-align a {
140     font-weight: bold;
141     text-decoration: none;
142 }
143
144 #dash_user {
145     font-weight: bold;
146 }
147
148 #logout_link {
149     [% IF rtl == 't' -%]
150     right: 1px;
151     [%- ELSE %]
152     left: 1px;
153     [%- END %]
154 }
155
156 #dash_checked, #dash_e_checked { color: [% css_colors.text_attention %]; }
157 #dash_holds, #dash_e_holds { color: [% css_colors.text_attention %]; }
158 #dash_pickup, #dash_e_pickup { color: [% css_colors.text_goodnews %]; }
159
160 /*  
161 #dash_fines { color: [% css_colors.text_badnews %]; }
162 the color contrast between "text_badnews" and "primary"
163 is too low for WCAG compliance.  Use "text_attention" 
164 for now until a better color is picked - if needed.
165 */
166 #dash_fines { color: [% css_colors.text_attention %]; }
167
168 #dash_wrapper #dash_user_message_button_container {
169     display: inline;
170     padding: 0;
171 }
172 #dash_wrapper #unread_message_count_floater {
173     position: absolute;
174     background-color: [% css_colors.text_alert %];
175     padding-left: 0.2em;
176     padding-right: 0.2em;
177     display: inline-block;
178     font-size: 95%;
179     border-radius: 0;
180     z-index: 2;
181     margin-top: 0.2em;
182     [% IF rtl == 't' -%]
183     margin-right: -1.5em;
184     [%- ELSE %]
185     margin-left: -1.5em;
186     [%- END %]
187 }
188
189 #header-wrap {
190     background: linear-gradient([% css_colors.primary %], [% css_colors.primary_fade %]);
191     background: -moz-linear-gradient([% css_colors.primary %], [% css_colors.primary_fade %]);
192     background: -o-linear-gradient([% css_colors.primary %], [% css_colors.primary_fade %]);
193     background: -webkit-linear-gradient([% css_colors.primary %], [% css_colors.primary_fade %]);
194     background-color: [% css_colors.primary_fade %];
195 }
196 #header {
197     color: [% css_colors.background %];
198     margin-left: 1em;
199     margin-right: 1em;
200     font-size: [% css_fonts.size_small %];
201 }
202
203 #header a {
204     color: [% css_colors.background %];
205 }
206
207 #header a:hover {
208     color: [% css_colors.text_invert %];
209     text-decoration: none;
210 }
211
212 #header-links {
213     color: [% css_colors.text_invert %];
214     font-size: [% css_fonts.size_small %];
215     font-weight: bold;
216     position: relative;
217     top:4px;
218     
219 }
220
221 #header-links a {
222     color: [% css_colors.text_invert %];
223     display: block;
224     text-decoration: none;
225     [% IF rtl == 't' -%]
226     float: right;
227     margin-left: 22px;
228     [%- ELSE %]
229     float:left;
230     margin-right:22px;
231     [%- END %]
232 }
233
234 #header-links a:hover {
235     color: [% css_colors.text_invert %];
236     text-shadow: 0 0 0.2em [% css_colors.primary %], 0 0 0.2em [% css_colors.primary %];
237     text-decoration: none;
238 }
239
240 #header #header-links2 {
241     position:relative;
242     top:-8px;
243     color: [% css_colors.text_invert %];
244     padding-bottom: 15px;
245 }
246
247 #header #header-links2 a {
248     color: [% css_colors.text_invert %];
249 }
250
251 #header #header-links2 a:hover {
252     text-decoration: underline;
253 }
254
255 #your-acct-login {
256     padding-top:2em;
257 }
258
259 #gold-links {
260     [% IF rtl == 't' -%]
261     margin-right: 1em;
262     padding-right: 0px;
263     [%- ELSE %]
264     margin-left: 1em;
265     padding-left:0px;
266     [%- END %]
267 }
268
269 #gold-links-home {
270     margin:auto;
271     [% IF rtl == 't' -%]
272     padding-right: 0px;
273     [%- ELSE %]
274     padding-left:0px;
275     [%- END %]
276 }
277
278 #gold-links-holder {
279     height: 24px;
280     background: [% css_colors.background_invert %];
281 }
282
283 #util-bar {
284     [% IF rtl == 't' -%]
285     margin-right: 1em;
286     padding-right: 0px;
287     [%- ELSE %]
288     margin-left: 1em;
289     padding-left:0px;
290     [%- END %]
291     height:0px;
292 }
293
294 #search-wrapper {
295     border-bottom: 1px solid [% css_colors.border_standard %];
296     padding-bottom: 5px;
297     background: [% css_colors.background %];
298 }
299
300 #search-wrapper #breadcrumb {
301     margin-top:0px;
302     font-size: [% css_fonts.size_smaller %];
303     [% IF rtl == 't' -%]
304     float: right;
305     [%- ELSE %]
306     float:left;
307     [%- END %]
308 }
309
310 #search-wrapper #search-within {
311     margin-top:10px;
312     position:relative;
313     [% IF rtl == 't' -%]
314     float: left;
315     right: -173px;
316     [%- ELSE %]
317     float:right;
318     left:-173px;
319     [%- END %]
320 }
321
322 #search-wrapper #breadcrumb a {
323     color: [% css_colors.text %];
324 }
325
326 #search-wrapper #search_frm label {
327     font-size: [% css_fonts.size_smaller %];
328 }
329
330 #search-wrapper #search-box {
331     [% IF rtl == 't' -%]
332     margin-right: 1em;
333     padding-right: 0px;
334     [%- ELSE %]
335     margin-left: 1em;
336     padding-left: 0px;
337     [%- END %]
338     padding-top: 10px;
339     padding-bottom: 10px;
340 }
341
342 #adv_search_tabs, #acct_tabs, #acct_fines_tabs, #acct_checked_tabs, #acct_holds_tabs, #acct_prefs_tabs, #results_header_inner{
343     [% IF rtl == 't' -%]
344     margin-right:2px;
345     [%- ELSE %]
346     margin-left: 2px;
347     [%- END %]
348     overflow: auto;
349 }
350
351 #adv_search_tabs a, #acct_tabs a, #acct_fines_tabs a, #acct_checked_tabs a, #acct_holds_tabs a, #acct_prefs_tabs a {
352     [% IF rtl == 't' -%]
353     float: right;
354     margin: 10px 0px 0px 7px;
355     -moz-border-radius: 10px 10px 0px 0px;
356     border-radius: 10px 10px 0px 0px;
357     [%- ELSE %]
358     float: left;
359     margin: 10px 7px 0px 0px;
360     -moz-border-radius: 10px 10px 0px 0px; 
361     border-radius: 10px 10px 0px 0px;
362     [%- END %]
363     text-align: center;
364     vertical-align: middle;
365     display: block;
366     padding: 10px 0px 10px 0px;
367     font-weight: bold;
368     color: [% css_colors.text_invert %];
369     background: [% css_colors.control %];
370     font-weight: bold;
371     text-decoration: none;
372 }
373
374 #adv_search_tabs a, #acct_tabs a, #acct_fines_tabs a {
375     padding: 1em 1em 0.5em;
376 }
377
378 #adv_search_tabs a:hover, #acct_tabs a:hover, #acct_fines_tabs a:hover, #acct_checked_tabs a:hover, #acct_holds_tabs a:hover, #acct_prefs_tabs a:hover {
379     background: [% css_colors.primary %]; 
380     color: [% css_colors.text_invert %];
381     text-decoration: none;
382 }
383
384 #adv_search_filters {
385     position: relative;
386 }
387 #adv_search_rows {
388     border-bottom: none;
389 }
390 .adv_filter_block {
391     [% IF rtl == 't' -%]
392     float: right;
393     [%- ELSE %]
394     float: left;
395     [%- END %]
396     padding: 15px;
397     clear: both;
398 }
399 .adv_filter_block_item {
400     [% IF rtl == 't' -%]
401     float: right;
402     [%- ELSE %]
403     float: left;
404     [%- END %]
405     padding: 5px;
406 }
407
408 #adv_special_block {
409     [% IF rtl == 't' -%]
410     float: right;
411     [%- ELSE %]
412     float: left;
413     [%- END %]
414     padding: 5px;
415     margin-top: 5px;
416 }
417
418 #adv_search_submit {
419     [% IF rtl == 't' -%]
420     margin-right: 10px;
421     [%- ELSE %]
422     margin-left: 10px;
423     [%- END %]
424     position: relative;
425 }
426
427 .checkbox_col {
428     width: 1%;
429     [% IF rtl == 't' -%]
430     padding-right: 10px !important;
431     [%- ELSE %]
432     padding-left: 10px !important;
433     [%- END %]
434 }
435
436 #adv_search.on, #num_search.on, #expert_search.on {
437     color: [% css_colors.accent_darker %];
438     background: [% css_colors.background %];
439     text-decoration: none;
440 }
441
442 #adv_search_tabs a.acct-tab-on, #acct_tabs a.acct-tab-on, #acct_fines_tabs a.acct-tab-on {
443     color: [% css_colors.accent_darker %];
444     background: [% css_colors.background %];
445     text-decoration: none;
446 }
447
448 .acct-tab-off {
449     background: [% css_colors.control %];
450 }
451
452 #acct_checked_tabs a, #acct_holds_tabs a, #acct_prefs_tabs a {
453     margin-top: 0px;
454     font-size: [% css_fonts.size_smaller %];
455     color: [% css_colors.accent_darker %];
456     padding: 10px 10px 10px 10px;
457 }
458
459 #acct_checked_tabs div.selected a, #acct_holds_tabs div.selected a, #acct_prefs_tabs div.selected a {
460     background: [% css_colors.accent_lightest %];
461     color: [% css_colors.accent_darker %];
462 }
463
464 #acct_checked_tabs, #acct_holds_tabs, #acct_prefs_tabs {
465     padding-bottom: 12px;
466     color: [% css_colors.accent_medium %];
467 }
468
469 #acct_select, #acct_prefs_select {
470      display: none;
471 }
472
473 #mobile_acct_search_links {
474       background: [% css_colors.primary_fade %];
475 }
476
477 .rdetail_header {
478     [% IF rtl == 't' -%]
479     padding: 5px 0px 6px 7px;
480     margin-right: 1em;
481     [%- ELSE %]
482     padding: 5px 7px 6px 0px;
483     margin-left: 1em;
484     [%- END %]
485     border-bottom: 1px dotted [% css_colors.accent_light %];
486 }
487
488 .rdetail_results a {
489     color:[% css_colors.primary_fade %];
490     font-weight:bold;
491     font-size: [% css_fonts.size_bigger %];
492 }
493
494 .rdetail_result_count {
495     color: [% css_colors.text %];
496     font-weight: normal;
497     display: inline-block;
498     [% IF rtl == 't' -%]
499     padding-right: 1em;
500     [%- ELSE %]
501     padding-left: 1em;
502     [%- END %]
503 }
504
505 .rdetail_result_nav {
506     font-weight:normal;
507     display: inline-block;
508     [% IF rtl == 't' -%]
509     padding-right: 1em;
510     [%- ELSE %]
511     padding-left: 1em;
512     [%- END %]
513 }
514
515 #rdetail_details_table {
516     margin-top: 15px;
517 }
518
519 #rdetail_image { border: none; }
520 #rdetail_image_cell {
521     padding-top: 3px;
522     [% IF rtl == 't' -%]
523     padding-left: 10px;
524     [%- ELSE %]
525     padding-right: 10px;
526     [%- END %]
527 }
528
529 h2.rdetail_uris {
530     margin-top: 1em;
531 }
532 div.rdetail_uris {
533     padding: 0.5em 1em 0.5em 1em;
534     background-color: [% css_colors.accent_lighter2 %];
535 }
536 div.rdetail_uris ul li {
537     position: relative;
538     [% IF rtl == 't' -%]
539     right: 1em;
540     [%- ELSE %]
541     left: 1em;
542     [%- END %]
543 }
544
545 div.rdetail_show_copies {
546     margin-top: 1em;
547 }
548
549 div#rdetail_actions_div {
550     background: [% css_colors.background %];
551     [% IF rtl == 't' -%]
552     float: left;
553     [%- ELSE %]
554     float: right;
555     [%- END %]
556 }
557
558 span#rdetail_copy_counts {
559     display: inline-block;
560     vertical-align: top;
561     [% IF rtl == 't' -%]
562     border-left: thin;
563     margin-left: 1em;
564     padding-left: 1em;
565     [%- ELSE %]
566     border-right: thin;
567     margin-right: 1em;
568     padding-right: 1em;
569     [%- END %]
570 }
571
572 span#rdetail_hold_counts {
573     display: inline-block;
574     vertical-align: top;
575 }
576 span#rdetail_hold_counts p {
577     [% IF rtl == 't' -%]
578     padding-right: 2em;
579     [%- ELSE %]
580     padding-left: 2em;
581     [%- END %]
582 }
583
584 #rdetail_image_div {
585     [% IF rtl == 't' -%]
586     float: right;
587     margin-left: 1em;
588     [%- ELSE %]
589     float: left;
590     margin-right: 1em;
591     [%- END %]
592 }
593
594 .rdetail_aux_utils {
595     padding-bottom: 6px;
596     [% IF rtl == 't' -%]
597     border-right: 1px dotted #ccc;
598     padding-right:17px;
599     padding-left:70px;
600     [%- ELSE %]
601     border-left:1px dotted [% css_colors.accent_light %];
602     padding-left: 17px;
603     padding-right: 70px;
604     [%- END %]
605 }
606
607 div.place_hold {
608     border-bottom: 1px dotted [% css_colors.accent_light %];
609     padding-top: 10px;
610 }
611
612 div.toggle_list { padding-top: 6px; }
613
614 div.share_record {
615     padding-top: 6px;
616     border-top: 1px dotted [% css_colors.accent_light %];
617 }
618
619 div.format_icon {
620     [% IF rtl == 't' -%]
621     float: left;
622     margin-left: 17px;
623     [%- ELSE %]
624     float: right;
625     margin-right: 17px;
626     [%- END %]
627 }
628
629 #metarecord_population {
630     overflow: hidden;
631     width: 40%;
632     padding-bottom: 10px;
633 }
634
635 .metarecord_population_span_link {
636     line-height: 20px;
637 }
638
639 .metarecord_population_format {
640     border-right: thin;
641     display: inline-block;
642     margin-right: 1em;
643     padding-right: 1em;
644     vertical-align: top;
645 }
646
647 .metarecord_population_item_lang {
648     display: inline-block;
649     vertical-align: top;
650 }
651
652 .metarecord_population_all {
653     padding-top:10px;
654 }
655
656 .results_aux_utils {
657     display: table-cell;
658 }
659
660 .result_util {
661     border-bottom: 1px dotted [% css_colors.accent_light %];
662     padding-top: 6px;
663     [% IF rtl == 't' -%]
664     padding-right: 1em;
665     [%- ELSE %]
666     padding-left: 1em;
667     [%- END %]
668 }
669
670 .results_reviews {
671     top: -5px;
672 }
673
674 #rdetail_copies {
675     padding-top: 1.5em;
676 }
677
678 #rdetails_status td {
679     [% IF rtl == 't' -%]
680     padding: 7px 13px 3px 0px;
681     [%- ELSE %]
682     padding: 7px 0px 3px 13px;
683     [%- END %]
684     white-space: nowrap;
685 }
686
687 #rdetails_status td[headers=copy_header_library], 
688 #rdetails_status td[headers=copy_header_shelfloc] {
689     white-space: normal;
690 }
691
692 #rdetails_status thead th {
693     [% IF rtl == 't' -%]
694     padding: 13px 13px 13px 0px;
695     text-align: right;
696     [%- ELSE %]
697     padding: 13px 0px 13px 13px;
698     text-align: left;
699     [%- END %]
700     background-color: [% css_colors.accent_lighter2 %];
701     font-size: [% css_fonts.size_smaller %];
702     font-weight: bold;
703 }
704
705 #rdetails_status tbody td {
706     [% IF rtl == 't' -%]
707     padding-right: 13px;
708     text-align: right;
709     [%- ELSE %]
710     padding-left: 13px;
711     text-align: left;
712     [%- END %]
713 }
714 #rdetails_status tbody td.copy_note {
715     color: [% css_colors.primary %];
716     text-wrap:normal;
717     white-space:pre-wrap !important;
718     word-wrap:normal;
719 }
720
721 .rdetail_extras {
722     background: [% css_colors.primary_fade %];
723     border: 1px solid [% css_colors.primary %];
724     padding-top:1px;
725     clear:both;
726 }
727
728 #rdetail_extras_div {
729     margin: 1em 0;
730 }
731
732 .rdetail_extras_hr {
733     [% IF rtl == 't' -%]
734     margin-right: 1px;
735     margin-left: 1px;
736     [%- ELSE %]
737     margin-left: 1px;
738     margin-right: 1px;
739     [%- END %]
740     height: 1px;
741     background: [% css_colors.accent_light %];
742 }
743
744 .rdetail_extras_link {
745     padding: 6px 12px;
746     font-size: [% css_fonts.size_smaller %];
747     font-weight: bold;
748 }
749
750 .rdetail_extras_lbl {
751     color: [% css_colors.text_invert %];
752     text-decoration: none;
753 }
754
755 ##rdetail_extras_expand, #rdetail_extras_collapse, #rdetail_locs_collapse {
756     [% IF rtl == 't' -%]
757     margin-right: 13px;
758     [%- ELSE %]
759     margin-left: 13px;
760     [%- END %]
761 }
762
763 #rdetail_locs_expand, #rdetail_locs_collapse {
764     [% IF rtl == 't' -%]
765     margin-right: 13px;
766     [%- ELSE %]
767     margin-left:13px;
768     [%- END %]
769     padding-bottom:3px;
770     margin-top:15px;
771 }
772
773 #rdetail_anotes_div .biography {
774     margin:0;
775 }
776
777 #gbp_extra, #gbp_arrow_down_link {
778     display: none;
779 }
780
781 .almost-content-wrapper {
782     background: [% css_colors.background %];
783 }
784
785 #content-wrapper {
786     background: [% css_colors.background %];
787     min-height: 260px;
788     border-bottom: 1px solid [% css_colors.border_dark %];
789 }
790
791 .content-wrapper-record-page { top: -15px; position: relative; }
792
793 #main-content-home {
794     [% IF rtl == 't' -%]
795     padding-right: 17px;
796     margin-right: 1em;
797     [%- ELSE %]
798     padding-left: 17px;
799     margin-left: 1em;
800     [%- END %]
801 }
802 #main-content {
803     [% IF rtl == 't' -%]
804     padding-right: 0px;
805     [%- ELSE %]
806     padding-left: 0px;
807     [%- END %]
808     margin: 0 1em;
809     clear: both;
810 }
811
812 #main-content-after-bar {
813     [% IF rtl == 't' -%]
814     margin-right: 1em;
815     padding-right: 4px;
816     [%- ELSE %]
817     margin-left: 1em;
818     padding-left: 4px;
819     [%- END %]
820 }
821
822 #results-side-bar {
823     [% IF rtl == 't' -%]
824     float: right; 
825     margin-left: 5px;
826     [%- ELSE %]
827     float: left;
828     margin-right: 5px; 
829     [%- END %]
830     width: 174px;
831     background: [% css_colors.background %];
832 }
833
834 #main-content .login_boxes {
835     border: 1px solid [% css_colors.accent_lighter %];
836     background: linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
837     background: -moz-linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
838     background: -ms-linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
839     background: -o-linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
840     background: -webkit-linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
841
842     color: [% css_colors.accent_darker %];
843 }
844
845 #main-content .login_boxes h1 {
846     font-weight: normal;
847     font-size: [% css_fonts.size_biggest %];
848     margin:0;
849 }
850
851 #main-content .left_brain {
852     [% IF rtl == 't' -%]
853     padding-right: 28px;
854     [% ELSE -%]
855     padding-left:28px;
856     [% END -%]
857     padding-top:25px;
858 }
859
860 #main-content .left_brain input[type=text], #main-content .left_brain input[type=password] {
861     width:167px;
862     margin:0;
863     padding:0;
864     background: [% css_colors.background %];
865     font-size: [% css_fonts.size_bigger %];
866     color: [% css_colors.text %];
867 }
868
869 #main-content .left_brain .input_bg {
870     [% IF rtl == 't' -%]
871     padding: 10px 13px 0px 10px;
872     [% ELSE -%]
873     padding:10px 10px 0px 13px;
874     [% END -%]
875     width:167px;
876     height:29px;
877 }
878
879 .login-help-box {
880     [% IF rtl == 't' -%]
881     float: right;
882     margin-right: 2em;
883     [% ELSE -%]
884     float: left;
885     margin-left: 2em;
886     [% END -%]
887     width: 200px;
888     text-align: center;
889 }
890
891 .login-help-button {
892     font-size: [% css_fonts.size_biggest %];
893     padding: 1.5em;
894 }
895
896 #login-failed-message {
897     font-size: [% css_fonts.size_bigger %];
898     font-weight: bold;
899     color: [% css_colors.text_alert %];
900     padding-top: 1em;
901 }
902
903 #holds_temp_parent td {
904     border-bottom:1px solid [% css_colors.border_standard %];
905 }
906
907 #holds_temp_parent input, #holds_temp_parent select {
908     margin:0;
909 }
910
911 #holds_temp_parent tr td div {
912     margin-top: 10px;
913     margin-bottom: 10px;
914 }
915
916 #holds_temp_parent tr td div.format_icon {
917     margin-top: 6px;
918     margin-bottom: 6px;
919     float: none;
920 }
921
922 #results_header_bar {
923     background: [% css_colors.accent_medium %];
924     border-top:1px solid [% css_colors.accent_mediumdark %];
925     border-bottom:1px solid [% css_colors.accent_mediumdark %];
926 }
927
928 .results_header_lbl {
929     [% IF rtl == 't' -%]
930     float: right;
931     [% ELSE -%]
932     float: left;
933     [% END -%]
934     font-weight: bold;
935     color: [% css_colors.text %];
936     /* this border is not visible, but it keeps these labels the same size
937     as the buttons */
938     border: 1px solid [% css_colors.accent_medium %];
939     background: [% css_colors.accent_medium %];
940     margin: 0.5em 0.3em;
941     padding: 0.3em;
942 }
943 /* we need a negative margin on the select to allow the containing <label>
944 to determine the actual size of the element.  By doing this, we can increase
945 the odds that the buttons and the select will be the same size, and therefore
946 collapse correctly when the window width decreases */
947 .results_header_lbl select {
948     margin: -0.5em 0;
949 }
950
951 #limit_to_available {
952     vertical-align: middle;
953 }
954
955 .results_header_sel {
956     [% IF rtl == 't' -%]
957     float: right;
958     [% ELSE -%]
959     float:left;
960     [% END -%]
961     margin:0;
962 }
963
964 .results_header_nav1 {
965     [% IF rtl == 't' -%]
966     padding: 5px 0px 6px 7px;
967     [% ELSE -%]
968     padding: 5px 7px 6px 0px;
969     [% END -%]
970     border-bottom: 1px dotted [% css_colors.accent_light %];
971 }
972
973 .results_header_nav1 .h1 {
974     font-size: [% css_fonts.size_bigger %];
975     font-weight:bold;
976     color:[% css_colors.primary_fade %];
977 }
978
979 .table_no_border_space {
980   border-spacing: 0px;
981 }
982 .table_no_cell_pad td {
983   padding: 0px;
984 }
985 .table_no_border {
986   border-collapse: collapse;
987 }
988
989 #result_table_table {
990   margin-top:10px;
991 }
992
993 #result_table_div {
994     margin-top: 1em;
995 }
996
997 tr.result_table_row > td.results_row_count,
998 tr.result_table_row > td.result_table_pic_header,
999 tr.result_table_row > td.result_table_title_cell {
1000     vertical-align: top;
1001 }
1002
1003 .result_metadata {
1004     [% IF rtl == 't' -%]
1005     float: right;
1006     padding-left: 2em;
1007     [% ELSE -%]
1008     float: left;
1009     padding-right: 2em;
1010     [% END -%]
1011     width: 30em;
1012 }
1013
1014 tr.result_table_row:nth-child(n+2) > td {
1015     border-top: 1px solid [% css_colors.accent_lighter2 %];
1016 }
1017
1018 tr.result_table_row > td.result_table_pic_header {
1019     [% IF rtl == 't' -%]
1020     padding-right: 1em;
1021     [% ELSE -%]
1022     padding-left: 1em;
1023     [% END -%]
1024     white-space: nowrap;
1025     width: 78px;
1026 }
1027
1028 .result_number {
1029     [% IF rtl == 't' -%]
1030     padding-right: 1em;
1031     [% ELSE -%]
1032     padding-left: 1em;
1033     [% END -%]
1034     white-space: nowrap;
1035 }
1036
1037 .result_count_number {
1038    font-weight: bold;
1039 }
1040
1041 .result_table_subtable {
1042     width: 100%;
1043     padding-top: 1em;
1044 }
1045
1046 div.result_table_utils_cont {
1047     [% IF rtl == 't' -%]
1048     text-align: right;
1049     float: right;
1050     [% ELSE -%]
1051     text-align:left;
1052     float: left;
1053     [% END -%]
1054 }
1055
1056 #myopac_summary_div p {
1057     margin:0;
1058     margin-bottom: 10px;
1059 }
1060
1061 #acct_sum_checked_table td {
1062     padding-bottom:5px;
1063 }
1064
1065 .zero_search_hits_main {
1066     [% IF rtl == 't' -%]
1067     float: right;
1068     [% ELSE -%]
1069     float:left;
1070     [% END -%]
1071     width:300px;
1072     margin-top: 2ex;
1073 }
1074 .zero_search_hits_saved {
1075     [% IF rtl == 't' -%]
1076     float: right;
1077     margin-left: 2em;
1078     [% ELSE -%]
1079     float:left;
1080     margin-right: 2em;
1081     [% END -%]
1082     width:200px;
1083     margin-top: 2ex;
1084 }
1085
1086 #zero_search_hits p {
1087     margin-top:0;
1088 }
1089
1090 #zero_hits_term {
1091     font-weight: bold;
1092 }
1093
1094 #zero_search_hits #spell_check_link {
1095 }
1096
1097 #zero_search_hits #zero_hits_suggestions {
1098 }
1099
1100 #lowhits_help {
1101     [% IF rtl == 't' -%]
1102     float: left;
1103     [% ELSE -%]
1104     float: right;
1105     [% END-%]
1106     width: 353px;
1107     background: [% css_colors.accent_light %];
1108     padding: 10px;
1109     margin-top: 7px;
1110 }
1111
1112 .results_info_table td {
1113     [% IF rtl == 't' -%]
1114     padding-left: 10px;
1115     [% ELSE -%]
1116     padding-right: 10px;
1117     [% END-%]
1118 }
1119
1120 #myopac_holds_main_table {
1121     border-collapse: collapse;
1122 }
1123
1124 #myopac_holds_main_table td {
1125     border: 1px solid [% css_colors.border_dark %];
1126     
1127 }
1128
1129 .myopac-hold-available {
1130     color: [% css_colors.text_greatnews %];
1131     font-weight: bold;
1132 }
1133
1134 .myopac-hold-suspended {
1135     color: [% css_colors.text_badnews %];
1136     font-weight: bold;
1137 }
1138
1139 #myopac_prefs_div .data_grid {
1140     border-collapse:collapse;
1141 }
1142
1143 #myopac_prefs_div .data_grid td {
1144     [% IF rtl == 't' -%]
1145     padding: 6px 17px 7px 0px;
1146     [% ELSE -%]
1147     padding:6px 0px 7px 17px;
1148     [% END -%]
1149     background:[% css_colors.accent_ultralight %];
1150     border-bottom:3px solid [% css_colors.background %];
1151 }
1152
1153 .header_middle {
1154     [% IF rtl == 't' -%]
1155     padding: 0px 0px 0px 7px;
1156     [% ELSE -%]
1157     padding: 0px 7px 0px 0px;
1158     [% END -%]
1159     height:22px;
1160     font-size: [% css_fonts.size_bigger %];
1161     font-weight:bold;
1162     color:[% css_colors.primary_fade %];
1163     border-bottom: 1px dotted [% css_colors.accent_light %];
1164     clear: both;
1165 }
1166
1167 .header_middle a {
1168     font-weight: normal;
1169 }
1170
1171 #acct_sum_block {
1172     [% IF rtl == 't' -%]
1173     float: right;
1174     clear: right;
1175     [% ELSE -%]
1176     float: left;
1177     clear: left;
1178     [% END -%]
1179 }
1180
1181 .acct_sum_table {
1182     border-collapse: collapse;
1183     background: [% css_colors.accent_ultralight %];
1184 }
1185
1186 .acct_sum_table tr {
1187     border-bottom: 2px solid white;
1188 }
1189
1190 .acct_sum_table td {
1191     padding: 1em;
1192 }
1193
1194 .acct_sum_table a {
1195     text-transform: none;
1196     position:relative;
1197     top:-1px;
1198 }
1199
1200 .acct_sum_table .view_link {
1201     font-weight: normal;
1202 }
1203
1204 #myopac_sum_fines {
1205     [% IF rtl == 't' -%]
1206     float: left;
1207     padding: 15px 23px 0px 0px;
1208     [% ELSE -%]
1209     float:right;
1210     padding: 15px 0px 0px 23px;
1211     [% END -%]
1212     background: [% css_colors.accent_ultralight %];
1213     width: 177px;
1214     height: 166px;
1215 }
1216
1217 #myopac_sum_fines_placehold {
1218     [% IF rtl == 't' -%]
1219     float: left;
1220     [% ELSE -%]
1221     float: right;
1222     [% END -%]
1223     width: 177px;
1224     height: 166px;
1225 }
1226
1227 .acct_holds_temp td {
1228     [% IF rtl == 't' -%]
1229     text-align: right;
1230     [% ELSE -%]
1231     text-align: left;
1232     [% END -%]
1233 }
1234
1235 #acct_checked_tabs .align, #acct_holds_tabs .align, #acct_prefs_tabs .align {
1236     [% IF rtl == 't' -%]
1237     float: right;
1238     [% ELSE -%]
1239     float:left;
1240     [% END -%]
1241 }
1242
1243 #acct_checked_main_header, #acct_holds_main_header, #acct_checked_hist_header, #acct_holds_hist_header, #acct_list_header, #acct_list_header_anon, #temp_list_holds, #acct_messages_main_header, #ebook_circs_main_table, #ebook_holds_main_table {
1244     border-collapse: collapse;
1245 }
1246
1247 .hold_notes {
1248     text-transform: none;
1249     font-weight: normal;
1250 }
1251
1252 .hold_note_title { font-weight: bold; }
1253
1254 #acct_checked_main_header td, #acct_holds_main_header td, #acct_checked_hist_header td, #acct_holds_hist_header td, #acct_list_header td, #acct_list_header_anon td, #temp_list_holds td, #acct_messages_main_header, #ebook_circs_main_table td, #ebook_holds_main_table td {
1255     background: [% css_colors.accent_lighter2 %];
1256     padding: 10px;
1257 }
1258
1259 #acct_checked_main_header th, #acct_holds_main_header th, #acct_checked_hist_header th, acct_holds_hist_header th, #acct_list_header th, #acct_list_header_anon th, #temp_list_holds th, #acct_messages_main_header, #ebook_circs_main_table th, #ebook_holds_main_table th {
1260     [% IF rtl == 't' -%]
1261     text-align: right;
1262     [% ELSE -%]
1263     text-align: left;
1264     [% END -%]
1265     padding: 0px 10px 0px 10px;
1266 }
1267
1268 #acct_list_header select, #acct_list_header_anon select {
1269     font-weight:normal;
1270     text-transform:none;
1271 }
1272
1273 .search_catalog_lbl {
1274     font-size: [% css_fonts.size_bigger %];
1275 }
1276 .adv_search_catalog_lbl {
1277     font-size: [% css_fonts.size_bigger %];
1278 }
1279
1280 .browse_the_catalog_lbl {
1281     font-size: [% css_fonts.size_bigger %];
1282 }
1283
1284 .lbl1 {
1285     font-size: [% css_fonts.size_bigger %];
1286     font-weight:bold;
1287 }
1288
1289 .lbl2 {
1290     font-size: [% css_fonts.size_smaller %];
1291     font-weight:normal;
1292     position:relative;
1293     top:3px;
1294     max-width:300px;
1295 }
1296
1297 #myopac_tabs, #adv_search_parent, #fines_payments_wrapper {
1298     background: [% css_colors.primary_fade %];
1299     padding-top:5px;
1300     margin-bottom:20px;
1301 }
1302
1303 #fines_payments_wrapper {
1304     padding-left: 5px; 
1305     padding-right: 5px;
1306 }
1307
1308 .myopac_payments_table th {
1309     [% IF rtl == 't' -%]
1310     text-align: right; }
1311     [% ELSE -%]
1312     text-align: left;
1313     [% END -%]
1314 }
1315
1316 .myopac_payments_table thead th { border-bottom: 1px dashed [% css_colors.accent_darker %]; }
1317 .myopac_payments_table thead th:first-child { width: 8em; }
1318 .myopac_payments_table tbody tr:nth-child(odd) { background-color: [% css_colors.accent_lighter %]; }
1319 .myopac_payments_table form { display: inline; }
1320 .myopac_payments_table input[type="submit"] { padding: 1px; }
1321
1322 .payment-error {
1323     font-weight: bold; color: [% css_colors.text_alert %];
1324     padding: 10px; border: 1px solid [% css_colors.accent_medium_dark %];
1325 }
1326
1327 .payment-processing {
1328     font-weight: bold;
1329     color: [% css_colors.text_greatnews %];
1330     font-size: [% css_fonts.size_bigger %];
1331     padding: 10px; border: 1px solid [% css_colors.accent_medium_dark %];
1332     text-align: center;
1333 }
1334 #adv_search_input { width: 100%; }
1335 #adv_search_parent {
1336     margin-bottom:0px;
1337 }
1338 #search-submit-spinner {
1339     height: 16px;
1340     width: 16px;
1341 }
1342 div.adv_search_available {
1343     margin-top: 1em;
1344 }
1345
1346 #myopac_loading {
1347     width:100%;
1348     text-align:center;
1349     padding-top:20px;
1350     font-size: [% css_fonts.size_bigger %];
1351     font-weight:bold;
1352 }
1353
1354 .chili_link {
1355     width:100px !important;
1356     text-align: center !important;
1357 }
1358
1359 .chili_review div.chili_link div {
1360     margin: auto;
1361 }
1362
1363 /* styling for advanced search filters that display with searchbar */
1364
1365 #adv_filter_results_block h4 { display: inline; }
1366
1367 #adv_filter_results_block {
1368     margin-top: 6px;
1369 }
1370
1371 .adv_filter_results_block_label {
1372     font-weight:bold;
1373     [% IF rtl == 't' -%]
1374     padding: 4px 12px 4px 0px;
1375     [% ELSE -%]
1376     padding: 4px 0px 4px 12px;
1377     [% END -%]
1378 }
1379
1380 .adv_filter_results_group {
1381     font-size: 12px;
1382     display: inline-block;
1383     background:  [% css_colors.accent_lighter2 %];
1384     border-style: solid;
1385     border-color: [% css_colors.accent_medium %];
1386     border-width: 1px;
1387     border-radius: 4px;
1388     padding: 2px 4px 2px 4px;
1389 }
1390
1391 .adv_filter_results_group_wrapper {
1392     display: inline-block;
1393     [% IF rtl == 't' -%]
1394     margin-right: 1em;
1395     [% ELSE -%]
1396     margin-left: 1em;
1397     [% END -%]
1398     margin-bottom: 8px;
1399 }
1400
1401 .adv_filter_results_group_header {
1402     display: inline-block;
1403 }
1404
1405 .adv_filter_results_group_values {
1406     display: inline;
1407 }
1408
1409 .adv_search_result_filter {
1410     display: inline-block;
1411 }
1412
1413 .remove_filter {
1414     font-size: 16px;
1415     [% IF rtl == 't' -%]
1416     margin-right: 3px;
1417     [% ELSE -%]
1418     margin-left: 3px;
1419     [% END -%]
1420 }
1421
1422 a.remove_filter {
1423     text-decoration: none;
1424     color: [% css_colors.accent_dark %];
1425 }
1426
1427 #filter_hits {
1428      display: inline-block;
1429 }
1430
1431 #refine_search_link {
1432     display: inline-block;
1433 }
1434
1435 [%- IF we_want_to_turn_on_facet_styling.defined; %]
1436 /* some facet styling */
1437 .facetClassContainer { margin: 2px; border: 1px solid [% css_colors.accent_light %]; }
1438 .facetClassLabelContainer { border: 1px solid [% css_colors.accent_light %]; }
1439 .facetClassLabel { font-weight: bold; text-align: center; }
1440 .facetFieldContainer {  }
1441 .facetFieldLabel { padding-left: 2px; margin-top: 5px; margin-bottom: 5px; font-weight: bold; text-align: left; }
1442 .extraFacetFieldsWrapper { }
1443 .toggleExtraFacetFieldsButton { float: right; margin: 0px; padding: 0px; }
1444 .facetFieldLineCount {
1445     display: inline-block;
1446     border-right: 1px solid [% css_colors.accent_light %];
1447     color: [% css_colors.accent_mediumdark %];
1448     width: 3em;
1449     margin-right: 3px
1450 }
1451 .facetField { border-top: 1px solid [% css_colors.accent_light %]; }
1452 .facetFields { padding-left: 5px; }
1453 .facetFieldLineValue { overflow: hidden; text-overflow: ellipsis; }
1454 [%- END -%]
1455
1456 div#facet_sidebar {
1457     [% IF rtl == 't' -%]
1458     float: right;
1459     margin-left: 1em;
1460     [% ELSE -%]
1461     float: left;
1462     margin-right: 1em;
1463     [% END-%]
1464 }
1465
1466 .facet_box_temp {
1467     padding-bottom:3px;
1468 }
1469
1470 .facet_box_temp .header {
1471     height: 2.3em;
1472     background:[% css_colors.primary %];
1473     -moz-border-top-left-radius: 5px;
1474     border-top-left-radius: 5px;
1475     -moz-border-top-right-radius: 5px;
1476     border-top-right-radius: 5px;
1477     font-weight:bold;
1478     color:[% css_colors.text_invert %];
1479     padding-top:4px;
1480 }
1481
1482 .facet_box_temp.filter_box_temp .header {
1483     background: [% css_colors.background_invert %] !important;
1484 }
1485
1486 .filter_box_label {
1487     color: [% css_colors.background_invert %];
1488     font-weight:bold;
1489     padding-top:4px;
1490     padding-bottom:4px;
1491     padding-left:12px;
1492 }
1493
1494 .facet_box_temp .header .title {
1495     [% IF rtl == 't' -%]
1496     float: right;
1497     padding-right: 12px;
1498     [% ELSE -%]
1499     float:left;
1500     padding-left:12px;
1501     [% END -%]
1502     padding-top:6px;
1503 }
1504
1505 /* in this context, where h4 is primarily for structure, 
1506    avoid the normal large font and margin for h4's */
1507 .facet_box_temp h4 {
1508     font-size : 100%; 
1509     margin: 0px;
1510 }
1511
1512 .facet_box_temp .header a.button {
1513     [% IF rtl == 't' -%]
1514     float: left;
1515     padding-left: 6px;
1516     [% ELSE -%]
1517     float:right;
1518     padding-right:6px;
1519     [% END -%]
1520     padding-top:6px;
1521     color:[% css_colors.text_invert %];
1522 }
1523
1524 .facet_box_wrapper .box_wrapper .box {
1525     border-top:1px solid [% css_colors.border_standard %];
1526     border-left:1px solid [% css_colors.border_standard %];
1527     border-right:1px solid [% css_colors.border_standard %];
1528     padding: 0 0.5em;
1529     width: 14em;
1530     overflow: hidden;
1531 }
1532
1533 .filter_box_wrapper {
1534     margin-bottom: 3px;
1535     padding: 2px;
1536     border: 1px solid [% css_colors.background_invert %];
1537     -moz-border-radius: 3px;
1538     border-radius: 3px;
1539     font-weight:bold;
1540     padding-top:4px;
1541 }
1542
1543 .facet_template {
1544     box-sizing: border-box;
1545     -moz-box-sizing: border-box;
1546     display: table;
1547     margin: 0.5em 0;
1548     width: 100%;
1549 }
1550
1551 .facet_template div {
1552     display: table-cell;
1553     padding: 2px;
1554 }
1555
1556 .facet_template.filter_template div {
1557     padding: 0px !important;
1558 }
1559
1560 .facet_template .count {
1561     text-align: right;
1562     color: [% css_colors.accent_mediumdark %];
1563 }
1564
1565 .facet_template_selected {
1566     background-color: [% css_colors.accent_lighter2 %];
1567     border: 1px solid [% css_colors.accent_medium %];
1568 }
1569
1570 #footer-wrap {
1571     background: linear-gradient([% css_colors.primary_fade %], [% css_colors.primary %]);
1572     background: -moz-linear-gradient([% css_colors.primary_fade %], [% css_colors.primary %]);
1573     background: -o-linear-gradient([% css_colors.primary_fade %], [% css_colors.primary %]);
1574     background: -webkit-linear-gradient([% css_colors.primary_fade %], [% css_colors.primary %]);
1575     background-color: [% css_colors.primary %];
1576 }
1577
1578 #footer {
1579     [% IF rtl == 't' -%]
1580     margin-right: 1em;
1581     [% ELSE -%]
1582     margin-left: 1em;
1583     [% END -%]
1584     padding-top:5px;
1585     padding-bottom: 10px;
1586     font-size: [% css_fonts.size_small %];
1587 }
1588
1589 #footer a {
1590     color: [% css_colors.text_invert %];
1591     text-decoration: none;
1592     text-shadow: 0 0 0.2em [% css_colors.primary %], 0 0 0.2em [% css_colors.primary %];
1593 }
1594
1595 #copyright_text, #footer_logo {
1596     color: [% css_colors.text_invert %];
1597 }
1598
1599 .color_4 {
1600     font-weight: bold;
1601 }
1602
1603 .advanced_div { padding-top: 15px; }
1604 #adv_global_search { width: 100%; }
1605 #adv_global_search select { width: 13em; }
1606 #adv_global_addrow td { padding-top: 7px; }
1607 [% IF rtl == 't' -%]
1608 #adv_global_addrow.td-search-left{text-align:right;}
1609 [% END -%]
1610 #adv_global_input_table { width: 100%; }
1611 #adv_global_input_table select { width: 7em; }
1612 .adv_adv_link {
1613     font-size: [% css_fonts.size_smaller %];
1614     color: [% css_colors.text_alert %];
1615 }
1616 #acct_prefs_header {
1617     [% IF rtl == 't' -%]
1618     float: right;
1619     [% ELSE -%]
1620     float: left;
1621     [% END -%]
1622 }
1623 .search_page_nav_link {
1624     cursor: pointer;
1625     [% IF rtl == 't' -%]
1626     padding-right: 1em;
1627     [% ELSE -%]
1628     padding-left: 1em;
1629     [% END -%]
1630 }
1631 #opac.result.sort { width: 160px; }
1632 .renew-summary, .message-update-summary { font-size: [% css_fonts.size_bigger %]; font-style: italic; margin: 0.5ex 0; }
1633 .failure-text {
1634     [% IF rtl == 't' -%]
1635     margin-right: 4em;
1636     [% ELSE -%]
1637     margin-left: 4em;
1638     [% END -%]
1639     font-style: italic;
1640     color: [% css_colors.text_alert %];
1641 }
1642 .refine-controls { font-size: [% css_fonts.size_bigger %]; padding: 0.5ex 0; }
1643 #adv_search_refine input[type=text] { border: 1px inset [% css_colors.accent_light %] !important; }
1644 #adv_search_refine select { border: 1px inset [% css_colors.accent_light %] !important; }
1645 #adv_search_refine {
1646     [% IF rtl == 't' -%]
1647     padding-right: 5em;
1648     [% ELSE -%]
1649     padding-left: 5em;
1650     [% END -%]
1651     background-color: [% css_colors.accent_lighter2 %];
1652     margin: 2ex 0;
1653 }
1654 .row-remover { position: relative; top: 1px; vertical-align: middle; }
1655 .subtle-button {
1656     background-color: [% css_colors.background %];
1657     color: [% css_colors.primary %]; text-decoration: none;
1658     padding: 0; border: 0; margin: 0;
1659     vertical-align: middle;
1660 }
1661 .subtle-button:hover { text-decoration: underline; cursor: pointer; }
1662 .no-dec:hover { text-decoration: none; }
1663 .pending-addr td { background-color: [% css_colors.background_alert %] !important; border: 0 !important; }
1664
1665 #account-update-email table { text-align: center; padding: 20px; margin-top: 18px; border-collapse: collapse; }
1666 #account-update-email table td {
1667     [% IF rtl == 't' -%]
1668     text-align: right;
1669     [% ELSE -%]
1670     text-align: left;
1671     [% END -%]
1672     padding: 5px 15px 5px 15px;
1673     border-bottom: 1px solid [% css_colors.accent_lighter %];
1674 }
1675 #account-update-email-error { font-size: [% css_fonts.size_biggest %]; padding: 10px; border:1px solid [% css_colors.border_standard %];}
1676 a.dash-link:hover { text-decoration: underline !important; }
1677 #list_create_table td { vertical-align: middle; padding: 0 8px; }
1678 #list_create_table {
1679     background-color: [% css_colors.accent_light %];
1680     padding-bottom: 4px;
1681     margin-bottom: 10px;
1682     border-bottom: 1px dotted [% css_colors.accent_medium %];
1683     width: 100%;
1684 }
1685 .list_create_table_label {
1686     width: 30%;
1687 }
1688 #list_description, #list_create_name {
1689         width: 500px;
1690 }
1691 .list-create-table-buttons input[type=image] { margin-top: 2px; }
1692 .result_table_format_cell { padding: 0px 10px; text-align: center; }
1693 .results_row_count { font-weight: bold; }
1694 #hold_editor h1 { font-size: [% css_fonts.size_bigger %]; font-weight: bold; }
1695 #hold_editor h2 { font-size: [% css_fonts.size_big %]; font-weight: normal; text-indent: 2em; font-style: italic; }
1696 #hold_editor h1, #hold_editor h2 { margin: 2px 0; }
1697 #hold_editor_table { background-color: [% css_colors.accent_lighter %]; padding: 0.5em; }
1698 #hold_editor_table th {
1699     [% IF rtl == 't' -%]
1700     text-align: left;
1701     padding-left: 1em;
1702     [% ELSE -%]
1703     text-align: right;
1704     padding-right: 1em;
1705     [% END -%]
1706 }
1707 #hold_editor_table td { padding: 0.25em 0; }
1708 .fmt-note {
1709     [% IF rtl == 't' -%]
1710     padding-right: 1em !important;
1711     [% ELSE -%]
1712     padding-left: 1em !important;
1713     [% END -%]
1714     vertical-align: middle;
1715 }
1716 .hold-editor-controls { text-align: center; padding-top: 1em !important; }
1717 .hold-editor-controls a { padding-left: 2em; }
1718
1719 .text-right {
1720     [% IF rtl == 't' -%]
1721     text-align: left;
1722     [% ELSE -%]
1723     text-align: right;
1724     [% END -%]
1725 }
1726 .text-right-top {
1727     [% IF rtl == 't' -%]
1728     text-align: right;
1729     [% ELSE -%]
1730     vertical-align: top;
1731     [% END -%]
1732 }
1733 .rdetail-author-div {
1734     padding-bottom: 10px;
1735     display: inline-block;
1736 }
1737
1738 .invisible { visibility: hidden; }
1739 .rdetail-extras-summary { margin: 10px; }
1740 .staff-hold { background-color: [% css_colors.accent_lightest %]; }
1741 .expert-search tbody tr th {
1742     [% IF rtl == 't' -%]
1743     text-align: left;
1744     padding-right: 2em;
1745     [% ELSE -%]
1746     text-align: right;
1747     padding-left: 2em;
1748     [% END -%]
1749 }
1750 .expert-search-row { padding-top: 10px; }
1751 #adv_expert_row label { font-weight: bold; }
1752
1753 .bookshelf tr.browse_border td {
1754     border-bottom: 1px dashed [% css_colors.accent_dark %];
1755     font-size: 1px;
1756     height: 1px;
1757     padding-bottom: 1ex;
1758 }
1759 .cn_browse_item { padding: 2ex; }
1760 .results-paginator-list {
1761     [% IF rtl == 't' -%]
1762     padding-right: 1em;
1763     [% ELSE -%]
1764     padding-left: 1em;
1765     [% END -%]
1766 }
1767 .results-paginator-selected { color: [% css_colors.text_alert %]; }
1768 .inactive-hold { background: [% css_colors.accent_lightest %]; }
1769 .unread-patron-message { font-weight: bold; }
1770
1771 #hold-items-list td { padding: 5px; margin-bottom: 20px; }
1772 .hold-items-list-title { 
1773   font-size: [% css_fonts.size_bigger %];
1774   margin-bottom: 20px;
1775 }
1776 .hold-items-list-problem { color: [% css_colors.text_alert %]; }
1777
1778 .hold_success_links > span { margin: 0 2em; }
1779
1780 .radio-parts-selection { 
1781    width: 75%;
1782    margin-bottom: 20px;
1783 }
1784
1785 .parts-radio-option { 
1786   display: inline-block;
1787   width:15em;
1788 }
1789
1790 .mr_holds_no_formats { 
1791   [% IF rtl == 't' -%]
1792   margin-right: 25px;
1793   [% ELSE -%]
1794   margin-left: 25px;
1795   [% END -%]
1796   padding: 5px;
1797   font-size: 110%;
1798   font-weight: bold;
1799   color: [% css_colors.text_invert %]; 
1800   background: [% css_colors.primary %];
1801 }
1802  
1803 .holds_item_row_separator td {
1804   border-top: 2px dashed [% css_colors.accent_medium %];
1805 }
1806
1807 .big-strong {font-weight: bold; font-size: [% css_fonts.size_bigger %]; }
1808
1809 .results_header_btns, .results_header_sel {
1810     [% IF rtl == 't' -%]
1811     float: right;
1812     [% ELSE -%]
1813     float:left;
1814     [% END -%]
1815 }
1816
1817 /*
1818  * .various_containers a = shortcut to putting .opac-button on every 'a' with
1819  *     the tradeoff of increased stylesheet complexity (TODO: rethink?)
1820  */
1821
1822 .opac-multiline-button > a,
1823 .opac-button, .results_header_btns a, #simple-detail-view-links a, .dash_account_buttons a {
1824     color: [% css_colors.button_text %];
1825     font-weight: bold; 
1826     text-decoration: none;
1827     cursor: pointer !important;
1828     -moz-border-radius: 5px;
1829     border-radius: 5px;
1830     border: 1px solid [% css_colors.primary %];
1831     background:  [% css_colors.primary_fade %];
1832     margin: 0.5em;
1833     padding: 0.3em;
1834     display: inline-block;
1835 }
1836
1837 .opac-multiline-button > a:hover,
1838 .opac-button:hover, .results_header_btns a:hover, #simple-detail-view-links a:hover, #dash_wrapper a.opac-button:hover {
1839     background: [% css_colors.primary %];
1840 }
1841
1842 .opac-button:disabled {
1843     color: [% css_colors.accent_medium %];
1844     cursor: pointer !important;
1845     border: 1px solid [% css_colors.accent_light %];
1846     background-color: [% css_colors.accent_lighter %];
1847 }
1848
1849 /* Firefox adds its own special space to inputs; this gets us closer */
1850 button.opac-button::-moz-focus-inner, input.opac-button::-moz-focus-inner {
1851     padding: 0;
1852     border: 0;
1853 }
1854
1855 .opac-button-header, #dash_wrapper .opac-button {
1856     background: [% css_colors.control %];
1857     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
1858     font-size: [% css_fonts.size_base %];
1859 }
1860 a.opac-button-header:hover, #dash_wrapper a.opac-button:hover {
1861     border-color: [% css_colors.control %];
1862 }
1863
1864 .opac-multiline-button > a {
1865     display: inline-block;
1866 }
1867
1868 #myopac_checked_div {
1869     padding: 0px;
1870 }
1871
1872 .rdetail-mfhd-head {
1873     margin-top: 5px;
1874     padding-top: 5px;
1875     background-color: [% css_colors.table_heading %];
1876 }
1877
1878 .rdetail-mfhd-type {
1879     [% IF rtl == 't' -%]
1880     padding-right: 1em;
1881     [% ELSE -%]
1882     padding-left: 1em;
1883     [% END -%]
1884 }
1885
1886 .rdetail-mfhd-bottom {
1887     border-bottom: thin solid [% css_colors.border_dark %];
1888     width: 100%;
1889 }
1890
1891 #rdetail_record_details {
1892     clear: both;
1893     margin-top: 1em;
1894 }
1895
1896 .rdetail_content {
1897     [% IF rtl == 't' -%]
1898     margin-right: 1.5em;
1899     padding-right: 1.5em;
1900     [% ELSE -%]
1901     margin-left: 1.5em;
1902     padding-left: 1.5em;
1903     [% END -%]
1904 }
1905
1906 .rdetail_content_type, .rdetail_subject_type {
1907     vertical-align: top;
1908     font-weight: bold;
1909 }
1910
1911 .bookbag-item-row td { vertical-align: top; }
1912
1913 .error { color: [% css_colors.text_alert %]; font-weight: bold; }
1914 .success {
1915     color: [% css_colors.text_greatnews %];
1916     font-weight: bold;
1917 }
1918
1919 .rdetail_related_subjects {
1920     margin-top: 1.5em;
1921 }
1922
1923 .rdetail_related_series {
1924     margin-top: 1.5em;
1925 }
1926
1927 #rdetail_openurl {
1928     margin-top: 1em;
1929 }
1930
1931 .rdetail_openurl_entry {
1932     [% IF rtl == 't' -%]
1933     margin-right: 1em;
1934     padding-right: 1em;
1935     [% ELSE -%]
1936     margin-left: 1em;
1937     padding-left: 1em;
1938     [% END -%]
1939 }
1940 .bookbag-controls-holder { width: 100%; }
1941 .bookbag-controls-holder:nth-child(odd) { background-color: [% css_colors.accent_lighter2 %]; }
1942 .bookbag-controls-holder:nth-child(even) { background-color: [% css_colors.accent_lightest %]; }
1943 .bookbag-controls-holder .most {
1944     [% IF rtl == 't' -%]
1945     padding-right: 0;
1946     margin-left: 5em;
1947     [% ELSE -%]
1948     padding-left: 0;
1949     margin-right: 5em;
1950     [% END -%]
1951 }
1952 .bookbag-controls-title-block {
1953     float:left;
1954     width:40%;
1955 }
1956 .bookbag-controls-button-block {
1957     float:left;
1958     width:50%;
1959 }
1960 h2.bookbag-name { margin-bottom: 0em; padding-bottom: 0em; }
1961 .bookbag-share .fixed { min-width: 4em; }
1962 .bookbag-specific {
1963     [% IF rtl == 't' -%]
1964     margin-right: 1em;
1965     [% ELSE -%]
1966     margin-left: 1em;
1967     [% END -%]
1968 }
1969 .bookbag-specific div.sort {
1970     [% IF rtl == 't' -%]
1971     float: right;
1972     text-align: right;
1973     margin-right: 15px;
1974     [% ELSE -%]
1975     float: left;
1976     text-align: left;
1977     margin-left: 15px;
1978     [% END -%]
1979     width: 40%;
1980 }
1981 .bookbag-specific div.meta {
1982     background-color: [% css_colors.accent_light %];
1983     [% IF rtl == 't' -%]
1984     float: left;
1985     text-align: left;
1986     [% ELSE -%]
1987     float: right;
1988     text-align: right;
1989     [% END -%]
1990     width: 54%;
1991     border: 1px solid [% css_colors.accent_light %];
1992     padding: 5px;
1993     margin-top: 5px;
1994 }
1995 #bbag-name-desc-form tr th { vertical-align: middle; }
1996 #bbag-name-desc-form .saver { vertical-align: middle; text-align: center; }
1997 .bookbag-description {
1998     padding-top: 0em;
1999     font-style: italic;
2000     max-width: 40em;
2001 }
2002 .bbag-edit-desc-label {
2003     float:left;
2004     width:8em;
2005 }
2006 .bbag-edit-desc-save {
2007     clear:both;
2008     margin-bottom:10px;
2009 }
2010 #bbag-edit-description { width: 20em; float:left;}
2011 #bbag-edit-name { width: 20em; float: left; }
2012 .bbag-action {
2013     margin-left: 15px;
2014 }
2015 .bbag-navigate-list {
2016     padding-left: 32px;
2017     float:left;
2018 }
2019 .bbag-navigate-list-pages {
2020     padding-left: 10px;
2021     float:left;
2022 }
2023 textarea { font-family: sans-serif; }
2024 table.bookbag-specific {
2025     border-right: 1px solid [% css_colors.accent_dark %];
2026     border-bottom: 1px solid [% css_colors.accent_medium %];
2027     margin-bottom: 2ex;
2028 }
2029 .bookbag-share {
2030     [% IF rtl == 't' -%]
2031     float: right;
2032     padding: 0px 10px 0px 0px;
2033     [% ELSE -%]
2034     float: left;
2035     padding: 0px 0px 0px 10px;
2036     [% END -%]
2037 }
2038 .bookbag-share .fixed { min-width: 6em; }
2039 .bookbag-controls {
2040     [% IF rtl == 't' -%]
2041     float: right;
2042     padding: 0px 10px 0px 0px;
2043     [% ELSE -%]
2044     float: left;
2045     padding: 0px 0px 0px 10px;
2046     [% END -%]
2047 }
2048 .bookbag-specific td.list_checkbox {
2049     [% IF rtl == 't' -%]
2050     padding-right: 10px !important;
2051     [% ELSE -%]
2052     padding-left: 10px !important;
2053     [% END -%]
2054 }
2055 .bookbag-specific td.list_entry {
2056     min-width: 10em;
2057     [% IF rtl == 't' -%]
2058     padding-right: 5px !important;
2059     [% ELSE -%]
2060     padding-left: 5px !important;
2061     [% END -%]
2062 }
2063 .bookbag-specific td.list_actions {
2064     white-space: nowrap !important;
2065 }
2066 .bookbag-paginator-selected { color: [% css_colors.text_alert %]; }
2067
2068 .list_is_empty {
2069     padding: 8px 0px 6px 0px;
2070     width: 100%;
2071     border: 0;
2072     font-size: [% css_fonts.size_bigger %];
2073     text-align: center;
2074     font-style: italic;
2075 }
2076 .save-notes { padding-bottom: 1.5ex; }
2077
2078 .nonbreaking-wrapper {
2079     display: inline-block;
2080 }
2081
2082 /* Moved from semiauto.css */
2083 .adv_global_input_container {
2084     border-bottom: none;
2085     clear: both;
2086 }
2087 .opac-auto-013 {
2088     border-bottom: none;
2089     *height: 0px;
2090 }
2091 .adv_global_filter_sort {
2092     border: none;
2093     width: 100%;
2094 }
2095 .clear-both { clear: both; }
2096 .common-no-pad {
2097     clear: both;
2098     height: 0px;
2099     margin: 0px;
2100     padding: 0px;
2101 }
2102 .common-full-pad {
2103     clear: both;
2104     height: 15px;
2105 }
2106 .alert { color: [% css_colors.text_alert %]; }
2107 .float-left {
2108     [% IF rtl == 't' -%]
2109     float: right;
2110     [% ELSE -%]
2111     float: left;
2112     [% END -%]
2113 }
2114 .float-right {
2115     [% IF rtl == 't' -%]
2116     float: left;
2117     [% ELSE -%]
2118     float: right;
2119     [% END -%]
2120 }
2121
2122 .saved-searches-header { width: 100%; font-weight: bold; font-size: [% css_fonts.size_bigger %]; }
2123 .saved-searches-header .button {
2124     [% IF rtl == 't' -%]
2125     float: left;
2126     [% ELSE -%]
2127     float: right;
2128     width: 28px;
2129     [% END -%]
2130 }
2131 .saved-searches-header .text {
2132     [% IF rtl == 't' -%]
2133     float: right;
2134     padding-left: 1em;
2135     [% ELSE -%]
2136     float: left;
2137     padding-right: 1em;
2138     [% END -%]
2139     margin: 0.5ex 0;
2140 }
2141 .saved-searches-header {font-weight: bold; font-size: [% css_fonts.size_bigger %]; }
2142 .saved-searches { border-bottom: 1px solid [% css_colors.accent_medium %]; padding-right: 1em; }
2143 #staff-saved-search { /* wraps .saved-searches-header and .saved-searches on the record page */
2144     [% IF rtl == 't' -%]
2145     border-left: 1px solid [% css_colors.accent_darker %];
2146     [% ELSE -%]
2147     border-right: 1px solid [% css_colors.accent_darker %];
2148     [% END -%]
2149 }
2150 .result_item_circulated {
2151     padding-top: 4px;
2152 }
2153
2154 .result_item_circulated span {
2155     position: relative;
2156     top:-3px;
2157     [% IF rtl == 't' -%]
2158     right: 3px;
2159     [% ELSE -%]
2160     left:3px;
2161     [% END -%]
2162 }
2163
2164 #search-only-bookbag-container { margin: 2ex 0; font-weight: bold; }
2165 #result-bookbag-heading { text-align: center; margin: 2ex; }
2166
2167 .result-bookbag-name { font-size: [% css_fonts.size_bigger %]; font-weight: bold; }
2168 .result-bookbag-description { font-size: [% css_fonts.size_bigger %]; font-style: italic; }
2169 .result-bookbag-item-note { font-style: italic; }
2170 .lowhits-bookbag-name { font-weight: bold; }
2171 .oils_AS { font-weight: bold; color: [% css_colors.text_match %]; }
2172 .oils_AS_match_term {
2173     [% IF rtl == 't' -%]
2174     text-align: right;
2175     [% ELSE -%]
2176     text-align: left;
2177     [% END -%]
2178     color: [% css_colors.text %];
2179 }
2180 .oils_AS_match_field {
2181     font-size: [% css_fonts.size_smallest %]; padding: 0.65em 0;
2182     [% IF rtl == 't' -%]
2183     text-align: left;
2184     [% ELSE -%]
2185     text-align: right;
2186     [% END -%]
2187     color: [% css_colors.accent_medium %];
2188 }
2189 table.result_holdings_table {
2190     margin-top: 1em;
2191     margin-bottom: 1em;
2192 }
2193 table.result_holdings_table thead tr {
2194     background: [% css_colors.table_heading %];
2195 }
2196 table.result_holdings_table thead tr th {
2197     font-weight: bold;
2198 }
2199 span.preflib {
2200     margin: 0 2em 0 2em;
2201 }
2202 a.preflib_change {
2203   vertical-align: super;
2204   font-size: [% css_fonts.size_smaller %];
2205   line-height: normal;
2206   text-decoration: none;
2207 }
2208 .rdetail-holding-group {
2209     [% IF rtl == 't' -%]
2210     margin-right: 1.5em;
2211     [% ELSE -%]
2212     margin-left: 1.5em;
2213     [% END -%]
2214 }
2215 .rdetail-holding-group span {
2216     [% IF rtl == 't' -%]
2217     margin-right: 1.5em;
2218     [% ELSE -%]
2219     margin-left: 1.5em;
2220     [% END -%]
2221 }
2222 .rdetail-holding-group .paging {
2223     [% IF rtl == 't' -%]
2224     margin-right: 1.5em;
2225     [% ELSE -%]
2226     margin-left: 1.5em;
2227     [% END -%]
2228 }
2229 #rdetail_deleted_exp {
2230     font-weight: bold;
2231     padding: 1em;
2232     margin: 1em;
2233     border: thick solid [% css_colors.border_alert %];
2234 }
2235
2236 #ac_tab_wrapper { width : 100%; }
2237 .ac_tab {
2238     [% IF rtl == 't' -%]
2239     float: right;
2240     padding-left: 10px;
2241     [% ELSE -%]
2242     float: left;
2243     padding-right: 10px;
2244     [% END -%]
2245     font-size: [% css_fonts.size_big %];
2246     padding: 5px;
2247     border: 1px solid [% css_colors.primary_offset %];
2248 }
2249 .ac_tab_selected { background-color: [% css_colors.primary_offset %]; }
2250 .ac_tab_selected a { color: [% css_colors.text_invert %]; }
2251 #ac_content { clear: both; width: 100%; margin-top: 10px; }
2252
2253 /* Popmenu styles used for making css menus. */
2254 .popmenu {
2255     margin: 0;
2256     padding: 0;
2257 }
2258 .popmenu li {
2259     list-style: none;
2260 }
2261 .popmenu li a {
2262     display: block;
2263     padding: 3px 5px;
2264 }
2265 .popmenu li ul {
2266     display: none; 
2267     width: 10em; /* Width to help Opera out */
2268     background-color: [% css_colors.primary %];
2269 }
2270 .popmenu li:hover ul {
2271     display: block;
2272     position: absolute;
2273     margin: 0;
2274     padding: 0;
2275     border-color: [% css_colors.border_dark %];
2276     border-width: 1px;
2277     border-style: solid;
2278 }
2279 .popmenu li:hover li {
2280     float: none;
2281 }
2282 .popmenu li:hover li a {
2283     background-color: [% css_colors.primary %]; 
2284     color: [% css_colors.accent_ultralight %];
2285 }
2286 .popmenu li li a:hover {
2287     background-color: [% css_colors.accent_ultralight %]; 
2288     color: [% css_colors.primary %];
2289 }
2290 /* Styles for the temporary list entry. */
2291 .popmenu li:hover li[class~="temporary"] a {
2292     background-color: [% css_colors.primary %]; 
2293     color: [% css_colors.accent_ultralight %];
2294 }
2295 .popmenu li li[class~="temporary"] a:hover {
2296     background-color: [% css_colors.accent_ultralight %]; 
2297     color: [% css_colors.primary %];
2298 }
2299 /* Styles for the default list entry. */
2300 .popmenu li:hover li[class~="default"] a {
2301     background-color: [% css_colors.primary %]; 
2302     color: [% css_colors.accent_ultralight %];
2303 }
2304 .popmenu li li[class~="default"] a:hover {
2305     background-color: [% css_colors.accent_ultralight %]; 
2306     color: [% css_colors.primary %];
2307 }
2308 /* Styles for the new list entry. */
2309 .popmenu li:hover li[class~="new"] a {
2310     background-color: [% css_colors.primary %]; 
2311     color: [% css_colors.accent_ultralight %];
2312 }
2313 .popmenu li li[class~="new"] a:hover {
2314     background-color: [% css_colors.accent_ultralight %]; 
2315     color: [% css_colors.primary %];
2316 }
2317 /* Style to add a divider on the menu. */
2318 .popmenu li li[class~="divider"] {
2319     border-bottom-width: 1px;
2320     border-bottom-color: [% css_colors.border_dark %];
2321     border-bottom-style: solid;
2322 }
2323     
2324 #locale_picker_form {
2325     [% IF rtl == 't' -%]
2326     float: left;
2327     border-left: thin [% css_colors.control %] solid;
2328     [% ELSE -%]
2329     float: right;
2330     border-right: thin [% css_colors.control %] solid;
2331     [% END -%]
2332     padding: 0.5em;
2333     margin-top: 2em;
2334 }
2335
2336 #locale_picker_form * {
2337     margin: 0;
2338     padding: 0;
2339     vertical-align: middle;
2340 }
2341
2342 #patron_usr_barcode_not_found {
2343     font-weight: bold; color: [% css_colors.text_alert %];
2344 }
2345
2346 .record_title {
2347     font-weight: bold;
2348 }
2349
2350 .record_author {
2351     font-style: italic;
2352 }
2353
2354 .password_message {
2355     padding-top: 1em;
2356     padding-bottom: 0.5em;
2357         font-style: italic;
2358 }
2359
2360 #maintenance_message {
2361     padding: 5px;
2362     width: 100%;
2363     background-color: [% css_colors.text_alert %];
2364     color: [% css_colors.text_invert %];
2365     text-align: center;
2366 }
2367
2368 #search-box > span {
2369     margin: 0 1em;
2370 }
2371 .browse-error {
2372     font-weight: bold;
2373     font-color: #c00;
2374 }
2375 .browse-result-sources, .browse-result-authority-bib-links {
2376     [% IF rtl == 't' -%]
2377     margin-right: 1em;
2378     [% ELSE -%]
2379     margin-left: 1em;
2380     [% END -%]
2381 }
2382 .browse-result-best-match {
2383     font-weight: bold;
2384 }
2385 .browse-pager {
2386     margin: 2ex 0;
2387 }
2388 .browse-result-list {
2389     padding-bottom: 0.5ex;
2390 }
2391 .browse-shortcuts {
2392     font-size: [% css_fonts.size_bigger %];
2393 }
2394 .browse-result-authority-field-name {
2395     font-style: italic;
2396     [% IF rtl == 't' -%]
2397     margin-left: 1em;
2398     [% ELSE -%]
2399     margin-right: 1em;
2400     [% END -%]
2401 }
2402 .browse-leading-article-warning {
2403     font-style: italic;
2404     font-size: [% css_fonts.size_big %];
2405 }
2406 .browse-public-general-note {
2407     font-size: [% css_fonts.size_big %];
2408 }
2409 .browse-public-general-note-label { }
2410 .browse-public-general-note-institution {
2411     font-style: normal;
2412     font-weight: bold;
2413 }
2414 .browse-public-general-note-body {
2415     font-style: italic;
2416 }
2417
2418 .bib_peer_type {
2419     font-weight: bold;
2420 }
2421
2422 #main-content-register {
2423     [% IF rtl == 't' -%]
2424     margin-right: 40px;
2425     [% ELSE -%]
2426     margin-left: 40px;
2427     [% END -%]
2428     font-size: [% css_fonts.size_bigger %];
2429 }
2430
2431 #main-content-register table { 
2432     padding: 20px; 
2433     margin-top: 18px; 
2434     border-collapse: collapse;
2435 }
2436
2437 #main-content-register td {
2438     [% IF rtl == 't' -%]
2439     text-align: right;
2440     [% ELSE -%]
2441     text-align: left;
2442     [% END -%]
2443 }
2444
2445 #main-content-register td:not(:first-child) {
2446     [% IF rtl == 't' -%]
2447     padding-right: 20px;
2448     [% ELSE -%]
2449     padding-left: 20px;
2450     [% END -%]
2451 }
2452
2453 .patron-reg-invalid {
2454     font-weight: bold;
2455     color: red;
2456     [% IF rtl == 't' -%]
2457     padding-left: 10px;
2458     [% ELSE -%]
2459     padding-right: 10px;
2460     [% END -%]
2461 }
2462
2463 .result_footer_nav1 {
2464     clear: both;
2465 }
2466
2467 .small_view_only, #filter_hits, #refine_hits, #return_to_hits {
2468     display: none;
2469 }
2470
2471 .rdetail_authors_div {
2472     margin-bottom: 1em;
2473 }
2474
2475 #search_query_label, #search_qtype_label, #search_itype_label, #search_locg_label {
2476     white-space: nowrap;
2477     display: inline-block;
2478 }
2479
2480 .result_table_title_cell {
2481     padding-top: 4px;
2482     padding-bottom: 4px;
2483 }
2484
2485 .record_title {
2486     font-size: [% css_fonts.size_bigger %];
2487 }
2488
2489 /* styling for sms text call number */
2490 .sms_text pre {
2491     font-family: Arial, Helvetica, sans-serif;
2492     font-size: [% css_fonts.size_medium %];
2493     background: [% css_colors.accent_lightest %];
2494     padding: .5%;
2495     /* Allow text to wrap */
2496     white-space: pre-wrap;       /* css-3 */
2497     white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
2498     white-space: -pre-wrap;      /* Opera 4-6 */
2499     white-space: -o-pre-wrap;    /* Opera 7 */
2500     word-wrap: break-word;       /* Internet Explorer 5.5+ */
2501 }
2502
2503 .mobile_view {
2504    display:none;
2505 }
2506
2507 /* patron message center */
2508 #myopac_message_tbody {
2509     vertical-align: top;
2510 }
2511 .myopac_message_message {
2512     white-space: pre-wrap;
2513 }
2514
2515 @media only screen and (max-width: 800px) {
2516     .facet_sidebar_hidden, .result_block_hidden {
2517         display: none;
2518     }
2519     .facet_sidebar_visible, .result_block_visible {
2520         display: inline ! important;
2521     }
2522     #acct_select, #acct_prefs_select {
2523         display: inline-block;
2524     }
2525     #acct_tabs, #acct_prefs_tabs {
2526          display:none;
2527      }
2528     .radio-parts-selection { width: 90%; }
2529     #list_description, #list_create_name {
2530         width: 300px;
2531     }
2532 }
2533
2534 @media only screen and (max-width: 600px) {
2535     input, select {
2536         font-size: [% css_fonts.size_big %];
2537     }
2538     span .nav_arrow_fix {
2539         display: none;
2540     }
2541     #header {
2542         padding: 0px;
2543         margin: 0px;
2544     }
2545     #homesearch_main_logo img {
2546         width:75%;
2547     }
2548     #format_selector {
2549         display:none;
2550     }
2551     #your-acct-login {
2552         padding: 0px;
2553         padding-top: 5px;
2554     }
2555     #your-acct-login a {
2556         margin: 0px;
2557         padding: 5px;
2558     }
2559     #topnav_logo {
2560         margin: 0;
2561     }
2562     #topnav_logo img {
2563         width: 200px;
2564     }
2565     #locale_picker_form {
2566         display: none;
2567     }
2568     #gold-links-holder {
2569         display: none;
2570     }
2571     #simple-detail-view-links {
2572         display: none;
2573     }
2574     #acct_tabs a, #acct_fines_tabs a {
2575        [% IF rtl == 't' -%]
2576        -moz-border-radius: 6px 0px 0px 6px;
2577        border-radius: 6px 0px 0px 6px;
2578        margin: 0px 0px 0px 5px;
2579        [% ELSE -%]
2580        -moz-border-radius: 6px 6px 0px 0px;
2581        border-radius: 6px 6px 0px 0px;
2582        margin: 0px 5px 0px 0px;
2583        [% END -%]
2584        padding: 2px 4px 3px 4px;
2585        font-size: [% css_fonts.size_base %];
2586     }
2587     .bookbag-controls-title-block {
2588         clear:left;
2589         width:90%;
2590     }
2591     .bookbag-controls-button-block {
2592         clear:left;
2593         width;90%;
2594     }
2595     .bookbag-specific {
2596         margin-left: 0px;
2597     }
2598     .bookbag-specific div.sort {
2599         float: left;
2600         width: 95%;
2601         margin: 5px 0px 5px 0px;
2602         text-align: left;
2603         border: 1px #ccc solid;
2604         padding:5px;
2605     }
2606     .bookbag-specific div.meta {
2607         float: left;
2608         width: 95%;
2609         margin-left:0px;
2610         margin-bottom:5px;
2611         padding:5px;
2612         text-align: left;
2613     }
2614     #bbag-edit-name {
2615         float: left;
2616         width: 220px;
2617     }
2618     #bbag-edit-description {
2619         width: 220px;
2620         margin-top:5px;
2621     }
2622     .bbag-content {
2623         padding:5px;
2624         border:1px #ccc solid;
2625     }
2626     .bbag-action {
2627         margin-left:0px;
2628         margin-bottom:5px;
2629     }
2630     .bbag-action-field {
2631         width:230px;
2632     }
2633     .bookbag-specific div.sort select {
2634         width:180px;
2635     }
2636     .bookbag-specific td.list_checkbox {
2637         padding-left: 0px !important;
2638     }
2639     .bookbag-specific td.list_entry {
2640         min-width: 5em;
2641         padding-left: 5px !important;
2642     }
2643     .bbag-navigate-list {
2644         display: none;
2645     }
2646     .bbag-navigate-list-pages {
2647         text-align:right;
2648         float:right;
2649     }
2650     #dash_wrapper div {
2651         background: transparent;
2652         padding: 0px;
2653     }
2654     #dash_wrapper {
2655         position: static;
2656         top: auto;
2657     }
2658     #dash_wrapper .opac-button {
2659         top: 0px;
2660     }
2661     .small_view_only, #filter_hits {
2662         display: inline !important;
2663     }
2664     #dash_identity a {
2665         [% IF rtl == 't' -%]
2666         float:right;
2667         [% ELSE -%]
2668         float:left;
2669         [% END -%]
2670     }
2671     #dashboard, #dashboard_e {
2672         display: none;
2673     }
2674     #holds_box form blockquote {
2675         [% IF rtl == 't' -%]
2676         margin-right: 10px;
2677         margin-left: 2px;
2678         [% ELSE -%]
2679         margin-left: 10px;
2680         margin-right: 2px;
2681         [% END -%]
2682     }
2683     #holds_box form blockquote select {
2684         width: 100%;
2685     }
2686     #myopac_sum_fines_placehold {
2687         display:none;
2688     }
2689     #myopac_sum_fines {
2690         display: none;
2691     }
2692     #list_description, #list_create_name {
2693         width: 170px;
2694     }
2695     .results_header_lbl {
2696         display: none;
2697     }
2698     .results_header_nav1 span.h1 {
2699         display: none;
2700     }
2701     .preflib {
2702         display: none;
2703     }
2704     .start_end_links_span {
2705         display: block;
2706     }
2707     .invisible {
2708         display: none;
2709     }
2710     .result_table_pic_header {
2711         [% IF rtl == 't' -%]
2712         padding-right: 0px !important;
2713         padding-left: 5px;
2714         [% ELSE -%]
2715         padding-left: 0px !important;
2716         padding-right: 5px;
2717         [% END -%]
2718         width: 0px !important;
2719         margin: 0px;
2720     }
2721     .result_table_pic {
2722         width: 55px;
2723         padding: 0px;
2724         margin: 0px;
2725     }
2726     tr[name=results_isbn_tr], tr[name=results_phys_desc_tr], tr[name=results_pub_tr] strong, .result_count {
2727          display: none;
2728     }
2729     tr.result_table_title_cell[name=bib_cn_list] .result_holdings_table th:nth-child(4),
2730     tr.result_table_title_cell[name=bib_cn_list] .result_holdings_table td:nth-child(4) {
2731         display:none;
2732     }
2733     .results_info_table td {
2734         padding: 0px;
2735     }
2736     #results_header_bar {
2737         background-color: inherit;
2738     }
2739     .results_header_btns a {
2740         margin: 0.3em;
2741     }
2742     .adv_filter_results_hide {
2743         display: none;
2744     }
2745     .adv_filter_results_show {
2746         display: block;
2747     }
2748     .adv_filter_results_block_label {
2749         display: block;
2750     }
2751     .adv_filter_results_group_wrapper {
2752         display: block;
2753     }
2754     #main-content {
2755         margin: 0 1px;
2756     }
2757     #rdetails_status thead {
2758         display: none;
2759     }
2760     #rdetails_status tr {
2761         display: block;
2762         margin-top: 3px;
2763     }
2764     #rdetails_status td {
2765         display: block;
2766         padding: 1px;
2767     }
2768     .copy_details_row {
2769         background-color: [% css_colors.accent_lightest %];
2770     }
2771     .copy_details_offers_row {
2772         background-color: [% css_colors.accent_lightest %];
2773     }
2774     select#pickup_lib.search-wrapper-locg {
2775         width: 100%;
2776     }
2777     #search-wrapper #search-box {
2778         width: 85%;
2779         padding-top: 5px;
2780     }
2781     #main-content-home {
2782         padding: 0px;
2783         margin: 0px;
2784     }
2785     /* Make use of full width in mobile mode */
2786     .facet_box_wrapper .box_wrapper .box,
2787     .facet_template .facet,
2788     .facet_box_temp {
2789         width: inherit;
2790     }
2791     .facet_template .count {
2792         [% IF rtl == 't' -%]
2793         padding-right: 1em;
2794         [% ELSE -%]
2795         padding-left: 1em;
2796         [% END -%]
2797     }
2798     #facet_sidebar {
2799         margin-top: 0.5em;
2800     }
2801     #adv_search_parent {
2802         font-size: [% css_fonts.size_smaller %];
2803     }
2804     #adv_search_filters {                                                                                                                             
2805         position: relative;                                                                                                                           
2806         width: 300px;
2807     }
2808     #format_actions {
2809         [% IF rtl == 't' -%]
2810         float: right;
2811         [% ELSE -%]
2812         float: left;
2813         [% END -%]
2814     }
2815     .rdetail_aux_utils {
2816         padding: 0px;
2817         border: none;
2818     }
2819     .result_metadata {
2820         width: inherit;
2821     }
2822     div#rdetail_actions_div {
2823         float: none;
2824     }
2825     h2.rdetail_uris {
2826         clear: both;
2827     }
2828     #metarecord_population {
2829         overflow: hidden;
2830         width: 100%;
2831     }
2832     .metarecord_population_span_link {
2833     }
2834     .metarecord_population_item_lang {
2835         float: none;
2836     }
2837     .search_catalog_lbl {
2838         [% IF rtl == 't' -%]
2839         margin-right: 0;
2840         [% ELSE -%]
2841         margin-left: 0;
2842         [% END -%]
2843         white-space: nowrap;
2844     }
2845     .adv_search_catalog_lbl { 
2846         margin-top: 0;
2847         white-space: nowrap;
2848     }
2849     .browse_the_catalog_lbl {
2850         white-space: nowrap;
2851     }
2852     .mobile_hide {
2853         display: none;
2854     } 
2855     #dash_user {
2856         display: block;
2857         padding: 0.5em;
2858     }
2859     .dash_divider {
2860         display: none;
2861     }
2862     .dash_account_buttons {
2863         display: block;
2864     } 
2865     .searchbar { line-height: 1.5em; }
2866     #browse-controls { line-height: 1.5em; }
2867     #search_query_label, #search_qtype_label, #search_itype_label, #search_locg_label {
2868         display: block;
2869     }
2870     .bookshelf td {
2871         display: block;
2872         width: 100%;
2873     }
2874     .bookshelf table thead tr {
2875         display: block;
2876     }
2877     #lowhits_help { width: inherit; }
2878     #adv_search_tabs a{                                                                                                                           
2879         font-size: [% css_fonts.size_small %];
2880         margin: 2px 2px 0px 2px;
2881         padding: 2px 2px 5px 2px; 
2882         -moz-border-radius: 10px 0px 0px 0px;
2883         [% IF rtl == 't' -%]
2884         border-radius: 7px 0px 0px 7px;
2885         [% ELSE -%]
2886         border-radius: 7px 7px 0px 0px;
2887         [% END -%]
2888     }
2889     #adv_global_tbody td {
2890         border-bottom: thin solid [% css_colors.accent_light %];
2891     }
2892     #adv_global_addrow td {
2893         border-bottom: none;
2894     }
2895         /* Force table to not be like tables anymore */
2896         table#acct_checked_main_header thead tr th, table#acct_holds_main_header thead tr th, table#acct_checked_hist_header thead tr th, table#acct_holds_hist_header thead tr th, table#ebook_circs_main_table thead tr th, table#ebook_holds_main_table thead tr th {
2897                 display: block;
2898         }
2899         table#acct_checked_main_header tbody tr td, table#acct_holds_main_header tbody tr td, table#acct_checked_hist_header tbody tr td, table#acct_holds_hist_header tbody tr td, table#ebook_circs_main_table tbody tr td, table#ebook_holds_main_table tbody tr td {
2900                 display: block;
2901         }
2902
2903         /* Hide table headers (but not display: none;, for accessibility) */
2904         thead tr {
2905                 position: absolute;
2906                 top: -9999px;
2907                 [% IF rtl == 't' -%]
2908                 right: -9999px;
2909                 [% ELSE -%]
2910                 left: -9999px;
2911                 [% END -%]
2912         }
2913
2914         table#acct_checked_main_header, table#acct_holds_main_header, table#acct_checked_hist_header, table#acct_holds_hist_header, table#ebook_circs_main_table, table#ebook_holds_main_table {
2915                 width: 90%;
2916         }
2917
2918         table#acct_checked_main_header tr, table#acct_holds_main_header tr, table#acct_checked_hist_header tr { border: 1px solid #ddd; }
2919
2920         /* Holds history gets large white border to mimic header cell on other
2921            account screens that provide visual cue for next title. We should do
2922            the same for ebook tables too since we have no actions on those
2923            tables. If actions get added, we should move those tables out of
2924            here. */
2925
2926         table#acct_holds_hist_header tr, table#ebook_circs_main_table tr, table#ebook_holds_main_table tr { border-top: 25px solid #fff; }
2927
2928
2929         table#acct_checked_main_header td, table#acct_holds_main_header td, table#acct_checked_hist_header td, table#acct_holds_hist_header td, table#ebook_circs_main_table td, table#ebook_holds_main_table td {
2930                 /* Behave  like a "row" */
2931                 border: none;
2932                 border-bottom: 1px solid #eee;
2933                 position: relative;
2934                 [% IF rtl == 't' -%]
2935                 padding-right: 40%;
2936                 [% ELSE -%]
2937                 padding-left: 40%;
2938                 [% END -%]
2939         }
2940
2941          table#acct_checked_main_header td:before, table#acct_holds_main_header td:before, table#acct_checked_hist_header td:before, table#acct_holds_hist_header td:before, table#ebook_circs_main_table td:before, table#ebook_holds_main_table td:before {
2942                 /* Now like a table header */
2943                 position: absolute;
2944                 /* Top/left values mimic padding */
2945                 top: 2px;
2946                 width: 40%;
2947                 [% IF rtl == 't' -%]
2948                 right: 2px;
2949                 padding-left: 10px;
2950                 [% ELSE -%]
2951                 left: 2px;
2952                 padding-right: 10px;
2953                 [% END -%]
2954                 white-space: nowrap;
2955         }
2956
2957         table#acct_checked_main_header td:nth-of-type(1) { border-top: 5px solid #aaa; padding-top: 15px; background-color: #fff;}
2958         table#acct_checked_main_header td:nth-of-type(2):before { content: "[% l('Title') %]";}
2959         table#acct_checked_main_header td:nth-of-type(3):before { content: "[% l('Author') %]"; }
2960         table#acct_checked_main_header td:nth-of-type(4):before { content: "[% l('Renewals Left') %]"; }
2961         table#acct_checked_main_header td:nth-of-type(5):before { content: "[% l('Due Date') %]"; }
2962         table#acct_checked_main_header td:nth-of-type(6):before { content: "[% l('Barcode') %]"; }
2963         table#acct_checked_main_header td:nth-of-type(7):before { content: "[% l('Call number') %]"; }
2964
2965      table#acct_checked_hist_header td:nth-of-type(1) { border-top: 5px solid #aaa; padding-top: 15px; background-color: #fff;}
2966         table#acct_checked_hist_header td:nth-of-type(2):before { content: "[% l('Title') %]";}
2967         table#acct_checked_hist_header td:nth-of-type(3):before { content: "[% l('Author') %]"; }
2968         table#acct_checked_hist_header td:nth-of-type(4):before { content: "[% l('Checkout Date') %]"; }
2969         table#acct_checked_hist_header td:nth-of-type(5):before { content: "[% l('Due Date') %]"; }
2970         table#acct_checked_hist_header td:nth-of-type(6):before { content: "[% l('Date Returned') %]"; }
2971         table#acct_checked_hist_header td:nth-of-type(7):before { content: "[% l('Barcode') %]"; }
2972         table#acct_checked_hist_header td:nth-of-type(8):before { content: "[% l('Call number') %]"; }
2973
2974         table#acct_holds_main_header td:nth-of-type(1) { border-top: 5px solid #aaa; padding-top: 15px; background-color: #fff;}
2975         table#acct_holds_main_header td:nth-of-type(2):before { content: "[% l('Title') %]";}
2976         table#acct_holds_main_header td:nth-of-type(3):before { content: "[% l('Author') %]"; }
2977         table#acct_holds_main_header td:nth-of-type(4):before { content: "[% l('Format') %]"; }
2978         table#acct_holds_main_header td:nth-of-type(5):before { content: "[% l('Pickup Location') %]"; }
2979         table#acct_holds_main_header td:nth-of-type(6):before { content: "[% l('Cancel on') %]"; }
2980         table#acct_holds_main_header td:nth-of-type(7):before { content: "[% l('Status') %]"; }
2981         table#acct_holds_main_header td.hold_notes:before { content: "[% l('Notes') %]"; }
2982
2983         table#acct_holds_hist_header td:nth-of-type(1):before { content: "[% l('Title') %]";}
2984         table#acct_holds_hist_header td:nth-of-type(2):before { content: "[% l('Author') %]"; }
2985         table#acct_holds_hist_header td:nth-of-type(3):before { content: "[% l('Format') %]"; }
2986         table#acct_holds_hist_header td:nth-of-type(4):before { content: "[% l('Pickup Location') %]"; }
2987         table#acct_holds_hist_header td:nth-of-type(8):before { content: "[% l('Status') %]"; }
2988
2989         table#ebook_circs_main_table td:nth-of-type(1):before { content: "[% l('Title') %]"; }
2990         table#ebook_circs_main_table td:nth-of-type(2):before { content: "[% l('Author') %]"; }
2991         table#ebook_circs_main_table td:nth-of-type(3):before { content: "[% l('Due Date') %]"; }
2992         table#ebook_circs_main_table td:nth-of-type(4):before { content: "[% l('Actions') %]"; }
2993
2994         table#ebook_holds_main_table td:nth-of-type(1):before { content: "[% l('Title') %]"; }
2995         table#ebook_holds_main_table td:nth-of-type(2):before { content: "[% l('Author') %]"; }
2996         table#ebook_holds_main_table td:nth-of-type(3):before { content: "[% l('Due Date') %]"; }
2997         table#ebook_holds_main_table td:nth-of-type(4):before { content: "[% l('Actions') %]"; }
2998
2999
3000
3001        /*Want to see these in mobile ONLY */
3002        .mobile_view{
3003           display:block;
3004        }
3005
3006        .mobile_search_lbl_clr{
3007           color:[% css_colors.mobile_header_text %];
3008        }
3009 }
3010
3011
3012 /* 
3013 For text which is visible only to screen readers.
3014 Borrowed from http://getbootstrap.com/css/#helper-classes-screen-readers 
3015 See also http://webaim.org/techniques/css/invisiblecontent/
3016 */
3017 .sr-only {                                                                     
3018     position: absolute;                                                          
3019     width: 1px;                                                                  
3020     height: 1px;                                                                 
3021     padding: 0;                                                                  
3022     margin: -1px;                                                                
3023     overflow: hidden;                                                            
3024     clip: rect(0, 0, 0, 0);                                                      
3025     border: 0;                                                                   
3026 }
3027
3028 /* Make added rows in Expert Search have bold labels like the initial row */
3029 label[for*=expert_]
3030 {
3031     font-weight: bold;
3032 }  
3033
3034 .sort_deemphasize {
3035     font-weight: lighter;
3036     font-size: 70%;
3037 }
3038
3039 #results-page-depth-hint {
3040     text-align: center;
3041     font-style: italic;
3042 }
3043
3044 #clear-history-confirm {
3045   font-weight: bold;
3046   color: [% css_colors.text_badnews %]; 
3047   padding: 10px;
3048 }
3049
3050 /*Inline rules from other templates files*/
3051
3052 .td-left{
3053     [% IF rtl == 't' -%]
3054     text-align:right;
3055     [% ELSE -%]
3056     text-align:left;
3057     [% END -%]
3058     width:100%;
3059 }
3060 .td-search-left{
3061     [% IF rtl == 't' -%]
3062     text-align:right;
3063     [% ELSE -%]
3064     text-align:left;
3065     [% END -%]
3066 }
3067 #myopac_summary_div{padding:0px;}
3068 .div-left{
3069     [% IF rtl == 't' -%]
3070     float: right;
3071     [% ELSE -%]
3072     float: left;
3073     [% END -%]
3074 }
3075 .td-right{
3076     [% IF rtl == 't' -%]
3077     text-align:left;
3078     [% ELSE -%]
3079     text-align:right;
3080     [% END -%]
3081 }
3082 .login-form-left{
3083     [% IF rtl == 't' -%]
3084     float: right;
3085     margin-left: 40px;
3086     [% ELSE -%]
3087     float: left;
3088     margin-right: 40px;
3089     [% END -%]
3090     padding-bottom: 10px;
3091 }
3092 .hold-div{
3093     [% IF rtl == 't' -%]
3094     padding-right: 10px;
3095     [% ELSE -%]
3096     padding-left: 10px;
3097     [% END -%]
3098     padding-bottom: 15px;
3099 }
3100 .hold-span{font-weight: bold;}
3101 .padding-left-6{
3102     [% IF rtl == 't' -%]
3103     padding-right: 6px;
3104     [% ELSE -%]
3105     padding-left: 6px;
3106     [% END -%]
3107 }
3108 .padding-left-10{
3109     [% IF rtl == 't' -%]
3110     padding-right:10px;
3111     [% ELSE -%]
3112     padding-left:10px;
3113     [% END -%]
3114 }
3115 .padding-left-5{
3116     [% IF rtl == 't' -%]
3117     padding-right: 5px;
3118     [% ELSE -%]
3119     padding-left: 5px;
3120     [% END -%]
3121 }
3122
3123 /* Rules from metarecord_hold_filters.tt2 */
3124
3125 .metarecord_filters{
3126       padding: 5px;
3127       margin-top: 5px;
3128       border-bottom: 1px solid #333;
3129       border-top: 1px solid #333; }
3130 .metarecord_filter_container{
3131     [% IF rtl == 't' -%]
3132     float : right;
3133     margin-left: 10px;
3134     [% ELSE -%]
3135     float : left;
3136     margin-right: 10px;
3137     [% END -%]
3138 }
3139 .metarecord_filter_container select{padding: 2px;width: 13em; /* consistent w/ adv search selectors */}
3140 .metarecord_filter_header{padding-bottom: 5px;}