Bug 22351: SCSS conversion broke style on last checked out information
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / css / src / staff-global.scss
1 @import url("../../lib/yui/reset-fonts-grids.css") screen;
2
3 $font-main: Arial, Verdana, Helvetica, sans-serif;
4 $font-monospace: "Courier New", Courier, monospace;
5 $language-footer-min-height: 20px;
6
7 @mixin default-button {
8     background: linear-gradient(to bottom, #FFFFFF 0%, #F7F7F7 35%, #E0E0E0 100%);
9     border: 1px outset #999999;
10     border-left-color: #666;
11     border-top-color: #666;
12     color: #333333;
13     padding: .25em;
14 }
15
16 @mixin disabled-button {
17     background: #EEE none;
18     border: 1px solid #C0C0C0;
19     color: #999;
20 }
21
22 ::selection {
23     background: #538200;
24     color: #FFFFFF;
25 }
26
27 a {
28     &:link,
29     &:visited {
30         color: #004D99;
31         text-decoration: none;
32     }
33
34     &:hover,
35     &:active {
36         color: #538200;
37         text-decoration: none;
38     }
39
40     &:hover {
41         .term {
42             color: #FF9090;
43         }
44     }
45
46     &.btn {
47         &:link,
48         &:visited {
49             color: #333333;
50         }
51
52         &.btn-link {
53             &:link,
54             &:visited {
55                 color: #004D99;
56             }
57
58             &:hover {
59                 color: #538200;
60             }
61         }
62     }
63
64     &.cancel {
65         padding-left: 1em;
66     }
67
68     &.cartRemove {
69         color: #CC3333;
70         font-size: 90%;
71         margin: 0;
72         padding: 0;
73     }
74
75     &.close {
76         &:hover {
77             color: #538200;
78         }
79     }
80
81
82     &.csv {
83         background-image: url("../img/famfamfam/silk/page_white_excel.png");
84     }
85
86     &.dropdown-toggle {
87         white-space: nowrap;
88     }
89
90     &.incart {
91         color: #666;
92     }
93
94     &.popup {
95         background: transparent url("../img/pop-up-link.png") center right no-repeat;
96         padding-right: 15px;
97     }
98
99     &.disabled {
100         color: #999999;
101     }
102
103     &.document {
104         background-position: left middle;
105         background-repeat: no-repeat;
106         display: inline-block;
107         min-height: 20px;
108         padding-left: 20px;
109     }
110
111     &.highlight_toggle {
112         display: none;
113     }
114
115     .localimage {
116         img {
117             border: 1px solid #0000CC;
118             margin: 0 .5em;
119             padding: .3em;
120         }
121     }
122
123     &.pdf {
124         background-image: url("../img/famfamfam/silk/page_white_acrobat.png");
125     }
126
127     &.submit {
128         @include default-button;
129         display: inline-block;
130
131         &:active {
132             border: 1px inset #999999;
133         }
134
135         &:disabled {
136             @include disabled-button;
137         }
138     }
139
140     &.term {
141         text-decoration: underline;
142     }
143
144     &.xml {
145         background-image: url("../img/famfamfam/silk/page_white_code.png");
146     }
147
148 }
149
150 aside {
151     h5 {
152         font-size: 100%;
153         margin: .5em 0;
154     }
155
156     fieldset {
157         &.brief {
158             margin: 0;
159             padding: .4em .7em;
160
161             fieldset {
162                 margin: 0;
163                 padding: .5em 0;
164
165                 legend {
166                     font-size: 85%;
167                 }
168             }
169
170             li {
171                 &.checkbox {
172                     label {
173                         display: inline;
174                     }
175                 }
176
177                 &.dateinsert {
178                     label {
179                         display: inline;
180                     }
181
182                     span {
183                         &.label {
184                             display: inline;
185                         }
186                     }
187                 }
188
189                 &.radio {
190                     padding: .7em 0;
191
192                     input {
193                         padding: .3em 0;
194                     }
195
196                     label {
197                         display: inline;
198                     }
199
200                     span {
201                         &.label {
202                             display: inline;
203                         }
204                     }
205                 }
206             }
207
208             ol {
209                 font-size: 85%;
210                 margin: 0;
211                 padding: 0;
212             }
213
214             select,
215             [type="text"] {
216                 width: 100%;
217             }
218         }
219     }
220 }
221
222 button {
223     @include default-button;
224
225     &:active {
226         border: 1px inset #999999;
227     }
228
229     &:disabled {
230         @include disabled-button;
231     }
232
233     &.closebtn {
234         background: transparent;
235         border: 0;
236         cursor: pointer;
237         padding: 0;
238     }
239 }
240
241 main {
242     .yui-b {
243         fieldset {
244             &.brief {
245                 [type="text"],
246                 select {
247                     width: auto;
248                 }
249             }
250         }
251     }
252 }
253
254 table {
255     border-collapse: collapse;
256     border-right: 1px solid #BCBCBC;
257     border-top: 1px solid #BCBCBC;
258
259     .btn-group {
260         white-space: nowrap;
261
262         .btn {
263             display: inline-block;
264             float: none;
265         }
266     }
267
268     &.indexes {
269         td {
270             vertical-align: middle;
271         }
272     }
273
274     > caption {
275         span {
276             &.actions {
277                 font-size: 66%;
278                 font-weight: normal;
279                 margin: 0 .5em 0 0;
280             }
281         }
282     }
283
284     &.invis {
285         border: 0;
286
287         tr,
288         td {
289             border: 0;
290         }
291     }
292
293     + table {
294         margin-top: 1em;
295     }
296 }
297
298 td,
299 th {
300     border-bottom: 1px solid #BCBCBC;
301     border-left: 1px solid #BCBCBC;
302     padding: .2em .3em;
303 }
304
305 td {
306     background-color: #FFFFFF;
307     vertical-align: top;
308
309     &.actions {
310         white-space: nowrap;
311     }
312
313     &.borderless {
314         border: 0 none;
315         border-collapse: separate;
316     }
317
318     &.data {
319         font-family: $font-monospace;
320         text-align: right;
321     }
322
323     &.total {
324         text-align: right;
325     }
326
327     input {
328         &.approve {
329             background-color: #FFC;
330         }
331     }
332 }
333
334
335 th {
336     background-color: #E8E8E8;
337     font-weight: bold;
338     text-align: center;
339
340     &.data {
341         font-family: $font-monospace;
342         text-align: right;
343     }
344 }
345
346 body {
347     font-family: $font-main;
348     padding: 0 0 4em;
349     text-align: left;
350 }
351
352 br {
353     &.clear {
354         clear: both;
355         line-height: 1px;
356     }
357 }
358
359 form {
360     display: inline;
361
362     &.confirm {
363         display: block;
364         text-align: center;
365     }
366 }
367
368 h1 {
369     font-size: 161.6%;
370     font-weight: bold;
371
372     &#logo {
373         border: 0 none;
374         float: left;
375         margin: .75em .3em .75em .7em;
376         padding: 0;
377         width: 180px;
378     }
379 }
380
381 h2 {
382     font-size: 146.5%;
383     font-weight: bold;
384 }
385
386 h3 {
387     font-size: 131%;
388     font-weight: bold;
389 }
390
391 h4 {
392     font-size: 116%;
393     font-weight: bold;
394 }
395
396 h5 {
397     font-size: 100%;
398     font-weight: bold;
399 }
400
401 h6 {
402     font-size: 93%;
403     font-weight: bold;
404 }
405
406 h1,
407 h2,
408 h3,
409 h4,
410 h5,
411 h6 {
412     margin: .3em 0;
413 }
414
415 hr {
416     clear: both;
417     margin: 1em 0;
418 }
419
420 p {
421     margin: .5em 0;
422 }
423
424 strong {
425     font-weight: bold;
426
427     em {
428         font-style: italic;
429         font-weight: bold;
430     }
431
432     em & {
433         font-style: italic;
434         font-weight: bold;
435     }
436 }
437
438 em,
439 cite {
440     font-style: italic;
441 }
442
443 input,
444 textarea {
445     line-height: normal;
446     padding: 2px 4px;
447
448     &:focus {
449         border-color: #538200;
450         border-radius: 4px;
451         border-style: solid;
452     }
453 }
454
455 input {
456     &[type="checkbox"],
457     &[type="radio"] {
458         margin: 0;
459         vertical-align: middle;
460     }
461
462     &[type="submit"],
463     &[type="button"] {
464         &:active {
465             border: 1px inset #999999;
466         }
467     }
468
469     &[type="submit"],
470     &[type="reset"],
471     &[type="button"] {
472         @include default-button;
473
474         &:active {
475             border: 1px inset #999999;
476         }
477
478         &:disabled {
479             @include disabled-button;
480         }
481     }
482
483     &.alert {
484         background-color: #FFFF99;
485         border-color: #900;
486     }
487
488     &.hasDatepicker {
489         background-image: url("../img/famfamfam/silk/calendar.png");
490         background-position-x: right;
491         background-position-y: center;
492         background-repeat: no-repeat;
493         border-style: inset outset outset inset;
494         border-width: 1px;
495         padding-right: 18px;
496     }
497
498     &.submit {
499         @include default-button;
500
501         &:active {
502             border: 1px inset #999999;
503         }
504
505         &:disabled {
506             @include disabled-button;
507         }
508     }
509
510     &.warning {
511         background: #FFF url("../img/famfamfam/silk/error.png") no-repeat 4px center;
512         padding: .25em .25em .25em 25px;
513     }
514 }
515
516 label,
517 .label {
518     color: #000;
519     display: inline;
520     font-size: inherit;
521     font-weight: normal;
522     max-width: inherit;
523     padding: 0;
524     vertical-align: middle;
525
526     input {
527         &[type="checkbox"],
528         &[type="radio"],
529         &[type="checkbox"],
530         &[type="radio"] {
531             margin-top: 0;
532         }
533     }
534
535     &.circ_barcode {
536         font-size: 105%;
537         font-weight: bold;
538     }
539
540     // Permissions Labels
541     &.permissioncode {
542         font-style: italic;
543
544         &::before {
545             content: "(";
546         }
547
548         &::after {
549             content: ")";
550         }
551     }
552
553     &.required {
554         color: #C00;
555     }
556 }
557
558 .subfield-label {
559     font-style: italic;
560
561     span {
562         &.subfield-code {
563             font-weight: bold;
564         }
565     }
566 }
567
568 .members-update-table {
569     padding-top: 10px;
570 }
571
572 #navmenulist {
573     li {
574         border-bottom: 1px solid #EEE;
575         list-style-image: url("../img/arrow-bullet.gif");
576         padding: .2em 0;
577
578         a {
579             text-decoration: none;
580
581             &.current {
582                 font-weight: bold;
583             }
584         }
585     }
586 }
587
588 #doc,
589 #doc1,
590 #doc2,
591 #doc3 {
592     padding-top: 1em;
593 }
594
595 .main {
596     margin-bottom: $language-footer-min-height * 1.5;
597     margin-top: 1em;
598 }
599
600 #login_controls {
601     padding: .4em .5em;
602     position: absolute;
603     right: .5em;
604 }
605
606 ul {
607     padding-left: 1.1em;
608
609     li {
610         list-style-type: disc;
611
612         input {
613             &.submit {
614                 font-size: 87%;
615                 padding: 2px;
616             }
617         }
618
619         li {
620             list-style-type: circle;
621         }
622     }
623
624     .toolbar {
625         padding-left: 0;
626
627         button {
628             font-family: $font-main;
629             padding-bottom: 2px;
630         }
631
632         li {
633             display: inline;
634             list-style: none;
635         }
636     }
637
638     &.budget_hierarchy {
639         margin-left: 0;
640         padding-left: 0;
641
642         li {
643             display: inline;
644
645             &::after {
646                 content: " -> ";
647             }
648
649             &:first-child {
650                 &::after {
651                     content: "";
652                 }
653             }
654
655             &:last-child {
656                 &::after {
657                     content: "";
658                 }
659             }
660         }
661     }
662
663     // For Font Awesome icon bullets
664     &.fa-ul {
665         li {
666             list-style-type: none;
667         }
668     }
669
670     &.ui-tabs-nav {
671         li {
672             list-style: none;
673         }
674     }
675 }
676
677 ol {
678     padding-left: 1.5em;
679
680     li {
681         list-style: decimal;
682     }
683
684     &.bibliodetails {
685         float: left;
686         margin: 0 0 1em 1em;
687
688         li {
689             border-bottom: 1px solid #E8E8E8;
690             list-style-type: none;
691             padding: .1em;
692         }
693
694         span {
695             &.label {
696                 border-right: 1px solid #E8E8E8;
697                 float: left;
698                 font-weight: bold;
699                 margin-right: 1em;
700                 width: 12em;
701             }
702         }
703     }
704 }
705
706
707 .gradient {
708     background-image: linear-gradient(to bottom, rgb(230, 240, 242) 1%, rgb(255, 255, 255) 99%);
709     display: inline-block;
710     width: 100%;
711 }
712
713 .cart-controls {
714     border-top: 1px solid #E8E8E8;
715     padding: 7px 0;
716 }
717
718 #editions {
719     table,
720     td {
721         border: 0;
722     }
723 }
724
725 .highlighted-row,
726 .highlighted-row td {
727     background-color: #FFD000 !important;
728 }
729
730 .warned-row,
731 .warned-row td { background-color: #FF9000 !important }
732
733 .high-warned-row,
734 .high-warned-row td { background-color: #FF0000 !important }
735
736 tbody {
737     tr {
738         &:nth-child(odd) {
739             td {
740                 background-color: #F3F3F3;
741                 border: 1px solid #BCBCBC;
742                 border-right: 1px solid #BCBCBC;
743             }
744         }
745     }
746 }
747
748 .overdue,
749 .debit {
750     color: #CC0000;
751     font-weight: bold;
752 }
753
754 .strong {
755     font-weight: bold;
756 }
757
758 tr {
759     &.clickable {
760         cursor: pointer;
761     }
762
763     &.expired {
764         td {
765             color: #999999;
766         }
767     }
768
769     &.highlight {
770         td {
771             background-color: #F6F6F6;
772             border-color: #BCBCBC;
773         }
774
775         th {
776             &[scope="row"] {
777                 background-color: #DDDDDD;
778                 border-color: #BCBCBC;
779             }
780         }
781
782         table {
783             &.invis {
784                 td {
785                     border: 0;
786                 }
787             }
788         }
789     }
790
791     &.odd {
792         &.onissue {
793             td {
794                 background-color: #FFFFE1;
795             }
796         }
797     }
798
799     &.ok {
800         td {
801             background-color: #FFFFCC;
802         }
803
804         &:nth-child(odd) {
805             td {
806                 background-color: #FFFFCC;
807             }
808         }
809
810         &:nth-child(even) {
811             td {
812                 background-color: #FFFFCC;
813             }
814         }
815     }
816
817     &.onissue {
818         td {
819             background-color: #FFFFCC;
820         }
821     }
822
823     &.reserved {
824         td {
825             background-color: #EEFFD4;
826         }
827     }
828
829     &.transfered {
830         td {
831             background-color: #E8F0F6;
832         }
833     }
834
835     &.warn {
836         td {
837             background-color: #FF9090;
838         }
839
840         &:nth-child(odd) {
841             td {
842                 background-color: #FF9090;
843             }
844         }
845     }
846 }
847
848 .table_borrowers {
849     tr {
850         &:hover {
851             td {
852                 background-color: #FFFF99;
853             }
854         }
855     }
856 }
857
858 tfoot {
859     td {
860         background-color: #F3F3F3;
861         font-weight: bold;
862         vertical-align: middle;
863     }
864 }
865
866 caption {
867     color: #000;
868     font-size: 133.9%;
869     font-weight: bold;
870     margin: .3em 0;
871 }
872
873 .problem {
874     background-color: #FFFFCC;
875     color: #990000;
876     font-weight: bold;
877     line-height: 1.7em;
878 }
879
880 fieldset {
881     background-color: #F4F8F9;
882     border: 2px solid #B9D8D9;
883     border-radius: 5px;
884     margin: 1em 1em 1em 0;
885     padding: 1em;
886
887     + fieldset {
888         &.action {
889             padding-top: 20px;
890         }
891     }
892
893     &.lastchecked {
894         border-bottom-left-radius: 0;
895         border-bottom-right-radius: 0;
896         border-bottom-width: 0;
897         margin-bottom: 0;
898     }
899
900     .standard {
901         background-color:#f4f8f9 !important;
902     }
903
904     .contrast {
905         background-color:#F3F3F3 !important;
906     }
907
908     &.action {
909         background-color: transparent;
910         border: 0;
911         clear: both;
912         float: none;
913         margin: .9em 0 0;
914         padding: .4em;
915         width: auto;
916     }
917
918     &.brief {
919         border: 2px solid #B9D8D9;
920
921         div {
922             &.hint {
923                 margin-bottom: .4em;
924             }
925         }
926
927         label {
928             display: block;
929             font-weight: bold;
930             padding: .3em 0;
931
932             &.inline {
933                 display: inline;
934                 float: none;
935                 margin-left: 1em;
936                 width: auto;
937             }
938         }
939
940         li {
941             &[aria-disabled="true"] {
942                 color: #999;
943             }
944
945             &.inline {
946                 display: inline;
947                 float: none;
948                 margin-left: 1em;
949                 width: auto;
950             }
951
952             &.radio,
953             &.checkbox {
954                 label {
955                     display: inline;
956                 }
957             }
958         }
959
960         ol,
961         li {
962             list-style-type: none;
963         }
964
965         span {
966             .label {
967                 display: block;
968                 font-weight: bold;
969                 padding: .3em 0;
970                 text-align: left;
971             }
972         }
973     }
974
975     &.rows {
976         border: 2px solid #B9D8D9;
977         border-width: 1px;
978         clear: left;
979         float: left;
980         font-size: 90%;
981         margin: .9em 0 0;
982         padding: 0;
983         width: 100%;
984
985         fieldset {
986             background-color: transparent;
987             border-width: 1px;
988             margin: 1em;
989             padding: .3em;
990
991             &.action {
992                 padding: 1em;
993             }
994         }
995
996         &.inputnote {
997             clear: left;
998             float: left;
999             margin: 1em 0 0 11em;
1000         }
1001
1002
1003         &.left {
1004             label {
1005                 text-align: left;
1006                 width: 8em;
1007             }
1008
1009             li {
1010                 padding-bottom: .4em;
1011             }
1012
1013             span {
1014                 label {
1015                     text-align: left;
1016                     width: 8em;
1017                 }
1018             }
1019         }
1020
1021         &.ui-accordion-content {
1022             border-top-left-radius: 0;
1023             border-top-right-radius: 0;
1024             margin: 0;
1025             padding: 0;
1026             width: 100%;
1027
1028             table {
1029                 margin: 0;
1030             }
1031         }
1032
1033         &.unselected {
1034             background-color: #FFFFFF;
1035             border: 0;
1036             border-width: 0;
1037         }
1038
1039         caption {
1040             font-size: 120%;
1041         }
1042
1043         div {
1044             &.hint {
1045                 margin-bottom: .4em;
1046                 margin-left: 10.5em;
1047             }
1048         }
1049
1050         label {
1051             float: left;
1052             font-weight: bold;
1053             margin-right: 1em;
1054             text-align: right;
1055             width: 9em;
1056
1057             &.error {
1058                 float: none;
1059                 margin-left: 1em;
1060                 width: auto;
1061             }
1062
1063             &.inline {
1064                 display: inline;
1065                 float: none;
1066                 margin-left: 1em;
1067             }
1068
1069             &.radio {
1070                 display: inline-block;
1071                 margin: 0 1em 0 0;
1072                 padding: 0;
1073                 width: auto;
1074             }
1075
1076             &.yesno {
1077                 float: none;
1078                 width: auto;
1079             }
1080         }
1081
1082         legend {
1083             font-size: 110%;
1084             font-weight: bold;
1085             margin-left: 1em;
1086         }
1087
1088         li {
1089             clear: left;
1090             float: left;
1091             list-style-type: none;
1092             padding-bottom: 1em;
1093             width: 100%;
1094
1095             &[aria-disabled="true"] {
1096                 color: #999;
1097             }
1098
1099             &.radio {
1100                 padding-left: 9em;
1101                 width: auto;
1102
1103                 input + label {
1104                     margin-left: 0;
1105                     padding-left: 0;
1106                 }
1107
1108                 label {
1109                     float: none;
1110                     margin: 0 0 0 1em;
1111                     width: auto;
1112                 }
1113             }
1114
1115             input + label {
1116                 margin-left: 0;
1117                 padding-left: 0;
1118             }
1119         }
1120
1121         ol {
1122             list-style-type: none;
1123             padding: 1em 1em 0;
1124
1125             &.radio {
1126                 label {
1127                     float: none;
1128                     margin-left: 20px;
1129                     margin-right: 30px;
1130                     padding-left: 0;
1131                     vertical-align: middle;
1132                     width: auto;
1133
1134                     &.radio {
1135                         float: left;
1136                         margin-right: 1em;
1137                         margin-top: 0;
1138                         width: 9em;
1139                     }
1140                 }
1141
1142                 input {
1143                     &[type="checkbox"],
1144                     &[type="radio"] {
1145                         margin-left: -20px;
1146                     }
1147                 }
1148             }
1149         }
1150
1151         p {
1152             margin: 1em 0 1em 1em;
1153         }
1154
1155         span {
1156             &.label {
1157                 float: left;
1158                 font-weight: bold;
1159                 margin-right: 1em;
1160                 text-align: right;
1161                 width: 9em;
1162             }
1163         }
1164
1165         table {
1166             clear: both;
1167             font-size: 105%;
1168             margin: 1em 0 1em 1em;
1169
1170             &.mceListBox {
1171                 margin: 0;
1172             }
1173         }
1174
1175         td {
1176             label {
1177                 float: none;
1178                 font-weight: normal;
1179                 width: auto;
1180             }
1181         }
1182
1183         .inputnote {
1184             clear: left;
1185             float: left;
1186             margin: 1em 0 0 11em;
1187         }
1188
1189         + h3 {
1190             clear: both;
1191             padding-top: .5em;
1192         }
1193     }
1194 }
1195
1196 #multi_receiving {
1197     fieldset {
1198         &.rows {
1199             label {
1200                 width: 50%;
1201             }
1202         }
1203     }
1204 }
1205
1206 .yui-u {
1207     div {
1208         &.hint {
1209             margin-bottom: .4em;
1210         }
1211     }
1212
1213     fieldset {
1214         &.rows {
1215             div {
1216                 &.hint {
1217                     margin-left: 7.5em;
1218                 }
1219             }
1220
1221             label {
1222                 width: 10em;
1223             }
1224
1225             span {
1226                 &.label {
1227                     width: 10em;
1228                 }
1229             }
1230         }
1231     }
1232
1233     .rows {
1234         li {
1235             p {
1236                 label {
1237                     &.widelabel {
1238                         width: auto;
1239                     }
1240                 }
1241             }
1242         }
1243     }
1244 }
1245
1246 legend {
1247     background-color: #FFFFFF;
1248     border: 2px solid #B9D8D9;
1249     border-radius: 3px;
1250     font-size: 123.1%;
1251     font-weight: bold;
1252     padding: .2em .5em;
1253     width: auto;
1254 }
1255
1256 details {
1257     > summary {
1258         cursor: pointer;
1259
1260         &::before {
1261             content: "\f0da";
1262             display: inline-block;
1263             font-family: FontAwesome;
1264             width: 1em;
1265         }
1266
1267         &.checkouts-by-itemtype {
1268             li {
1269                 display: inline-block;
1270             }
1271         }
1272     }
1273 }
1274
1275 details[open] {
1276     > summary {
1277         &::before {
1278             content: "\f0d7";
1279         }
1280     }
1281 }
1282
1283
1284 #floating-save {
1285     background-color: rgba(185, 216, 217, .6);
1286     bottom: 3%;
1287     position: fixed;
1288     right: 1%;
1289     width: 150px;
1290 }
1291
1292 #breadcrumbs {
1293     background-color: #E6F0F2;
1294     clear: both;
1295     font-size: 90%;
1296     margin: 0;
1297     padding: .2em .5em .4em 10px;
1298 }
1299
1300 #header {
1301     &.navbar {
1302         margin-bottom: 0;
1303     }
1304
1305     &.navbar-default {
1306         background: #E6F0F2;
1307         border: 0;
1308         box-shadow: none;
1309     }
1310
1311     + #breadcrumbs {
1312         margin-top: 1em;
1313     }
1314
1315     > .container-fluid {
1316         padding: 0;
1317     }
1318 }
1319
1320 div {
1321     &.action {
1322         background-color: transparent;
1323         border: 0;
1324         clear: both;
1325         float: none;
1326         margin: .9em 0 0;
1327         padding: .4em;
1328         width: auto;
1329     }
1330
1331     .circmessage {
1332         margin-bottom: .3em;
1333         padding: 0 .4em .4em;
1334
1335         &:first-child {
1336             margin-top: 1em;
1337         }
1338     }
1339
1340     &.first {
1341         fieldset {
1342             margin-right: 0;
1343         }
1344     }
1345
1346     &.help {
1347         margin: .9em 0 0;
1348     }
1349
1350     &.justify {
1351         text-align: justify;
1352     }
1353
1354     &.message {
1355         background: linear-gradient(to bottom, #FFFFFF 0%, #F4F6FA 2%, #EAEEF5 23%, #E8EDF6 94%, #CDDBF2 100%);
1356         border: 1px solid #BCBCBC;
1357         text-align: center;
1358         width: 55%;
1359
1360         ul,
1361         h5 {
1362             padding-left: 25%;
1363             text-align: left;
1364         }
1365
1366         ul + h4 {
1367             margin-top: .7em;
1368         }
1369     }
1370
1371     &.note {
1372         background: linear-gradient(to bottom, #F4F6FA 0%, #E8EDF6 100%); // W3C
1373         border: 1px solid #BCBCBC;
1374         margin: .5em 0;
1375         padding: .5em;
1376
1377         i {
1378             &.fa-exclamation {
1379                 color: #CC0000;
1380                 font-style: italic;
1381                 padding: 0 .3em;
1382             }
1383         }
1384     }
1385
1386     // Tools > automatic_item_modification_by_age
1387     &.rules {
1388         display: block;
1389     }
1390
1391     &[class$="_table_controls"] {
1392         padding: .7em 0;
1393     }
1394
1395     &.results {
1396         padding: .7em 0;
1397     }
1398
1399     &.rule {
1400         background-color: #F4F8F9;
1401         border: 2px solid #B9D8D9;
1402         border-radius: 5px;
1403         margin: .3em;
1404         padding: .3em;
1405     }
1406
1407     &.lastchecked {
1408         border: 2px solid #BCDB89;
1409         border-bottom-left-radius: 5px;
1410         border-bottom-right-radius: 5px;
1411         padding: .2em 1em;
1412     }
1413
1414     &.listgroup {
1415         clear: left;
1416
1417         h4 {
1418             font-style: italic;
1419
1420             a {
1421                 font-size: 80%;
1422             }
1423         }
1424
1425         input {
1426             font-size: 80%;
1427         }
1428     }
1429
1430     &.sysprefs {
1431         h3 {
1432             margin: .2em 0 .2em .4em;
1433         }
1434
1435         dl {
1436             margin-left: 1.5em;
1437         }
1438
1439         &.hint {
1440             float: right;
1441             margin: .7em;
1442             padding: .5em;
1443             width: 25%;
1444         }
1445     }
1446
1447     &.rows {
1448         clear: left;
1449         float: left;
1450         margin: 0;
1451         padding: 0;
1452         width: 100%;
1453
1454         + div {
1455             &.rows {
1456                 margin-top: .6em;
1457             }
1458         }
1459
1460         li {
1461             border-bottom: 1px solid #EEE;
1462             clear: left;
1463             float: left;
1464             list-style-type: none;
1465             padding: .275em;
1466             width: 100%;
1467         }
1468
1469         ol {
1470             list-style-type: none;
1471             padding: .5em 1em 0 0;
1472
1473             li {
1474                 li {
1475                     border-bottom: 0;
1476                 }
1477             }
1478         }
1479
1480         p {
1481             margin-left: 10em;
1482         }
1483
1484         span {
1485             &.label {
1486                 float: left;
1487                 font-weight: bold;
1488                 margin-right: 1em;
1489                 padding-top: 0;
1490                 text-align: left;
1491                 width: 9em;
1492             }
1493         }
1494     }
1495
1496     &.pages {
1497         margin: .5em 0;
1498
1499         a {
1500             font-weight: bold;
1501             padding: 1px 5px;
1502             text-decoration: none;
1503
1504             &:link,
1505             &:visited {
1506                 background-color: #EEEEEE;
1507                 color: #3366CC;
1508             }
1509
1510             &:hover,
1511             &:active {
1512                 background-color: #FFC;
1513             }
1514         }
1515
1516         .current,
1517         .currentPage {
1518             background-color: #E6FCB7;
1519             color: #666;
1520             font-weight: bold;
1521             padding: 1px 5px;
1522         }
1523
1524         .inactive {
1525             background-color: #F3F3F3;
1526             color: #BCBCBC;
1527             font-weight: bold;
1528             padding: 1px 5px;
1529         }
1530     }
1531
1532     .browse {
1533         margin: .5em 0;
1534     }
1535 }
1536
1537 #header_search {
1538     background-position: .5em .5em;
1539     background-repeat: no-repeat;
1540     float: left;
1541     margin: .3em 0 .5em;
1542
1543     input {
1544         font-size: 1.3em;
1545
1546         &.submit {
1547             font-size: 1em;
1548         }
1549     }
1550
1551     div {
1552         &.residentsearch {
1553             border: 0;
1554             border-bottom: 1px solid #85CA11;
1555             padding: 0 0 .2em;
1556         }
1557     }
1558
1559     ul {
1560         &.ui-tabs-nav {
1561             margin-left: 1em;
1562             padding-top: 0;
1563
1564             li {
1565                 &.ui-state-default {
1566                     background: transparent none;
1567                     border: 0;
1568                     top: 0;
1569
1570                     a {
1571                         padding: .3em .6em;
1572                     }
1573                 }
1574
1575                 &.ui-tabs-active {
1576                     background-color: #FFFFF1;
1577                     border: 1px solid #85CA11;
1578                     border-top-width: 0;
1579                     top: -2px;
1580
1581                     a {
1582                         text-decoration: none;
1583                     }
1584                 }
1585             }
1586         }
1587     }
1588
1589     .ui-corner-top {
1590         border-radius: 0 0 4px 4px;
1591     }
1592
1593     > div,
1594     > ul {
1595         display: none;
1596
1597         > li {
1598             display: none;
1599
1600             &:first-of-type {
1601                 display: block;
1602             }
1603         }
1604
1605         &:first-of-type {
1606             display: block;
1607         }
1608     }
1609 }
1610
1611
1612 .head-searchbox {
1613     width: 30em;
1614 }
1615
1616 #reserves,
1617 #checkouts {
1618     border: 1px solid #B9D8D9;
1619     padding: 1em;
1620 }
1621
1622 .tip {
1623     color: #808080;
1624     font-size: 93%;
1625 }
1626
1627 .single-line {
1628     white-space: nowrap;
1629 }
1630
1631 .ex {
1632     font-family: $font-monospace;
1633     font-weight: bold;
1634 }
1635
1636 dt {
1637     font-weight: bold;
1638 }
1639
1640 dd {
1641     font-size: 90%;
1642     font-weight: normal;
1643     padding: .2em;
1644     text-indent: 2.5em;
1645 }
1646
1647 #toolbar,
1648 .btn-toolbar {
1649     background-color: #EDF4F6;
1650     border: 1px solid #E6F0F2;
1651     border-radius: 5px 5px 0 0;
1652     margin: 0;
1653     padding: 5px;
1654
1655     .dropdown-menu {
1656         border-top-width: 1px;
1657         font-size: 13px;
1658     }
1659
1660     &.floating {
1661         border-radius: 0;
1662         margin-top: 0;
1663     }
1664 }
1665
1666 #disabled {
1667     a {
1668         color: #999;
1669
1670         &:hover {
1671             color: #999;
1672         }
1673     }
1674 }
1675
1676 #disabled2 {
1677     a {
1678         color: #999;
1679     }
1680 }
1681
1682
1683 .patroninfo {
1684     margin-top: -.5em;
1685
1686     h5 {
1687         border-right: 1px solid #B9D8D9;
1688         margin-bottom: 0;
1689         padding-bottom: .5em;
1690         padding-left: -.5em;
1691         padding-top: .3em;
1692
1693         &:empty {
1694             border-right: 0;
1695         }
1696     }
1697
1698     ul {
1699         border: 0;
1700         border-bottom: 0;
1701         border-right: 1px solid #B9D8D9;
1702         border-top: 0;
1703         margin: 0;
1704         padding: 0;
1705
1706         li {
1707             list-style-type: none;
1708             margin: 0;
1709         }
1710     }
1711
1712     + #menu {
1713         margin-right: 0;
1714     }
1715
1716     > div {
1717         border-right: 1px solid #B9D8D9;
1718         width: 100%;
1719     }
1720 }
1721
1722 /* Patron image */
1723
1724 .patronimage-container {
1725     padding: .2em;
1726     position: relative;
1727
1728     &:hover {
1729         .patronimage {
1730             opacity: .8;
1731         }
1732
1733         .patronimage-controls {
1734             opacity: 1;
1735         }
1736     }
1737 }
1738
1739 .patronimage {
1740     border: 1px solid #EEE;
1741     display: block;
1742     max-width: 160px;
1743     margin: auto;
1744     opacity: 1;
1745     transition: .2s ease;
1746
1747     &.empty {
1748         background: transparent url( "../img/patron-blank.min.svg" ) center 5px no-repeat;
1749         height: 125px;
1750         padding: 0;
1751         width: 80%;
1752     }
1753 }
1754
1755 .patronimage-controls {
1756     left: 50%;
1757     opacity: 0;
1758     position: absolute;
1759     text-align: center;
1760     top: 80%;
1761     transform: translate( -50%, -50% );
1762     transition: .5s ease;
1763 }
1764
1765 .patronimage-control {
1766     padding: 1em 2em;
1767  }
1768
1769 .patronviews {
1770     border-right: 1px solid #000;
1771     border-top: 1px solid #000;
1772     margin-bottom: .5em;
1773     padding: .5em 0;
1774 }
1775
1776 .column-tool {
1777     font-size: 80%;
1778 }
1779
1780 .hint {
1781     color: #666;
1782     font-size: 95%;
1783 }
1784
1785 .yui-b {
1786     fieldset {
1787         &.brief {
1788             padding: .4em .7em;
1789
1790             fieldset {
1791                 margin: 0 .3em;
1792                 padding: .5em;
1793
1794                 legend {
1795                     font-size: 85%;
1796                 }
1797             }
1798
1799             li {
1800
1801                 &.checkbox {
1802
1803                     input {
1804                         #tools_holidays & {
1805                             margin-left: 0;
1806                         }
1807                     }
1808
1809                     label {
1810                         display: inline;
1811
1812                         #tools_holidays & {
1813                             margin-left: 20px;
1814                         }
1815                     }
1816                 }
1817
1818                 &.dateinsert {
1819                     label {
1820                         display: inline;
1821                     }
1822
1823                     span {
1824                         &.label {
1825                             display: inline;
1826                         }
1827                     }
1828                 }
1829
1830                 &.radio {
1831                     padding: .7em 0;
1832
1833                     input {
1834                         padding: .3em 0;
1835
1836                         #tools_holidays & {
1837                             margin-left: 0;
1838                         }
1839                     }
1840
1841                     label {
1842                         display: inline;
1843
1844                         #tools_holidays & {
1845                             margin-left: 20px;
1846                         }
1847
1848                         span {
1849                             &.label {
1850                                 display: inline;
1851                             }
1852                         }
1853                     }
1854                 }
1855             }
1856
1857             ol {
1858                 font-size: 85%;
1859                 margin: 0;
1860                 padding: 0;
1861             }
1862
1863             select,
1864             [type=text] {
1865                 width: 100%;
1866             }
1867         }
1868
1869         &.rows {
1870             div {
1871                 &.hint {
1872                     margin-left: 10.5em;
1873                 }
1874             }
1875
1876             td {
1877                 label {
1878                     width: auto;
1879                 }
1880
1881                 span {
1882                     &.label {
1883                         width: auto;
1884                     }
1885                 }
1886             }
1887         }
1888     }
1889 }
1890
1891 #yui-main {
1892     .yui-b {
1893         fieldset {
1894             &.brief {
1895                 select,
1896                 [type=text] {
1897                     width: auto;
1898                 }
1899             }
1900         }
1901     }
1902 }
1903
1904 .btn-toolbar {
1905     fieldset {
1906         &.action {
1907             margin-top: 0;
1908         }
1909     }
1910
1911     .dropdown-menu {
1912         font-size: 13px;
1913     }
1914 }
1915
1916 .rows {
1917     .label {
1918         white-space: normal;
1919     }
1920 }
1921
1922 .checkedout {
1923     color: #999999;
1924     font-style: italic;
1925 }
1926
1927 .subfield_not_filled {
1928     background-color: #FFFF99;
1929 }
1930
1931 .content_hidden {
1932     display: none;
1933     visibility: hidden; // you propably don't need to change this one
1934 }
1935
1936 // the property for the displayed tab
1937 .content_visible {
1938     display: block;
1939     visibility: visible; // you propably don't need to change this one
1940 }
1941
1942 #z3950searcht {
1943     table {
1944         border: 0;
1945         padding: 20px;
1946     }
1947 }
1948
1949 #z3950_search_targets {
1950     height: 338px;
1951     overflow-y: auto;
1952 }
1953
1954 #z3950_search_targets_acq {
1955     height: 308px;
1956     overflow-y: auto;
1957 }
1958
1959 .z3950checks {
1960     padding-left: 1em;
1961 }
1962
1963 .error {
1964     color: #CC0000;
1965 }
1966
1967 .status_ok {
1968     background-color: #90EE90;
1969 }
1970
1971 .status_warn {
1972     background-color: #FF0000;
1973 }
1974
1975 // Font Awesome icons
1976 i {
1977     &.error {
1978         color: #CC0000;
1979     }
1980
1981     &.success {
1982         color: #008000;
1983     }
1984
1985     &.warn {
1986         color: #FFA500;
1987     }
1988 }
1989
1990 .checkout-setting {
1991     font-size: 85%;
1992     padding-top: .3em;
1993
1994     input {
1995         vertical-align: middle;
1996     }
1997
1998     label {
1999         font-size: inherit;
2000         font-weight: normal;
2001     }
2002 }
2003
2004 .checkout-settings {
2005     background-color: #F4F8F9;
2006     border-radius: 0;
2007     border-top: 2px solid #B9D8D9;
2008     display: none;
2009     margin-left: -1em;
2010     margin-right: -1em;
2011     margin-top: 1em;
2012     padding: 1em 1em 0;
2013 }
2014
2015 #show-checkout-settings {
2016     margin-top: .5em;
2017 }
2018
2019 .blocker {
2020     color: #990000;
2021 }
2022
2023 .inaccurate-item-statuses {
2024     color: #990000;
2025 }
2026
2027 .circmessage {
2028     li {
2029         list-style: url("../img/arrow-bullet.gif");
2030         margin-bottom: .2em;
2031     }
2032 }
2033
2034 #circ_needsconfirmation {
2035     margin: auto;
2036 }
2037
2038 .dialog {
2039     border: 1px solid #BCBCBC;
2040     border-radius: 2px;
2041     margin: 1em auto;
2042     padding: .5em;
2043     text-align: center;
2044     width: 65%;
2045
2046     a {
2047         &.approve {
2048             display: inline-block;
2049         }
2050     }
2051
2052     button,
2053     a.approve {
2054         background: #FFF none;
2055         border: 1px outset #999999;
2056         border-left-color: #666;
2057         border-top-color: #666;
2058         margin: .4em;
2059         padding: .4em;
2060         white-space: pre-line;
2061
2062         &:active {
2063             border: 1px inset #999999;
2064         }
2065
2066         &:hover {
2067             background-color: #FFC;
2068         }
2069     }
2070
2071     h2,
2072     h3,
2073     h4 {
2074         margin: auto;
2075         text-align: center;
2076     }
2077
2078     input {
2079         background-color: #FFFFFF;
2080         border: 1px solid #BCBCBC;
2081         margin: .4em;
2082         padding: .4em .4em .4em 25px;
2083
2084         &:hover {
2085             background-color: #FFC;
2086         }
2087
2088         &[type="submit"] {
2089             background: #FFF none;
2090         }
2091     }
2092
2093     li {
2094         list-style-position: inside;
2095     }
2096
2097     table {
2098         margin: .5em auto;
2099
2100         td {
2101             text-align: left;
2102         }
2103
2104         th {
2105             text-align: right;
2106         }
2107     }
2108 }
2109
2110 .alert {
2111     background: linear-gradient(to bottom, #FEF8D3 0%, #FFEC91 9%, #FFED87 89%, #F9DC00 100%);
2112     border: 1px solid #E0C726;
2113     color: inherit;
2114     text-align: center;
2115     text-shadow: none;
2116
2117     strong {
2118         color: #900;
2119     }
2120
2121     // Redefine a new style for Bootstrap's class "close" since we use that already
2122     // Use <a class="closebtn" href="#">&times;</a>
2123     .closebtn {
2124         line-height: 20px;
2125         position: relative;
2126         right: -21px;
2127         top: -2px;
2128     }
2129 }
2130
2131 .approve,
2132 .success {
2133     i {
2134         &.fa {
2135             color: #008000;
2136         }
2137     }
2138 }
2139
2140 .deny {
2141     i {
2142         &.fa {
2143             color: #CC0000;
2144         }
2145     }
2146 }
2147
2148 .new {
2149     i {
2150         &.fa {
2151             color: #425FAF;
2152         }
2153     }
2154 }
2155
2156 .accesskey {
2157     text-decoration: underline;
2158 }
2159
2160 .missing {
2161     background-color: #FFFFCC;
2162 }
2163
2164 .term {
2165     background-color: #FFC;
2166     color: #990000;
2167 }
2168
2169 // style for shelving location in catalogsearch
2170 .shelvingloc {
2171     display: block;
2172     font-style: italic;
2173 }
2174
2175 #menu {
2176     border-right: 1px solid #B9D8D9;
2177     margin-right: .5em;
2178     padding-bottom: 2em;
2179     padding-top: 1em;
2180
2181     li {
2182         a {
2183             background: linear-gradient(to bottom, #E8F0F6 0%, #E8F0F6 96%, #C1C1C1 100%);
2184             border: 1px solid #B9D8D9;
2185             border-bottom-left-radius: 5px;
2186             border-top-left-radius: 5px;
2187             display: block;
2188             font-size: 111%;
2189             margin: .5em 0;
2190             margin-right: -1px;
2191             padding: .4em .3em;
2192             text-decoration: none;
2193
2194             &:hover {
2195                 background: linear-gradient(to bottom, #FAFAFA 0%, #FFFFFF 96%, #E6E6E6 97%, #CCCCCC 99%, #C1C1C1 100%);
2196                 border-bottom: 1px solid #85CA11;
2197                 border-left: 1px solid #85CA11;
2198                 border-top: 1px solid #85CA11;
2199             }
2200         }
2201
2202         &.active {
2203             a {
2204                 background-color: #FFFFFF;
2205                 background-image: none;
2206                 border-bottom: 1px solid #85CA11;
2207                 border-left: 1px solid #85CA11;
2208                 border-right: 0;
2209                 border-top: 1px solid #85CA11;
2210                 color: #000000;
2211                 font-weight: bold;
2212
2213                 &:hover {
2214                     background-color: #FFFFFF;
2215                     color: #538200;
2216                 }
2217             }
2218         }
2219     }
2220
2221     ul {
2222         li {
2223             list-style-type: none;
2224         }
2225     }
2226 }
2227
2228
2229 #logo {
2230     background: transparent url("../img/koha-logo-medium.png") no-repeat scroll 0%;
2231     margin: .75em .3em .75em .7em;
2232
2233     a {
2234         border: 0;
2235         cursor: pointer;
2236         display: block;
2237         height: 0 !important;
2238         margin: 0;
2239         overflow: hidden;
2240         padding: 44px 0 0;
2241         text-decoration: none;
2242         width: 180px;
2243     }
2244 }
2245
2246 #closewindow {
2247     margin-top: 2em;
2248     text-align: center;
2249
2250     a {
2251         font-weight: bold;
2252     }
2253 }
2254
2255 .barcode {
2256     font-size: 200%;
2257     vertical-align: middle;
2258 }
2259
2260 li {
2261     &.email {
2262         overflow: hidden;
2263         text-overflow: ellipsis;
2264         white-space: nowrap;
2265     }
2266 }
2267
2268 .patronbriefinfo {
2269     li {
2270         &.email {
2271             font-size: 87%;
2272             padding: 0 10px 0 0;
2273             width: 90%;
2274         }
2275     }
2276 }
2277
2278 .empty {
2279     color: #CCC;
2280 }
2281
2282 .address {
2283     font-size: 110%;
2284
2285     li {
2286         list-style-type: none;
2287     }
2288 }
2289
2290 .title {
2291     font-size: 105%;
2292     font-weight: bold;
2293 }
2294
2295 .hold {
2296     float: right;
2297     font-size: 90%;
2298     margin: 0;
2299 }
2300
2301 .thumbnail {
2302     display: block;
2303     margin: auto;
2304
2305     > li {
2306         list-style-type: none;
2307     }
2308 }
2309
2310 #searchresults {
2311     ul {
2312         li {
2313             clear: left;
2314             font-size: 90%;
2315             list-style: url("../img/item-bullet.gif");
2316             padding: .2em 0;
2317
2318             img {
2319                 float: left;
2320                 margin: 3px 5px 3px -5px;
2321             }
2322         }
2323
2324         span {
2325             &.status {
2326                 clear: left;
2327                 color: #900;
2328                 display: block;
2329             }
2330
2331             &.unavailable {
2332                 clear: left;
2333                 display: block;
2334             }
2335         }
2336
2337         table {
2338             td {
2339                 vertical-align: top;
2340             }
2341         }
2342     }
2343
2344     &.unavailability {
2345         strong {
2346             display: block;
2347         }
2348     }
2349 }
2350
2351 #searchheader {
2352     background-color: #E6F0F2;
2353     border: 1px solid #B9D8D9;
2354     border-radius: 5px 5px 0 0;
2355     font-size: 80%;
2356     margin: 0 0 .5em -1px;
2357     padding: .4em 0 .4em 1em;
2358
2359     &.floating {
2360         border-radius: 0;
2361         margin-top: 0;
2362     }
2363
2364     .btn-group {
2365         > .btn {
2366             &:first-child {
2367                 margin-left: .7em;
2368             }
2369         }
2370     }
2371
2372     form {
2373         float: right;
2374         padding: 5px 5px 3px 0;
2375
2376         &.fz3950 {
2377             float: right;
2378             font-size: 125%;
2379             padding: 0 0 0 5em;
2380         }
2381
2382         &.fz3950bigrpad {
2383             float: right;
2384             font-size: 125%;
2385             padding: 5px 25em 0 0;
2386         }
2387     }
2388 }
2389
2390 #search-facets {
2391     border: 1px solid #B9D8D9;
2392     border-radius: 5px 5px 0 0;
2393
2394     h4 {
2395         background-color: #E6F0F2;
2396         border-bottom: 1px solid #B9D8D9;
2397         border-radius: 5px 5px 0 0;
2398         font-size: 90%;
2399         margin: 0;
2400         padding: .4em .2em;
2401         text-align: center;
2402     }
2403
2404     ul {
2405         margin: 0;
2406         padding: .3em;
2407
2408         li {
2409             font-weight: bold;
2410             list-style-type: none;
2411         }
2412     }
2413
2414     li {
2415         li {
2416             font-size: 85%;
2417             font-weight: normal;
2418             margin-bottom: 2px;
2419             padding: .1em .2em;
2420         }
2421
2422         &.showmore {
2423             font-weight: bold;
2424             text-indent: 1em;
2425         }
2426     }
2427 }
2428
2429 .facet-count {
2430     display: inline-block;
2431 }
2432
2433 #bookcoverimg {
2434     text-align: center;
2435 }
2436
2437 .searchhighlightblob {
2438     font-size: 75%;
2439     font-style: italic;
2440 }
2441
2442 #displayexample {
2443     background-color: #CCCCCC;
2444     margin-bottom: 10px;
2445     padding: 5px;
2446 }
2447
2448 #irregularity_summary {
2449     vertical-align: top;
2450 }
2451
2452 #toplevelmenu {
2453     padding: 0;
2454 }
2455
2456 #CheckAll,
2457 #CheckNone,
2458 #CheckPending {
2459     font-weight: normal;
2460     margin: 0 .5em 0 0;
2461 }
2462
2463 .lost,
2464 .dmg,
2465 .wdn {
2466     color: #990000;
2467     display: block;
2468 }
2469
2470 .datedue {
2471     color: #999;
2472     display: block;
2473     font-style: italic;
2474 }
2475
2476 .waitinghere,
2477 .credit {
2478     color: #669900;
2479 }
2480
2481 #mainuserblock {
2482     border: 1px solid #E8E8E8;
2483     margin-top: .5em;
2484     padding: .5em;
2485 }
2486
2487 .labeledmarc-table {
2488     border: 0;
2489 }
2490
2491 .labeledmarc-label {
2492     border: 0;
2493     color: #000000;
2494     font-size: 11pt;
2495     font-style: italic;
2496     padding: 5;
2497 }
2498
2499 .labeledmarc-value {
2500     border: 0;
2501     color: #000;
2502     font-size: 10pt;
2503     padding: 5;
2504 }
2505
2506 #marcPreview {
2507     table {
2508         border: 0;
2509         font-family: $font-monospace;
2510         font-size: 95%;
2511         margin: .7em 0 0;
2512     }
2513
2514     tbody {
2515         tr {
2516             &:nth-child(2n+1) {
2517                 td {
2518                     background-color: #FFFFFF;
2519                 }
2520             }
2521         }
2522     }
2523
2524     td {
2525         border: 0;
2526         padding: 2px;
2527         vertical-align: top;
2528     }
2529
2530     th {
2531         background-color: #FFFFFF;
2532         border: 0;
2533         padding: 2px;
2534         text-align: left;
2535         vertical-align: top;
2536         white-space: nowrap;
2537     }
2538
2539     &.modal-dialog {
2540         width: 80%;
2541     }
2542 }
2543
2544 .modal-dialog {
2545     &.modal-wide {
2546         width: 80%;
2547     }
2548 }
2549
2550 @media (max-width: 767px) {
2551     #marcPreview {
2552         margin: 0;
2553         width: auto;
2554     }
2555 }
2556
2557 #cartDetails {
2558     background-color: #FFFFFF;
2559     border: 1px solid #739ACF;
2560     box-shadow: 1px 1px 3px 0 #666;
2561     color: #000;
2562     display: none;
2563     margin: 0;
2564     padding: 10px;
2565     text-align: center;
2566     width: 180px;
2567     z-index: 50;
2568 }
2569
2570 #cartmenulink {
2571     background: transparent url("../img/cart-small.gif") left center no-repeat;
2572     padding-left: 15px;
2573 }
2574
2575 #basketcount {
2576     span {
2577         display: inline;
2578         font-size: 90%;
2579         font-weight: normal;
2580         padding: 0;
2581     }
2582 }
2583
2584 #moremenu {
2585     display: none;
2586 }
2587
2588 .results_summary {
2589     color: #707070;
2590     display: block;
2591     font-size: 85%;
2592     padding: 0 0 .5em;
2593
2594     a {
2595         font-weight: normal;
2596     }
2597
2598     .label {
2599         color: #202020;
2600     }
2601 }
2602
2603 .child_fund_amount {
2604     font-style: italic;
2605 }
2606
2607 .number_box {
2608     font-size: 105%;
2609     line-height: 200%;
2610
2611     a,
2612     span {
2613         background-color: #E4ECF5;
2614         border: 1px solid #A4BEDD;
2615         border-radius: 4px;
2616         font-weight: bold;
2617         padding: .1em .4em;
2618         text-decoration: none;
2619
2620         &:hover {
2621             background-color: #EBEFF7;
2622         }
2623     }
2624 }
2625
2626 .container {
2627     border: 1px solid #EEE;
2628     margin: 1em 0;
2629     padding: 1em;
2630 }
2631
2632 .import_export {
2633     position: relative;
2634
2635     .export_ok {
2636         background: #E3E3E3 none;
2637         border: 0;
2638         cursor: pointer;
2639         margin-left: 20px;
2640         padding: 10px;
2641     }
2642
2643     .import_export_options {
2644         background: #FFFFFF;
2645         border: 1px solid #CDCDCD;
2646         left: 60px;
2647         padding: 10px;
2648         position: absolute;
2649         top: 0;
2650         width: 300px;
2651         z-index: 1;
2652     }
2653 }
2654
2655 .import_export_options {
2656     background: #E3E3E3 none;
2657     border: 0;
2658     cursor: pointer;
2659     margin-left: 20px;
2660     padding: 10px;
2661
2662     fieldset {
2663         &.rows {
2664             li {
2665                 label {
2666                     width: 16em;
2667                 }
2668             }
2669         }
2670     }
2671
2672     .importing {
2673         background: none;
2674         padding: inherit;
2675     }
2676 }
2677
2678 .form_import {
2679     fieldset {
2680         &.rows {
2681             li {
2682                 label {
2683                     width: auto;
2684                 }
2685             }
2686         }
2687     }
2688
2689     .input_import {
2690         border: 1px solid #BCBCBC;
2691     }
2692 }
2693
2694 .importing {
2695     position: relative;
2696
2697     .importing_msg {
2698         padding-bottom: 10px;
2699         padding-left: 10px;
2700     }
2701 }
2702
2703
2704 .field_hint {
2705     color: #808080;
2706     font-style: italic;
2707     padding-left: 1em;
2708 }
2709
2710 .m880 {
2711     display: block;
2712     float: right;
2713     padding-left: 20px;
2714     text-align: right;
2715     width: 50%;
2716 }
2717
2718 .advsearch {
2719     margin: 0;
2720
2721     table {
2722         border-collapse: separate;
2723         border-spacing: 5px;
2724         border-width: 0;
2725     }
2726
2727     td {
2728         border: 1px solid #EEE;
2729         padding: .3em .4em;
2730     }
2731 }
2732
2733 #circ_circulation_issue {
2734     position: relative;
2735 }
2736
2737 #clearscreen {
2738     position: absolute;
2739     right: 0;
2740     top: 0;
2741
2742     a {
2743         background-color: #EEE;
2744         border-radius: 0 0 0 5px;
2745         color: #CCC;
2746         display: block;
2747         font-size: 160%;
2748         font-weight: bold;
2749         padding: 0 .7em .2em;
2750         text-decoration: none;
2751         text-shadow: 0 -1px 0 #666;
2752
2753         &:hover {
2754             color: #CC0000;
2755         }
2756     }
2757 }
2758
2759 #printclearscreen {
2760     position: absolute;
2761     right: 43px;
2762     top: 0;
2763
2764     a {
2765         background-color: #EEE;
2766         border-radius: 0 0 0 5px;
2767         color: #CCC;
2768         display: block;
2769         font-size: 160%;
2770         font-weight: bold;
2771         padding: 0 .7em .2em;
2772         text-decoration: none;
2773         text-shadow: 0 -1px 0 #666;
2774
2775         &:hover {
2776             color: #CC0000;
2777         }
2778     }
2779 }
2780 .pager {
2781     background-color: #E8E8E8;
2782     border: 1px solid #BCBCBC;
2783     border-radius: 5px;
2784     display: inline-block;
2785     font-size: 85%;
2786     margin: .4em 0;
2787     padding: .3em .5em;
2788
2789     img {
2790         vertical-align: middle;
2791
2792         &.last {
2793             padding-right: 5px;
2794         }
2795     }
2796
2797     input {
2798         &.pagedisplay {
2799             background-color: transparent;
2800             border: 0;
2801             font-weight: bold;
2802             text-align: center;
2803         }
2804     }
2805
2806     p {
2807         margin: 0;
2808     }
2809 }
2810
2811 .no-image {
2812     background-color: #FFFFFF;
2813     border: 1px solid #AAAAAA;
2814     border-radius: 3px;
2815     color: #979797;
2816     display: block;
2817     font-size: 86%;
2818     font-weight: bold;
2819     text-align: center;
2820     width: 75px;
2821 }
2822
2823 #acqui_order_supplierlist {
2824     > div {
2825         &.supplier {
2826             border: 1px solid #EEEEEE;
2827             margin: .5em;
2828             padding: 1em;
2829         }
2830
2831         > div {
2832             > .baskets {
2833                 margin-top: .5em;
2834             }
2835         }
2836
2837         > span {
2838             &.action {
2839                 margin-left: 5em;
2840             }
2841
2842             &.suppliername {
2843                 display: inline;
2844                 font-size: 1.7em;
2845                 margin-bottom: .5em;
2846             }
2847         }
2848     }
2849 }
2850
2851 #ADD-contact {
2852     margin: 0 0 8px 8px;
2853 }
2854
2855 #contact-template {
2856     display: none;
2857 }
2858
2859 // Override core jQueryUI widgets
2860 .ui-widget-content {
2861     background: #FFFFFF none;
2862     border: 1px solid #B9D8D9;
2863     color: #222222;
2864 }
2865
2866 .ui-widget-header {
2867     background: #E6F0F2 none;
2868     border: 1px solid #B9D8D9;
2869     color: #222222;
2870     font-weight: bold;
2871 }
2872
2873 .ui-state-default,
2874 .ui-widget-content .ui-state-default,
2875 .ui-widget-header .ui-state-default {
2876     background: #F4F8F9 none;
2877     border: 1px solid #B9D8D9;
2878     color: #555555;
2879     font-weight: normal;
2880 }
2881
2882 .ui-state-hover,
2883 .ui-widget-content .ui-state-hover,
2884 .ui-widget-header .ui-state-hover,
2885 .ui-state-focus,
2886 .ui-widget-content .ui-state-focus,
2887 .ui-widget-header .ui-state-focus {
2888     background: #E6F0F2 none;
2889     border: 1px solid #B9D8D9;
2890     color: #212121;
2891     font-weight: normal;
2892 }
2893
2894 .ui-state-active,
2895 .ui-widget-content .ui-state-active,
2896 .ui-widget-header .ui-state-active {
2897     background: #FFFFFF none;
2898     border: 1px solid #AAAAAA;
2899     color: #212121;
2900     font-weight: normal;
2901 }
2902
2903 .ui-state-highlight,
2904 .ui-widget-content .ui-state-highlight,
2905 .ui-widget-header .ui-state-highlight {
2906     background: #FFF4C6;
2907     border: 1px solid #FED22F;
2908     color: #363636;
2909 }
2910
2911 .ui-state-error,
2912 .ui-widget-content .ui-state-error,
2913 .ui-widget-header .ui-state-error {
2914     background: #FEF1EC;
2915     border: 1px solid #CD0A0A;
2916     color: #CD0A0A;
2917 }
2918
2919 // Override jQuery Autocomplete
2920 .ui-autocomplete {
2921     box-shadow: 2px 2px 2px rgba(0, 0, 0, .3);
2922     cursor: default;
2923     position: absolute;
2924
2925     &.ui-widget-content {
2926         .ui-state-hover {
2927             background: #E6F0F2 none;
2928             border: 1px solid #B9D8D9;
2929             color: #212121;
2930             font-weight: normal;
2931         }
2932     }
2933 }
2934
2935 .ui-autocomplete-loading {
2936     background: #FFF url("../img/spinner-small.gif") right center no-repeat;
2937 }
2938
2939 // jQuery UI standard tabs
2940 .ui-menu {
2941     li {
2942         list-style: none;
2943     }
2944 }
2945
2946 .ui-tabs-nav {
2947     .ui-tabs-active a,
2948     a:hover,
2949     a:focus,
2950     a:active,
2951     span.a {
2952         background: none repeat scroll 0 0 transparent;
2953         outline: 0 none;
2954     }
2955
2956     &.ui-widget-header {
2957         background: none;
2958         border: 0;
2959     }
2960 }
2961
2962 .ui-tabs {
2963     .ui-tabs-nav {
2964         li {
2965             background: #E6F0F2 none;
2966             border: 1px solid #B9D8D9;
2967             margin-right: .4em;
2968             top: 1px;
2969
2970             &.ui-tabs-active {
2971                 background-color: #FFFFFF;
2972                 border: 1px solid #B9D8D9;
2973                 border-bottom-width: 0;
2974
2975                 a {
2976                     color: #000;
2977                     font-weight: bold;
2978                 }
2979
2980                 &.ui-state-hover {
2981                     background: #FFF none;
2982                 }
2983             }
2984
2985             &.ui-state-default {
2986                 &.ui-state-hover {
2987                     background: #EDF4F5 none;
2988                 }
2989             }
2990         }
2991     }
2992
2993     .ui-tabs-panel {
2994         border: 1px solid #B9D8D9;
2995     }
2996
2997     &.ui-widget-content {
2998         background: transparent none;
2999         border: 0;
3000     }
3001
3002     .ui-state-default {
3003         a {
3004             color: #004D99;
3005
3006             &:link,
3007             &:visited {
3008                 color: #004D99;
3009             }
3010         }
3011     }
3012
3013     .ui-state-hover {
3014         a {
3015             color: #538200;
3016
3017             &:link,
3018             &:visited {
3019                 color: #538200;
3020             }
3021         }
3022     }
3023
3024 }
3025
3026 .ui-widget {
3027     font-family: inherit;
3028     font-size: inherit;
3029
3030     input,
3031     select,
3032     textarea,
3033     button {
3034         font-family: inherit;
3035         font-size: inherit;
3036     }
3037 }
3038
3039 .statictabs {
3040     ul {
3041         background: none repeat scroll 0 0 transparent;
3042         border: 0 none;
3043         border-bottom-left-radius: 4px;
3044         border-bottom-right-radius: 4px;
3045         border-top-left-radius: 4px;
3046         border-top-right-radius: 4px;
3047         color: #222222;
3048         font-size: 100%;
3049         font-weight: bold;
3050         line-height: 1.3;
3051         list-style: none outside none;
3052         margin: 0;
3053         outline: 0 none;
3054         padding: .2em .2em 0;
3055         text-decoration: none;
3056
3057         &::after {
3058             clear: both;
3059         }
3060
3061         &::before,
3062         &::after {
3063             content: "";
3064             display: table;
3065         }
3066
3067         li {
3068             background: none repeat scroll 0 0 #E6F0F2;
3069             border: 1px solid #B9D8D9;
3070             border-bottom: 0 none;
3071             border-top-left-radius: 4px;
3072             border-top-right-radius: 4px;
3073             color: #555555;
3074             float: left;
3075             font-weight: normal;
3076             list-style: none outside none;
3077             margin-bottom: 0;
3078             margin-right: .4em;
3079             padding: 0;
3080             position: relative;
3081             top: 1px;
3082             white-space: nowrap;
3083
3084             &.active {
3085                 background-color: #FFFFFF;
3086                 color: #212121;
3087                 font-weight: normal;
3088                 padding-bottom: 1px;
3089
3090                 a {
3091                     background: none repeat scroll 0 0 transparent;
3092                     color: #000000;
3093                     cursor: text;
3094                     font-weight: bold;
3095                     outline: 0 none;
3096                     top: 1px;
3097                 }
3098             }
3099
3100             a {
3101                 color: #004D99;
3102                 cursor: pointer;
3103                 float: left;
3104                 padding: .5em 1em;
3105                 text-decoration: none;
3106
3107                 &:hover {
3108                     background-color: #EDF4F5;
3109                     border-top-left-radius: 4px;
3110                     border-top-right-radius: 4px;
3111                     color: #538200;
3112                 }
3113             }
3114         }
3115     }
3116
3117     .tabs-container {
3118         background: none repeat scroll 0 0 transparent;
3119         border: 1px solid #B9D8D9;
3120         border-bottom-left-radius: 4px;
3121         border-bottom-right-radius: 4px;
3122         color: #222222;
3123         display: block;
3124         padding: 1em 1.4em;
3125     }
3126 }
3127
3128 .authref {
3129     font-style: normal;
3130     text-indent: 4em;
3131 }
3132
3133 .seefrom,
3134 .seealso {
3135     font-style: italic;
3136     text-indent: 2em;
3137 }
3138
3139 #authfinderops {
3140     float: right;
3141 }
3142
3143 .authorizedheading {
3144     font-weight: bold;
3145 }
3146
3147 .authres_notes,
3148 .authres_seealso,
3149 .authres_otherscript {
3150     padding-top: 3px;
3151 }
3152
3153 .authres_notes {
3154     font-style: italic;
3155 }
3156
3157
3158 .contents {
3159     width: 75%;
3160
3161     .r {
3162         display: inline;
3163     }
3164
3165     .t {
3166         display: inline;
3167         font-weight: bold;
3168
3169         &:first-child {
3170             &::before {
3171                 content: "→ ";
3172             }
3173         }
3174
3175         &::before {
3176             content: "\A→ ";
3177             white-space: pre;
3178         }
3179     }
3180 }
3181
3182 .contentblock {
3183     margin-left: 2em;
3184     position: relative;
3185 }
3186
3187 #hierarchies {
3188     a {
3189         color: #069;
3190         font-weight: normal;
3191         text-decoration: underline;
3192
3193         &:hover {
3194             color: #990033;
3195         }
3196     }
3197 }
3198
3199 #didyoumeanopac,
3200 #didyoumeanintranet {
3201     float: left;
3202     width: 260px;
3203 }
3204
3205 .pluginlist {
3206     padding-bottom: 10px;
3207 }
3208
3209 .plugin {
3210     margin: 0 1em 1em 0;
3211 }
3212
3213 .pluginname {
3214     background-color: #E6F0F2;
3215     cursor: move;
3216     margin: .3em;
3217     padding-bottom: 4px;
3218     padding-left: .2em;
3219
3220     .ui-icon {
3221         float: right;
3222     }
3223 }
3224
3225 .plugindesc {
3226     padding: .4em;
3227 }
3228
3229 .ui-sortable-placeholder {
3230     border: 1px dotted #000;
3231     height: 80px;
3232     visibility: visible;
3233
3234     * {
3235         visibility: hidden;
3236     }
3237 }
3238
3239 // jQuery UI Datepicker
3240 .ui-datepicker {
3241     box-shadow: 1px 1px 3px 0 #666;
3242
3243     table {
3244         border: 0;
3245         border-collapse: collapse;
3246         font-size: .9em;
3247         margin: 0 0 .4em;
3248         width: 100%;
3249     }
3250
3251     th {
3252         background: transparent none;
3253         border: 0;
3254         font-weight: bold;
3255         padding: .7em .3em;
3256         text-align: center;
3257     }
3258 }
3259
3260 .ui-datepicker-trigger {
3261     margin: 0 3px;
3262     vertical-align: middle;
3263 }
3264
3265 // css for timepicker
3266 .ui-timepicker-div {
3267     dl {
3268         text-align: left;
3269
3270         dd {
3271             margin: 0 10px 10px 65px;
3272         }
3273
3274         dt {
3275             height: 25px;
3276             margin-bottom: -25px;
3277         }
3278
3279         td {
3280             font-size: 90%;
3281         }
3282     }
3283
3284     .ui-widget-header {
3285         margin-bottom: 8px;
3286     }
3287 }
3288
3289 .ui-tpicker-grid-label {
3290     background: none;
3291     border: 0;
3292     margin: 0;
3293     padding: 0;
3294 }
3295
3296 .ui_tpicker_second,
3297 .ui_tpicker_millisec,
3298 .ui_tpicker_microsec {
3299     display: none;
3300 }
3301
3302 // jQuery UI Accordion
3303 .ui-accordion-header,
3304 .ui-widget-content .ui-accordion-header {
3305     font-size: 110%;
3306     font-weight: bold;
3307 }
3308
3309 video {
3310     width: 480px;
3311 }
3312
3313 // Bootstrap overrides
3314 button,
3315 .btn {
3316     border-color: #ADADAD #ADADAD #949494;
3317     font-family: $font-main;
3318
3319     &.btn-link {
3320         border: 0;
3321     }
3322 }
3323
3324 .btn-xs,
3325 .btn-group-xs > .btn {
3326     font-size: 10.5px;
3327     padding: 3px 5px;
3328 }
3329
3330 .dropdown-menu {
3331     border-color: rgba(0, 0, 0, .2);
3332     border-top: 0;
3333     font-size: 12px;
3334
3335     li {
3336         list-style: none outside none;
3337
3338         > a,
3339         &.nav-header {
3340             padding: 4px 20px;
3341             cursor: pointer;
3342
3343             &:hover,
3344             &:focus {
3345                 background-image: linear-gradient(to bottom, #0088CC, #0077B3);
3346                 background-repeat: repeat-x;
3347                 color: #FFFFFF;
3348                 text-decoration: none;
3349             }
3350         }
3351     }
3352 }
3353
3354 .navbar {
3355     color: #333;
3356     min-height: 20px;
3357
3358     .nav {
3359         > li {
3360             list-style: none outside none;
3361             padding: 0 .6em;
3362
3363             > a {
3364                 color: #004D99;
3365                 font-weight: bold;
3366                 padding: .4em .2em;
3367
3368                 &:focus,
3369                 &:hover {
3370                     color: #538200;
3371                 }
3372             }
3373         }
3374
3375         li {
3376             .dropdown {
3377                 &.open > .dropdown-toggle:focus,
3378                 &.active > .dropdown-toggle:focus,
3379                 &.open.active > .dropdown-toggle:focus {
3380                     background: #E6F0F2 none;
3381                     box-shadow: none;
3382                 }
3383             }
3384         }
3385     }
3386
3387
3388 }
3389
3390 #changelanguage {
3391     min-height: $language-footer-min-height;
3392
3393     .dropdown-menu {
3394         > li {
3395             > a,
3396             > span {
3397                 padding: 5px 15px;
3398             }
3399         }
3400     }
3401
3402     .navbar-text {
3403         margin: 0;
3404
3405         span {
3406             display: block;
3407             line-height: 20px;
3408         }
3409     }
3410 }
3411
3412 .loggedout {
3413     color: #004D99;
3414     font-weight: bold;
3415     padding: .4em .2em;
3416 }
3417
3418 .navbar-static-top {
3419     .navbar-inner {
3420         background: #E6F0F2 none;
3421         border: 0;
3422         box-shadow: none;
3423         min-height: 0;
3424         padding-left: 0;
3425     }
3426 }
3427
3428 .navbar-fixed-bottom {
3429     .navbar-inner {
3430         min-height: 0;
3431         padding: .4em 0;
3432     }
3433
3434     .nav > li {
3435         border-right: 1px solid #CCC;
3436
3437         > a {
3438             font-weight: normal;
3439         }
3440
3441         &:last-child {
3442             border-right: 0;
3443         }
3444
3445         &.navbar-text {
3446             line-height: normal;
3447             padding: .4em .7em;
3448         }
3449     }
3450 }
3451
3452 .tooltip {
3453     &.bottom {
3454         .tooltip-arrow {
3455             border-bottom-color: #EEE;
3456         }
3457
3458         .tooltip-inner {
3459             background-color: #FFFFFF;
3460             border: 1px solid rgba(0, 0, 0, .2);
3461             box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
3462             color: #000;
3463             font-size: 120%;
3464             padding: 1em;
3465         }
3466     }
3467 }
3468
3469 .separator {
3470     color: #666;
3471     padding: 0 .2em;
3472 }
3473
3474 .close {
3475     filter: none;
3476     float: none;
3477     font-size: inherit;
3478     font-weight: normal;
3479     line-height: 1.5;
3480     opacity: inherit;
3481     position: inherit;
3482     right: auto;
3483     text-shadow: none;
3484     top: auto;
3485
3486     &:hover {
3487         color: inherit;
3488         filter: inherit;
3489         font-size: inherit;
3490         opacity: inherit;
3491     }
3492 }
3493
3494
3495 label {
3496     .radio &,
3497     .checkbox & {
3498         margin-left: 20px;
3499         padding-left: 0;
3500     }
3501 }
3502
3503 .radio {
3504     input {
3505         &[type="radio"] {
3506             margin-left: 0;
3507             position: relative;
3508         }
3509     }
3510 }
3511
3512 .checkbox {
3513     input {
3514         &[type="checkbox"] {
3515             margin-left: 0;
3516             position: relative;
3517         }
3518     }
3519 }
3520
3521 .modal-header {
3522     .closebtn {
3523         margin-top: 4px;
3524     }
3525 }
3526
3527 .closebtn {
3528     color: #000;
3529     filter: alpha(opacity = 20);
3530     float: right;
3531     font-size: 21px;
3532     font-weight: bold;
3533     line-height: 1;
3534     opacity: .2;
3535     text-shadow: 0 1px 0 #FFFFFF;
3536
3537     &:hover,
3538     &:focus {
3539         color: #000;
3540         cursor: pointer;
3541         filter: alpha(opacity = 50);
3542         opacity: .5;
3543         text-decoration: none;
3544     }
3545 }
3546
3547 .modal-body {
3548     background-color: #FFF;
3549     overflow-y: auto;
3550
3551     fieldset,
3552     ol {
3553         background-color: transparent;
3554         border: 0;
3555         margin: 0;
3556         padding: 0;
3557     }
3558 }
3559
3560 .modal-content {
3561     background-color: #EDF4F6;
3562 }
3563
3564 .btn-group {
3565     label,
3566     select {
3567         font-size: 13px;
3568     }
3569 }
3570
3571 .tooltip-inner {
3572     white-space: pre-wrap;
3573 }
3574
3575 pre {
3576     background-color: transparent;
3577     border: 0;
3578     border-radius: 0;
3579     color: inherit;
3580     display: block;
3581     font-size: inherit;
3582     line-height: inherit;
3583     margin: 0;
3584     padding: 0;
3585     word-break: break-all;
3586     word-wrap: break-word;
3587 }
3588
3589 code {
3590     background-color: transparent;
3591     border-radius: 0;
3592     color: inherit;
3593     font-size: inherit;
3594     padding: 0;
3595 }
3596
3597 .pagination > li > a,
3598 .pagination > li > span {
3599     font-weight: bold;
3600 }
3601
3602 // End Bootstrap overrides
3603
3604 .waiting {
3605     cursor: wait;
3606 }
3607
3608 #jobpanel,
3609 #jobstatus,
3610 #jobfailed {
3611     display: none;
3612 }
3613
3614 #jobstatus {
3615     margin: .4em;
3616 }
3617
3618 #jobprogress {
3619     background: url("../img/progress.png") -300px 0 no-repeat;
3620     border: 1px solid #666;
3621     display: inline-block;
3622     height: 10px;
3623     width: 200px;
3624  }
3625
3626 .progress_panel {
3627     border: 2px solid #EEE;
3628     border-radius: 5px;
3629     clear: both;
3630     font-size: 120%;
3631     margin: 1em 0;
3632     padding: 1em;
3633 }
3634
3635 progress {
3636     width: 50%;
3637 }
3638
3639 #selections {
3640     white-space: normal;
3641     width: 100%;
3642
3643     input {
3644         margin: 0 2px;
3645         vertical-align: middle;
3646     }
3647
3648     span {
3649         background-color: #EBF3FF;
3650         border-radius: 5px;
3651         font-size: 75%;
3652         line-height: 240%;
3653         margin: 3px;
3654         padding: 3px;
3655         white-space: nowrap;
3656
3657         &.selected {
3658             background-color: #CCE0FC;
3659         }
3660     }
3661 }
3662
3663 #changepasswordf {
3664     input {
3665         &[type="text"],
3666         &[type="password"] {
3667             font-family: $font-monospace;
3668             font-size: 140%;
3669             padding: .3em;
3670         }
3671     }
3672 }
3673
3674 // Class to be added to toolbar when it starts being fixed at the top of the screen
3675
3676 .floating {
3677     box-shadow: 0 3px 2px 0 rgba(0, 0, 0, .5);
3678     z-index: 100;
3679 }
3680
3681 .inline {
3682     display: inline;
3683 }
3684
3685 .nowrap {
3686     white-space: nowrap;
3687 }
3688
3689 .tag_editor {
3690     background: transparent url("../img/edit-tag.png") top left no-repeat;
3691     display: block;
3692     float: left;
3693     height: 16px;
3694     margin: 4px;
3695     overflow: hidden;
3696     text-indent: 100%;
3697     white-space: nowrap;
3698     width: 16px;
3699 }
3700
3701 .browse-controls {
3702     margin-left: 1.1em;
3703     margin-right: .5em;
3704     padding-bottom: 1em;
3705     padding-top: 1em;
3706 }
3707
3708 #browse-return-to-results {
3709     border-top-left-radius: 3px;
3710     border-top-right-radius: 3px;
3711     display: block;
3712     text-align: center;
3713 }
3714
3715 .browse-button {
3716     color: #004D99;
3717     display: inline-block;
3718     padding: .4em .6em;
3719
3720     &:hover {
3721         background: #FAFAFA;
3722     }
3723 }
3724
3725 span {
3726     &.browse-button {
3727         background: #FAFAFA;
3728         color: #222;
3729     }
3730
3731     &.circ-hlt {
3732         color: #CC0000;
3733         font-weight: bold;
3734     }
3735
3736     &.expired {
3737         color: #990000;
3738         font-style: italic;
3739     }
3740
3741     &.name {
3742         font-style: italic;
3743         font-weight: bold;
3744     }
3745
3746     &.permissiondesc {
3747         font-weight: normal;
3748     }
3749
3750     &.required {
3751         color: #C00;
3752         font-style: italic;
3753         margin-left: .5em;
3754     }
3755 }
3756
3757
3758 .result-biblio-itemtype {
3759     float: right;
3760     font-size: 85%;
3761     margin: .5em;
3762     padding: .5em;
3763     text-align: center;
3764
3765     img {
3766         display: block;
3767         margin: auto;
3768         margin-bottom: 2px;
3769     }
3770 }
3771
3772 .browse-label,
3773 .browse-prev-next {
3774     border: 1px solid #B9D8D9;
3775 }
3776
3777 .browse-label {
3778     background-color: #E8F0F6;
3779     border-top-left-radius: 5px;
3780     border-top-right-radius: 5px;
3781 }
3782
3783 .browse-prev-next {
3784     border-bottom-left-radius: 5px;
3785     border-bottom-right-radius: 5px;
3786     border-top-width: 0;
3787 }
3788
3789 #browse-previous {
3790     border-bottom-left-radius: 5px;
3791     border-right: 1px solid #B9D8D9;
3792     padding-right: 1em;
3793 }
3794
3795 #browse-next {
3796     border-bottom-right-radius: 5px;
3797     border-top-width: 0;
3798     float: right;
3799     padding-right: 1em;
3800 }
3801
3802 .loading-overlay {
3803     background-color: #FFFFFF;
3804     cursor: wait;
3805     height: 100%;
3806     left: 0;
3807     opacity: .7;
3808     position: fixed;
3809     top: 0;
3810     width: 100%;
3811     z-index: 1000;
3812
3813     div {
3814         background: transparent url("../img/loading.gif") top left no-repeat;
3815         font-size: 175%;
3816         font-weight: bold;
3817         height: 2em;
3818         left: 50%;
3819         margin: -1em 0 0 -2.5em;
3820         padding-left: 50px;
3821         position: absolute;
3822         top: 50%;
3823         width: 15em;
3824     }
3825 }
3826
3827 #merge_invoices {
3828     display: none;
3829     margin: 1em auto;
3830 }
3831
3832 #merge {
3833     margin: .5em 0 0;
3834 }
3835
3836 #merge_table {
3837     tr {
3838         &.active {
3839             td {
3840                 background-color: #FFFFCC;
3841             }
3842         }
3843     }
3844 }
3845
3846 .renewals {
3847     display: block;
3848     font-size: .8em;
3849     padding: .5em;
3850 }
3851
3852 #transport-types {
3853     padding-top: .5px;
3854 }
3855
3856 #i18nMenu {
3857     .navbar-text {
3858         .currentlanguage {
3859             color: #000;
3860             font-weight: bold;
3861         }
3862     }
3863
3864     a {
3865         &.currentlanguage {
3866             &:link,
3867             &:visited {
3868                 font-weight: bold;
3869             }
3870         }
3871
3872         .sublanguage-selected {
3873             color: #000;
3874             font-weight: bold;
3875         }
3876     }
3877 }
3878
3879 .onsite_checkout-select {
3880     label,
3881     #circ_circulation_issue & {
3882         font-size: inherit;
3883         font-weight: normal;
3884     }
3885 }
3886
3887 .onsite_checkout {
3888     color: #CC0000;
3889 }
3890
3891 .onsite-checkout-only {
3892     background-color: rgba(255, 242, 206, .5);
3893     border: 1px solid #FFF2CE;
3894     border-radius: 4px;
3895 }
3896
3897 .branchgriditem {
3898     background-color: #FFFFFF;
3899     border: 1px solid #B9D8D9;
3900     border-radius: 3px;
3901     display: table-cell;
3902     float: left;
3903     margin: 3px;
3904     padding: .3em;
3905 }
3906
3907 .branchgridrow {
3908     display: table-row;
3909 }
3910
3911 .branchselector {
3912     display: table;
3913 }
3914
3915 .hq-author {
3916     font-weight: bold;
3917 }
3918
3919 #cn_browser_table_wrapper > #cn_browser_table {
3920     margin: auto;
3921     width: 90%;
3922 }
3923
3924 #new_rule {
3925     background-color: #F4F8F9;
3926     border: 2px solid #B9D8D9;
3927     border-radius: 5px;
3928     display: none;
3929     margin: .3em;
3930     padding: .3em;
3931 }
3932
3933
3934 .blocks {
3935     margin-bottom: .3em;
3936 }
3937
3938 .remove_rule {
3939     font-size: 80%;
3940     padding-left: .7em;
3941 }
3942
3943 .underline {
3944     text-decoration: underline;
3945 }
3946
3947 .overline {
3948     text-decoration: overline;
3949 }
3950
3951 .order-control {
3952     padding-right: 5px;
3953 }
3954
3955 #borrower_message {
3956     margin-top: 10px;
3957 }
3958
3959 .form-group {
3960     margin-bottom: 10px;
3961
3962     label {
3963         font-weight: bold;
3964     }
3965 }
3966
3967
3968 .form-message {
3969     background-color: #FFF;
3970     border: 1px solid #A4BEDD;
3971     border-radius: 5px;
3972     margin: 1em;
3973     padding: .5em;
3974 }
3975
3976 .modal-textarea {
3977     width: 98%;
3978 }
3979
3980 #pat_member {
3981     #patron_list_dialog,
3982     #searchresults {
3983         display: none;
3984     }
3985 }
3986
3987 #patron_search {
3988     #filters {
3989         display: none;
3990     }
3991 }
3992
3993 #fixedlengthbuilderaction {
3994     border: 3px solid #E6F0F2;
3995     left: 80%;
3996     padding: 5px;
3997     position: relative;
3998     top: -80px;
3999     width: 12%;
4000 }
4001
4002 .navbar-default {
4003     .navbar-nav {
4004         > .open {
4005             > a {
4006                 &:hover,
4007                 &:focus {
4008                     background: #E6F0F2 none;
4009                     box-shadow: none;
4010                 }
4011             }
4012         }
4013     }
4014
4015     &.navbar-fixed-bottom {
4016         .navbar-nav {
4017             > .open {
4018                 > a {
4019                     &:hover,
4020                     &:focus {
4021                         background: transparent none;
4022                         box-shadow: none;
4023                     }
4024                 }
4025             }
4026         }
4027     }
4028 }
4029
4030 #interlibraryloans {
4031     #dataPreviewLabel {
4032         margin: .3em 0;
4033     }
4034
4035     .bg-info {
4036         overflow: auto;
4037         position: relative;
4038     }
4039
4040     .format {
4041         h4 {
4042             margin-bottom: 20px;
4043         }
4044
4045         h5 {
4046             margin-top: 20px;
4047         }
4048
4049         input {
4050             margin: 10px 0;
4051         }
4052
4053         li {
4054             list-style: none;
4055         }
4056     }
4057
4058     #add-new-fields {
4059         margin: 1em;
4060     }
4061
4062     #column-toggle,
4063     #reset-toggle {
4064         font-weight: 700;
4065         line-height: 1.5em;
4066         margin: 15px 0;
4067     }
4068
4069     #freeform-fields {
4070         .custom-name {
4071             margin-right: 1em;
4072             text-align: right;
4073             width: 9em;
4074         }
4075
4076         .delete-new-field {
4077             margin-left: 1em;
4078         }
4079     }
4080
4081     #search-summary {
4082         position: absolute;
4083         top: 50%;
4084         transform: translateY(-50%);
4085     }
4086 }
4087
4088 .ill-view-panel {
4089     margin-top: 15px;
4090
4091     .notesopac {
4092         display: inline-block;
4093     }
4094 }
4095
4096 #requestattributes {
4097     font-family: monospace;
4098     line-height: 1.3em;
4099 }
4100
4101 #ill-requests {
4102     width: 100% !important;
4103 }
4104
4105 #stockrotation {
4106     h3 {
4107         margin: 30px 0 10px 0;
4108     }
4109     .dialog {
4110         h3 {
4111             margin: 10px 0;
4112         }
4113         margin-bottom: 20px;
4114     }
4115     .highlight_stage {
4116         font-weight: bold;
4117     }
4118 }
4119
4120 #catalog_stockrotation .highlight_stage {
4121     font-weight: bold;
4122 }
4123
4124 #stockrotation {
4125     #rota_form {
4126         textarea {
4127             width: 300px;
4128             height: 100px;
4129         }
4130         #name {
4131             width: 300px;
4132         }
4133         fieldset {
4134             width: auto;
4135         }
4136     }
4137     #stage_form fieldset, #add_rota_item_form fieldset {
4138         width: auto;
4139     }
4140     .dialog.alert {
4141         ul {
4142             margin: 20px 0;
4143         }
4144         li {
4145             list-style-type: none;
4146         }
4147     }
4148 }
4149
4150 #catalog_stockrotation {
4151     .item_select_rota {
4152         vertical-align: middle;
4153     }
4154     h1 {
4155         margin-bottom: 20px;
4156     }
4157 }
4158
4159 #stockrotation td.actions, #catalog_stockrotation td.actions {
4160     vertical-align: middle;
4161 }
4162
4163 #stockrotation .stage, #catalog_stockrotation .stage {
4164     display: inline-block;
4165     padding: 5px 7px;
4166     margin: 3px 0 3px 0;
4167     border-radius: 5px;
4168     background-color: rgba(0, 0, 0, 0.1);
4169 }
4170
4171 #stage_list_headings {
4172     font-weight: bold;
4173     span {
4174         padding: 3px;
4175     }
4176 }
4177
4178 #manage_stages {
4179     ul {
4180         padding-left: 0;
4181     }
4182     li {
4183         list-style: none;
4184         margin-bottom: 5px;
4185         span {
4186             padding: 6px 3px;
4187         }
4188     }
4189     .stagename {
4190         width: 15em;
4191         display: inline-block;
4192     }
4193     .stageduration {
4194         width: 10em;
4195         display: inline-block;
4196     }
4197     .stageactions {
4198         display: inline-block;
4199     }
4200     li:nth-child(odd) {
4201         background-color: #F3F3F3;
4202     }
4203     .drag_handle {
4204         margin-right: 6px;
4205         cursor: move;
4206     }
4207     .drag_placeholder {
4208         height: 2em;
4209         border: 1px dotted #aaa;
4210     }
4211     h3 {
4212         display: inline-block;
4213     }
4214     #ajax_status {
4215         display: inline-block;
4216         border: 1px solid #bcbcbc;
4217         border-radius: 5px;
4218         padding: 5px;
4219         margin-left: 10px;
4220         background: #f3f3f3;
4221     }
4222     #manage_stages_help {
4223         margin: 20px 0;
4224     }
4225 }
4226
4227 #helper {
4228     span {
4229         display: none;
4230     }
4231 }
4232
4233 #logged-in-info-full {
4234     display: none;
4235 }
4236
4237 .loggedin-menu-label {
4238     color: #777;
4239     font-size: 12px;
4240     line-height: 1.42857143;
4241     padding: 4px 12px;
4242     white-space: nowrap;
4243
4244     span {
4245         color: #000;
4246         font-weight: bold;
4247     }
4248
4249     &.divider {
4250         padding: 0;
4251     }
4252 }
4253
4254 .lastborrower {
4255     background-color: #E6F0F2;
4256     border: 1px solid #95C6D0;
4257     box-shadow: 1px 1px 1px 0 #999;
4258     color: #CC0000;
4259     margin: .4em 0;
4260     padding: .3em .5em .3em .5em;
4261 }
4262
4263 #lastborrower-ref {
4264     border-radius: 5px 0px 0px 5px;
4265     float: left;
4266 }
4267
4268 #lastborrower-remove {
4269     border-radius: 0px 5px 5px 0px;
4270     cursor: pointer;
4271     float: right;
4272 }
4273
4274 #lastborrower-window {
4275     display: none;
4276     position: absolute;
4277     right: 5px;
4278     top: 100px;
4279 }
4280
4281 /* ==== MODULE LINKS - Start ==== */
4282 .buttons-list {
4283     // List containing the module links
4284     margin-bottom: 30px;
4285     padding: 0;
4286
4287     li {
4288         // Standard attributes for the list elements
4289         list-style-type: none;
4290
4291         a {
4292             &.circ-button {
4293                 // Class used for each module link
4294                 background-color: #F4F8F9;
4295                 background-position: 5px 3px;
4296                 background-repeat: no-repeat;
4297                 border: 2px solid #B9D8D9;
4298                 border-radius: 6px;
4299                 box-sizing: content-box;
4300                 color: #000000;
4301                 display: block;
4302                 font-size: 110%;
4303                 font-weight: bold;
4304                 margin: .5em 0;
4305                 max-width: 260px;
4306                 padding: 8px;
4307                 text-decoration: none;
4308
4309                 &:hover {
4310                     // Class used for each module link hover state
4311                     border-color: #538200;
4312                     color: #538200;
4313                 }
4314             }
4315         }
4316     }
4317 }
4318
4319 .about h2 {
4320     border-bottom: 1px solid #B9D8D9;
4321     padding: .5em .2em;
4322     margin:  .5em 0;
4323 }
4324
4325 .columns-3 {
4326     columns: 3 auto;
4327     column-gap: 2.5em;
4328 }
4329
4330 .columns-4 {
4331     columns: 4 auto;
4332     column-gap: 2em;
4333 }
4334
4335 // ==== MODULE LINKS - End ====
4336
4337 #catalog-search-link {
4338     border-right: 1px solid lighten( #E6F0F2, 15% );
4339     padding-right: .3em;
4340 }
4341
4342 #catalog-search-dropdown {
4343     padding: 0;
4344
4345     & > a {
4346         border-left: 1px solid darken( #B4D2D8, 5% );
4347         margin-right: .6em;
4348         padding: .4em .6em;
4349
4350         &:hover,
4351         &.catalog-search-dropdown-hover {
4352             background-color: darken( #E6F0F2, 5% );
4353             border-left: 1px solid darken( #B4D2D8, 15% );
4354         }
4355     }
4356 }
4357
4358 .adlibris-cover {
4359     max-height: 120px;
4360 }
4361
4362 .adlibris-cover-big {
4363     max-height: 200px;
4364 }
4365
4366 #tools_holidays {
4367     .radio,
4368     .checkbox {
4369         label {
4370             margin-left: 0;
4371         }
4372     }
4373 }
4374
4375 @media (min-width: 200px) {
4376     .navbar-nav > li {
4377         float: left;
4378     }
4379
4380     .navbar-right {
4381         float: right !important;
4382         margin-right: -15px;
4383     }
4384
4385     .navbar-nav {
4386         float: left;
4387         margin: 0;
4388
4389         .open {
4390             .dropdown-menu {
4391                 background-color: #FFF;
4392                 border: 1px solid rgba(0, 0, 0, .15);
4393                 box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
4394                 float: left;
4395                 position: absolute;
4396                 width: auto;
4397
4398                 &.dropdown-menu-left {
4399                     left: auto;
4400                     right: 0;
4401                 }
4402
4403                 &.dropdown-menu-right {
4404                     right: auto;
4405                 }
4406             }
4407         }
4408     }
4409
4410     .navbar-default {
4411         .navbar-nav {
4412             .open {
4413                 .dropdown-menu {
4414                     > li {
4415                         > a {
4416                             &:hover,
4417                             &:focus {
4418                                 background-color: #0081C2;
4419                                 background-image: linear-gradient(to bottom, #0088CC, #0077B3);
4420                                 background-repeat: repeat-x;
4421                                 color: #FFFFFF;
4422                                 text-decoration: none;
4423                             }
4424                         }
4425                     }
4426                 }
4427             }
4428         }
4429     }
4430 }
4431
4432 @media (min-width: 800px) {
4433     #helper {
4434         i {
4435             display: none;
4436         }
4437
4438         span {
4439             display: inline;
4440         }
4441     }
4442
4443     #logged-in-info-full {
4444         display: inline;
4445     }
4446
4447     #logged-in-info-brief {
4448         display: none;
4449     }
4450
4451     .loggedin-menu-label {
4452         display: none;
4453     }
4454 }
4455
4456 div#makechart ol li {
4457     list-style: none;
4458 }