Bug 21918: Update buttons on fines to match newer buttons
[koha.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
1656 #disabled {
1657     a {
1658         color: #999;
1659
1660         &:hover {
1661             color: #999;
1662         }
1663     }
1664 }
1665
1666 #disabled2 {
1667     a {
1668         color: #999;
1669     }
1670 }
1671
1672
1673 .patroninfo {
1674     margin-top: -.5em;
1675
1676     h5 {
1677         border-right: 1px solid #B9D8D9;
1678         margin-bottom: 0;
1679         padding-bottom: .5em;
1680         padding-left: -.5em;
1681         padding-top: .3em;
1682
1683         &:empty {
1684             border-right: 0;
1685         }
1686     }
1687
1688     ul {
1689         border: 0;
1690         border-bottom: 0;
1691         border-right: 1px solid #B9D8D9;
1692         border-top: 0;
1693         margin: 0;
1694         padding: 0;
1695
1696         li {
1697             list-style-type: none;
1698             margin: 0;
1699         }
1700     }
1701
1702     + #menu {
1703         margin-right: 0;
1704     }
1705 }
1706
1707 #patronbasics {
1708     div {
1709         background: transparent url("../img/patron-blank.min.svg") 10px 5px no-repeat;
1710         border: 1px solid #CCCCCC;
1711         height: 125px;
1712         margin: .3em 0 .3em .3em;
1713         padding: 0;
1714         width: 105px;
1715     }
1716 }
1717
1718 #patronimage {
1719     border: 1px solid #CCCCCC;
1720     margin: .3em 0 .3em .3em;
1721     max-width: 140px;
1722     padding: .2em;
1723 }
1724
1725 .patronviews {
1726     border-right: 1px solid #000;
1727     border-top: 1px solid #000;
1728     margin-bottom: .5em;
1729     padding: .5em 0;
1730 }
1731
1732 .column-tool {
1733     font-size: 80%;
1734 }
1735
1736 .hint {
1737     color: #666;
1738     font-size: 95%;
1739 }
1740
1741 .yui-b {
1742     fieldset {
1743         &.brief {
1744             padding: .4em .7em;
1745
1746             fieldset {
1747                 margin: 0 .3em;
1748                 padding: .5em;
1749
1750                 legend {
1751                     font-size: 85%;
1752                 }
1753             }
1754
1755             li {
1756
1757                 &.checkbox {
1758
1759                     input {
1760                         #tools_holidays & {
1761                             margin-left: 0;
1762                         }
1763                     }
1764
1765                     label {
1766                         display: inline;
1767
1768                         #tools_holidays & {
1769                             margin-left: 20px;
1770                         }
1771                     }
1772                 }
1773
1774                 &.dateinsert {
1775                     label {
1776                         display: inline;
1777                     }
1778
1779                     span {
1780                         &.label {
1781                             display: inline;
1782                         }
1783                     }
1784                 }
1785
1786                 &.radio {
1787                     padding: .7em 0;
1788
1789                     input {
1790                         padding: .3em 0;
1791
1792                         #tools_holidays & {
1793                             margin-left: 0;
1794                         }
1795                     }
1796
1797                     label {
1798                         display: inline;
1799
1800                         #tools_holidays & {
1801                             margin-left: 20px;
1802                         }
1803
1804                         span {
1805                             &.label {
1806                                 display: inline;
1807                             }
1808                         }
1809                     }
1810                 }
1811             }
1812
1813             ol {
1814                 font-size: 85%;
1815                 margin: 0;
1816                 padding: 0;
1817             }
1818
1819             select,
1820             [type=text] {
1821                 width: 100%;
1822             }
1823         }
1824
1825         &.rows {
1826             div {
1827                 &.hint {
1828                     margin-left: 10.5em;
1829                 }
1830             }
1831
1832             td {
1833                 label {
1834                     width: auto;
1835                 }
1836
1837                 span {
1838                     &.label {
1839                         width: auto;
1840                     }
1841                 }
1842             }
1843         }
1844     }
1845 }
1846
1847 #yui-main {
1848     .yui-b {
1849         fieldset {
1850             &.brief {
1851                 select,
1852                 [type=text] {
1853                     width: auto;
1854                 }
1855             }
1856         }
1857     }
1858 }
1859
1860 .btn-toolbar {
1861     fieldset {
1862         &.action {
1863             margin-top: 0;
1864         }
1865     }
1866
1867     .dropdown-menu {
1868         font-size: 13px;
1869     }
1870 }
1871
1872 .rows {
1873     .label {
1874         white-space: normal;
1875     }
1876 }
1877
1878 .checkedout {
1879     color: #999999;
1880     font-style: italic;
1881 }
1882
1883 .subfield_not_filled {
1884     background-color: #FFFF99;
1885 }
1886
1887 .content_hidden {
1888     display: none;
1889     visibility: hidden; // you propably don't need to change this one
1890 }
1891
1892 // the property for the displayed tab
1893 .content_visible {
1894     display: block;
1895     visibility: visible; // you propably don't need to change this one
1896 }
1897
1898 #z3950searcht {
1899     table {
1900         border: 0;
1901         padding: 20px;
1902     }
1903 }
1904
1905 #z3950_search_targets {
1906     height: 338px;
1907     overflow-y: auto;
1908 }
1909
1910 #z3950_search_targets_acq {
1911     height: 308px;
1912     overflow-y: auto;
1913 }
1914
1915 .z3950checks {
1916     padding-left: 1em;
1917 }
1918
1919 .error {
1920     color: #CC0000;
1921 }
1922
1923 .status_ok {
1924     background-color: #90EE90;
1925 }
1926
1927 .status_warn {
1928     background-color: #FF0000;
1929 }
1930
1931 // Font Awesome icons
1932 i {
1933     &.error {
1934         color: #CC0000;
1935     }
1936
1937     &.success {
1938         color: #008000;
1939     }
1940
1941     &.warn {
1942         color: #FFA500;
1943     }
1944 }
1945
1946 .checkout-setting {
1947     font-size: 85%;
1948     padding-top: .3em;
1949
1950     input {
1951         vertical-align: middle;
1952     }
1953
1954     label {
1955         font-size: inherit;
1956         font-weight: normal;
1957     }
1958 }
1959
1960 .checkout-settings {
1961     background-color: #F4F8F9;
1962     border-radius: 0;
1963     border-top: 2px solid #B9D8D9;
1964     display: none;
1965     margin-left: -1em;
1966     margin-right: -1em;
1967     margin-top: 1em;
1968     padding: 1em 1em 0;
1969 }
1970
1971 #show-checkout-settings {
1972     margin-top: .5em;
1973 }
1974
1975 .blocker {
1976     color: #990000;
1977 }
1978
1979 .inaccurate-item-statuses {
1980     color: #990000;
1981 }
1982
1983 .circmessage {
1984     li {
1985         list-style: url("../img/arrow-bullet.gif");
1986         margin-bottom: .2em;
1987     }
1988 }
1989
1990 #circ_needsconfirmation {
1991     margin: auto;
1992 }
1993
1994 .dialog {
1995     border: 1px solid #BCBCBC;
1996     border-radius: 2px;
1997     margin: 1em auto;
1998     padding: .5em;
1999     text-align: center;
2000     width: 65%;
2001
2002     a {
2003         &.approve {
2004             display: inline-block;
2005         }
2006     }
2007
2008     button,
2009     a.approve {
2010         background: #FFF none;
2011         border: 1px outset #999999;
2012         border-left-color: #666;
2013         border-top-color: #666;
2014         margin: .4em;
2015         padding: .4em;
2016         white-space: pre-line;
2017
2018         &:active {
2019             border: 1px inset #999999;
2020         }
2021
2022         &:hover {
2023             background-color: #FFC;
2024         }
2025     }
2026
2027     h2,
2028     h3,
2029     h4 {
2030         margin: auto;
2031         text-align: center;
2032     }
2033
2034     input {
2035         background-color: #FFFFFF;
2036         border: 1px solid #BCBCBC;
2037         margin: .4em;
2038         padding: .4em .4em .4em 25px;
2039
2040         &:hover {
2041             background-color: #FFC;
2042         }
2043
2044         &[type="submit"] {
2045             background: #FFF none;
2046         }
2047     }
2048
2049     li {
2050         list-style-position: inside;
2051     }
2052
2053     table {
2054         margin: .5em auto;
2055
2056         td {
2057             text-align: left;
2058         }
2059
2060         th {
2061             text-align: right;
2062         }
2063     }
2064 }
2065
2066 .alert {
2067     background: linear-gradient(to bottom, #FEF8D3 0%, #FFEC91 9%, #FFED87 89%, #F9DC00 100%);
2068     border: 1px solid #E0C726;
2069     color: inherit;
2070     text-align: center;
2071     text-shadow: none;
2072
2073     strong {
2074         color: #900;
2075     }
2076
2077     // Redefine a new style for Bootstrap's class "close" since we use that already
2078     // Use <a class="closebtn" href="#">&times;</a>
2079     .closebtn {
2080         line-height: 20px;
2081         position: relative;
2082         right: -21px;
2083         top: -2px;
2084     }
2085 }
2086
2087 .approve,
2088 .success {
2089     i {
2090         &.fa {
2091             color: #008000;
2092         }
2093     }
2094 }
2095
2096 .deny {
2097     i {
2098         &.fa {
2099             color: #CC0000;
2100         }
2101     }
2102 }
2103
2104 .new {
2105     i {
2106         &.fa {
2107             color: #425FAF;
2108         }
2109     }
2110 }
2111
2112 .accesskey {
2113     text-decoration: underline;
2114 }
2115
2116 .missing {
2117     background-color: #FFFFCC;
2118 }
2119
2120 .term {
2121     background-color: #FFC;
2122     color: #990000;
2123 }
2124
2125 // style for shelving location in catalogsearch
2126 .shelvingloc {
2127     display: block;
2128     font-style: italic;
2129 }
2130
2131 #menu {
2132     border-right: 1px solid #B9D8D9;
2133     margin-right: .5em;
2134     padding-bottom: 2em;
2135     padding-top: 1em;
2136
2137     li {
2138         a {
2139             background: linear-gradient(to bottom, #E8F0F6 0%, #E8F0F6 96%, #C1C1C1 100%);
2140             border: 1px solid #B9D8D9;
2141             border-bottom-left-radius: 5px;
2142             border-top-left-radius: 5px;
2143             display: block;
2144             font-size: 111%;
2145             margin: .5em 0;
2146             margin-right: -1px;
2147             padding: .4em .3em;
2148             text-decoration: none;
2149
2150             &:hover {
2151                 background: linear-gradient(to bottom, #FAFAFA 0%, #FFFFFF 96%, #E6E6E6 97%, #CCCCCC 99%, #C1C1C1 100%);
2152                 border-bottom: 1px solid #85CA11;
2153                 border-left: 1px solid #85CA11;
2154                 border-top: 1px solid #85CA11;
2155             }
2156         }
2157
2158         &.active {
2159             a {
2160                 background-color: #FFFFFF;
2161                 background-image: none;
2162                 border-bottom: 1px solid #85CA11;
2163                 border-left: 1px solid #85CA11;
2164                 border-right: 0;
2165                 border-top: 1px solid #85CA11;
2166                 color: #000000;
2167                 font-weight: bold;
2168
2169                 &:hover {
2170                     background-color: #FFFFFF;
2171                     color: #538200;
2172                 }
2173             }
2174         }
2175     }
2176
2177     ul {
2178         li {
2179             list-style-type: none;
2180         }
2181     }
2182 }
2183
2184
2185 #logo {
2186     background: transparent url("../img/koha-logo-medium.png") no-repeat scroll 0%;
2187     margin: .75em .3em .75em .7em;
2188
2189     a {
2190         border: 0;
2191         cursor: pointer;
2192         display: block;
2193         height: 0 !important;
2194         margin: 0;
2195         overflow: hidden;
2196         padding: 44px 0 0;
2197         text-decoration: none;
2198         width: 180px;
2199     }
2200 }
2201
2202 #closewindow {
2203     margin-top: 2em;
2204     text-align: center;
2205
2206     a {
2207         font-weight: bold;
2208     }
2209 }
2210
2211 .barcode {
2212     font-size: 200%;
2213     vertical-align: middle;
2214 }
2215
2216 li {
2217     &.email {
2218         overflow: hidden;
2219         text-overflow: ellipsis;
2220         white-space: nowrap;
2221     }
2222 }
2223
2224 .patronbriefinfo {
2225     li {
2226         &.email {
2227             font-size: 87%;
2228             padding: 0 10px 0 0;
2229             width: 90%;
2230         }
2231     }
2232 }
2233
2234 .empty {
2235     color: #CCC;
2236 }
2237
2238 .address {
2239     font-size: 110%;
2240
2241     li {
2242         list-style-type: none;
2243     }
2244 }
2245
2246 .title {
2247     font-size: 105%;
2248     font-weight: bold;
2249 }
2250
2251 .hold {
2252     float: right;
2253     font-size: 90%;
2254     margin: 0;
2255 }
2256
2257 .thumbnail {
2258     display: block;
2259     margin: auto;
2260
2261     > li {
2262         list-style-type: none;
2263     }
2264 }
2265
2266 #searchresults {
2267     ul {
2268         li {
2269             clear: left;
2270             font-size: 90%;
2271             list-style: url("../img/item-bullet.gif");
2272             padding: .2em 0;
2273
2274             img {
2275                 float: left;
2276                 margin: 3px 5px 3px -5px;
2277             }
2278         }
2279
2280         span {
2281             &.status {
2282                 clear: left;
2283                 color: #900;
2284                 display: block;
2285             }
2286
2287             &.unavailable {
2288                 clear: left;
2289                 display: block;
2290             }
2291         }
2292
2293         table {
2294             td {
2295                 vertical-align: top;
2296             }
2297         }
2298     }
2299
2300     &.unavailability {
2301         strong {
2302             display: block;
2303         }
2304     }
2305 }
2306
2307 #searchheader {
2308     background-color: #E6F0F2;
2309     border: 1px solid #B9D8D9;
2310     border-radius: 5px 5px 0 0;
2311     font-size: 80%;
2312     margin: 0 0 .5em -1px;
2313     padding: .4em 0 .4em 1em;
2314
2315     &.floating {
2316         border-radius: 0;
2317         margin-top: 0;
2318     }
2319
2320     .btn-group {
2321         > .btn {
2322             &:first-child {
2323                 margin-left: .7em;
2324             }
2325         }
2326     }
2327
2328     form {
2329         float: right;
2330         padding: 5px 5px 3px 0;
2331
2332         &.fz3950 {
2333             float: right;
2334             font-size: 125%;
2335             padding: 0 0 0 5em;
2336         }
2337
2338         &.fz3950bigrpad {
2339             float: right;
2340             font-size: 125%;
2341             padding: 5px 25em 0 0;
2342         }
2343     }
2344 }
2345
2346 #search-facets {
2347     border: 1px solid #B9D8D9;
2348     border-radius: 5px 5px 0 0;
2349
2350     h4 {
2351         background-color: #E6F0F2;
2352         border-bottom: 1px solid #B9D8D9;
2353         border-radius: 5px 5px 0 0;
2354         font-size: 90%;
2355         margin: 0;
2356         padding: .4em .2em;
2357         text-align: center;
2358     }
2359
2360     ul {
2361         margin: 0;
2362         padding: .3em;
2363
2364         li {
2365             font-weight: bold;
2366             list-style-type: none;
2367         }
2368     }
2369
2370     li {
2371         li {
2372             font-size: 85%;
2373             font-weight: normal;
2374             margin-bottom: 2px;
2375             padding: .1em .2em;
2376         }
2377
2378         &.showmore {
2379             font-weight: bold;
2380             text-indent: 1em;
2381         }
2382     }
2383 }
2384
2385 .facet-count {
2386     display: inline-block;
2387 }
2388
2389 #bookcoverimg {
2390     text-align: center;
2391 }
2392
2393 .searchhighlightblob {
2394     font-size: 75%;
2395     font-style: italic;
2396 }
2397
2398 #displayexample {
2399     background-color: #CCCCCC;
2400     margin-bottom: 10px;
2401     padding: 5px;
2402 }
2403
2404 #irregularity_summary {
2405     vertical-align: top;
2406 }
2407
2408 #toplevelmenu {
2409     padding: 0;
2410 }
2411
2412 #CheckAll,
2413 #CheckNone,
2414 #CheckPending {
2415     font-weight: normal;
2416     margin: 0 .5em 0 0;
2417 }
2418
2419 .lost,
2420 .dmg,
2421 .wdn {
2422     color: #990000;
2423     display: block;
2424 }
2425
2426 .datedue {
2427     color: #999;
2428     display: block;
2429     font-style: italic;
2430 }
2431
2432 .waitinghere,
2433 .credit {
2434     color: #669900;
2435 }
2436
2437 #mainuserblock {
2438     border: 1px solid #E8E8E8;
2439     margin-top: .5em;
2440     padding: .5em;
2441 }
2442
2443 .labeledmarc-table {
2444     border: 0;
2445 }
2446
2447 .labeledmarc-label {
2448     border: 0;
2449     color: #000000;
2450     font-size: 11pt;
2451     font-style: italic;
2452     padding: 5;
2453 }
2454
2455 .labeledmarc-value {
2456     border: 0;
2457     color: #000;
2458     font-size: 10pt;
2459     padding: 5;
2460 }
2461
2462 #marcPreview {
2463     table {
2464         border: 0;
2465         font-family: $font-monospace;
2466         font-size: 95%;
2467         margin: .7em 0 0;
2468     }
2469
2470     tbody {
2471         tr {
2472             &:nth-child(2n+1) {
2473                 td {
2474                     background-color: #FFFFFF;
2475                 }
2476             }
2477         }
2478     }
2479
2480     td {
2481         border: 0;
2482         padding: 2px;
2483         vertical-align: top;
2484     }
2485
2486     th {
2487         background-color: #FFFFFF;
2488         border: 0;
2489         padding: 2px;
2490         text-align: left;
2491         vertical-align: top;
2492         white-space: nowrap;
2493     }
2494
2495     &.modal-dialog {
2496         width: 80%;
2497     }
2498 }
2499
2500 .modal-dialog {
2501     &.modal-wide {
2502         width: 80%;
2503     }
2504 }
2505
2506 @media (max-width: 767px) {
2507     #marcPreview {
2508         margin: 0;
2509         width: auto;
2510     }
2511 }
2512
2513 #cartDetails {
2514     background-color: #FFFFFF;
2515     border: 1px solid #739ACF;
2516     box-shadow: 1px 1px 3px 0 #666;
2517     color: #000;
2518     display: none;
2519     margin: 0;
2520     padding: 10px;
2521     text-align: center;
2522     width: 180px;
2523     z-index: 50;
2524 }
2525
2526 #cartmenulink {
2527     background: transparent url("../img/cart-small.gif") left center no-repeat;
2528     padding-left: 15px;
2529 }
2530
2531 #basketcount {
2532     span {
2533         display: inline;
2534         font-size: 90%;
2535         font-weight: normal;
2536         padding: 0;
2537     }
2538 }
2539
2540 #moremenu {
2541     display: none;
2542 }
2543
2544 .results_summary {
2545     color: #707070;
2546     display: block;
2547     font-size: 85%;
2548     padding: 0 0 .5em;
2549
2550     a {
2551         font-weight: normal;
2552     }
2553
2554     .label {
2555         color: #202020;
2556     }
2557 }
2558
2559 .child_fund_amount {
2560     font-style: italic;
2561 }
2562
2563 .number_box {
2564     font-size: 105%;
2565     line-height: 200%;
2566
2567     a,
2568     span {
2569         background-color: #E4ECF5;
2570         border: 1px solid #A4BEDD;
2571         border-radius: 4px;
2572         font-weight: bold;
2573         padding: .1em .4em;
2574         text-decoration: none;
2575
2576         &:hover {
2577             background-color: #EBEFF7;
2578         }
2579     }
2580 }
2581
2582 .container {
2583     border: 1px solid #EEE;
2584     margin: 1em 0;
2585     padding: 1em;
2586 }
2587
2588 .import_export {
2589     position: relative;
2590
2591     .export_ok {
2592         background: #E3E3E3 none;
2593         border: 0;
2594         cursor: pointer;
2595         margin-left: 20px;
2596         padding: 10px;
2597     }
2598
2599     .import_export_options {
2600         background: #FFFFFF;
2601         border: 1px solid #CDCDCD;
2602         left: 60px;
2603         padding: 10px;
2604         position: absolute;
2605         top: 0;
2606         width: 300px;
2607         z-index: 1;
2608     }
2609 }
2610
2611 .import_export_options {
2612     background: #E3E3E3 none;
2613     border: 0;
2614     cursor: pointer;
2615     margin-left: 20px;
2616     padding: 10px;
2617
2618     fieldset {
2619         &.rows {
2620             li {
2621                 label {
2622                     width: 16em;
2623                 }
2624             }
2625         }
2626     }
2627
2628     .importing {
2629         background: none;
2630         padding: inherit;
2631     }
2632 }
2633
2634 .form_import {
2635     fieldset {
2636         &.rows {
2637             li {
2638                 label {
2639                     width: auto;
2640                 }
2641             }
2642         }
2643     }
2644
2645     .input_import {
2646         border: 1px solid #BCBCBC;
2647     }
2648 }
2649
2650 .importing {
2651     position: relative;
2652
2653     .importing_msg {
2654         padding-bottom: 10px;
2655         padding-left: 10px;
2656     }
2657 }
2658
2659
2660 .field_hint {
2661     color: #808080;
2662     font-style: italic;
2663     padding-left: 1em;
2664 }
2665
2666 .m880 {
2667     display: block;
2668     float: right;
2669     padding-left: 20px;
2670     text-align: right;
2671     width: 50%;
2672 }
2673
2674 .advsearch {
2675     margin: 0;
2676
2677     table {
2678         border-collapse: separate;
2679         border-spacing: 5px;
2680         border-width: 0;
2681     }
2682
2683     td {
2684         border: 1px solid #EEE;
2685         padding: .3em .4em;
2686     }
2687 }
2688
2689 #circ_circulation_issue {
2690     position: relative;
2691 }
2692
2693 #clearscreen {
2694     position: absolute;
2695     right: 0;
2696     top: 0;
2697
2698     a {
2699         background-color: #EEE;
2700         border-radius: 0 0 0 5px;
2701         color: #CCC;
2702         display: block;
2703         font-size: 160%;
2704         font-weight: bold;
2705         padding: 0 .7em .2em;
2706         text-decoration: none;
2707         text-shadow: 0 -1px 0 #666;
2708
2709         &:hover {
2710             color: #CC0000;
2711         }
2712     }
2713 }
2714
2715 .pager {
2716     background-color: #E8E8E8;
2717     border: 1px solid #BCBCBC;
2718     border-radius: 5px;
2719     display: inline-block;
2720     font-size: 85%;
2721     margin: .4em 0;
2722     padding: .3em .5em;
2723
2724     img {
2725         vertical-align: middle;
2726
2727         &.last {
2728             padding-right: 5px;
2729         }
2730     }
2731
2732     input {
2733         &.pagedisplay {
2734             background-color: transparent;
2735             border: 0;
2736             font-weight: bold;
2737             text-align: center;
2738         }
2739     }
2740
2741     p {
2742         margin: 0;
2743     }
2744 }
2745
2746 .no-image {
2747     background-color: #FFFFFF;
2748     border: 1px solid #AAAAAA;
2749     border-radius: 3px;
2750     color: #979797;
2751     display: block;
2752     font-size: 86%;
2753     font-weight: bold;
2754     text-align: center;
2755     width: 75px;
2756 }
2757
2758 #acqui_order_supplierlist {
2759     > div {
2760         &.supplier {
2761             border: 1px solid #EEEEEE;
2762             margin: .5em;
2763             padding: 1em;
2764         }
2765
2766         > div {
2767             > .baskets {
2768                 margin-top: .5em;
2769             }
2770         }
2771
2772         > span {
2773             &.action {
2774                 margin-left: 5em;
2775             }
2776
2777             &.suppliername {
2778                 display: inline;
2779                 font-size: 1.7em;
2780                 margin-bottom: .5em;
2781             }
2782         }
2783     }
2784 }
2785
2786 #ADD-contact {
2787     margin: 0 0 8px 8px;
2788 }
2789
2790 #contact-template {
2791     display: none;
2792 }
2793
2794 // Override core jQueryUI widgets
2795 .ui-widget-content {
2796     background: #FFFFFF none;
2797     border: 1px solid #B9D8D9;
2798     color: #222222;
2799 }
2800
2801 .ui-widget-header {
2802     background: #E6F0F2 none;
2803     border: 1px solid #B9D8D9;
2804     color: #222222;
2805     font-weight: bold;
2806 }
2807
2808 .ui-state-default,
2809 .ui-widget-content .ui-state-default,
2810 .ui-widget-header .ui-state-default {
2811     background: #F4F8F9 none;
2812     border: 1px solid #B9D8D9;
2813     color: #555555;
2814     font-weight: normal;
2815 }
2816
2817 .ui-state-hover,
2818 .ui-widget-content .ui-state-hover,
2819 .ui-widget-header .ui-state-hover,
2820 .ui-state-focus,
2821 .ui-widget-content .ui-state-focus,
2822 .ui-widget-header .ui-state-focus {
2823     background: #E6F0F2 none;
2824     border: 1px solid #B9D8D9;
2825     color: #212121;
2826     font-weight: normal;
2827 }
2828
2829 .ui-state-active,
2830 .ui-widget-content .ui-state-active,
2831 .ui-widget-header .ui-state-active {
2832     background: #FFFFFF none;
2833     border: 1px solid #AAAAAA;
2834     color: #212121;
2835     font-weight: normal;
2836 }
2837
2838 .ui-state-highlight,
2839 .ui-widget-content .ui-state-highlight,
2840 .ui-widget-header .ui-state-highlight {
2841     background: #FFF4C6;
2842     border: 1px solid #FED22F;
2843     color: #363636;
2844 }
2845
2846 .ui-state-error,
2847 .ui-widget-content .ui-state-error,
2848 .ui-widget-header .ui-state-error {
2849     background: #FEF1EC;
2850     border: 1px solid #CD0A0A;
2851     color: #CD0A0A;
2852 }
2853
2854 // Override jQuery Autocomplete
2855 .ui-autocomplete {
2856     box-shadow: 2px 2px 2px rgba(0, 0, 0, .3);
2857     cursor: default;
2858     position: absolute;
2859
2860     &.ui-widget-content {
2861         .ui-state-hover {
2862             background: #E6F0F2 none;
2863             border: 1px solid #B9D8D9;
2864             color: #212121;
2865             font-weight: normal;
2866         }
2867     }
2868 }
2869
2870 .ui-autocomplete-loading {
2871     background: #FFF url("../img/spinner-small.gif") right center no-repeat;
2872 }
2873
2874 // jQuery UI standard tabs
2875 .ui-menu {
2876     li {
2877         list-style: none;
2878     }
2879 }
2880
2881 .ui-tabs-nav {
2882     .ui-tabs-active a,
2883     a:hover,
2884     a:focus,
2885     a:active,
2886     span.a {
2887         background: none repeat scroll 0 0 transparent;
2888         outline: 0 none;
2889     }
2890
2891     &.ui-widget-header {
2892         background: none;
2893         border: 0;
2894     }
2895 }
2896
2897 .ui-tabs {
2898     .ui-tabs-nav {
2899         li {
2900             background: #E6F0F2 none;
2901             border: 1px solid #B9D8D9;
2902             margin-right: .4em;
2903             top: 1px;
2904
2905             &.ui-tabs-active {
2906                 background-color: #FFFFFF;
2907                 border: 1px solid #B9D8D9;
2908                 border-bottom-width: 0;
2909
2910                 a {
2911                     color: #000;
2912                     font-weight: bold;
2913                 }
2914
2915                 &.ui-state-hover {
2916                     background: #FFF none;
2917                 }
2918             }
2919
2920             &.ui-state-default {
2921                 &.ui-state-hover {
2922                     background: #EDF4F5 none;
2923                 }
2924             }
2925         }
2926     }
2927
2928     .ui-tabs-panel {
2929         border: 1px solid #B9D8D9;
2930     }
2931
2932     &.ui-widget-content {
2933         background: transparent none;
2934         border: 0;
2935     }
2936
2937     .ui-state-default {
2938         a {
2939             color: #004D99;
2940
2941             &:link,
2942             &:visited {
2943                 color: #004D99;
2944             }
2945         }
2946     }
2947
2948     .ui-state-hover {
2949         a {
2950             color: #538200;
2951
2952             &:link,
2953             &:visited {
2954                 color: #538200;
2955             }
2956         }
2957     }
2958
2959 }
2960
2961 .ui-widget {
2962     font-family: inherit;
2963     font-size: inherit;
2964
2965     input,
2966     select,
2967     textarea,
2968     button {
2969         font-family: inherit;
2970         font-size: inherit;
2971     }
2972 }
2973
2974 .statictabs {
2975     ul {
2976         background: none repeat scroll 0 0 transparent;
2977         border: 0 none;
2978         border-bottom-left-radius: 4px;
2979         border-bottom-right-radius: 4px;
2980         border-top-left-radius: 4px;
2981         border-top-right-radius: 4px;
2982         color: #222222;
2983         font-size: 100%;
2984         font-weight: bold;
2985         line-height: 1.3;
2986         list-style: none outside none;
2987         margin: 0;
2988         outline: 0 none;
2989         padding: .2em .2em 0;
2990         text-decoration: none;
2991
2992         &::after {
2993             clear: both;
2994         }
2995
2996         &::before,
2997         &::after {
2998             content: "";
2999             display: table;
3000         }
3001
3002         li {
3003             background: none repeat scroll 0 0 #E6F0F2;
3004             border: 1px solid #B9D8D9;
3005             border-bottom: 0 none;
3006             border-top-left-radius: 4px;
3007             border-top-right-radius: 4px;
3008             color: #555555;
3009             float: left;
3010             font-weight: normal;
3011             list-style: none outside none;
3012             margin-bottom: 0;
3013             margin-right: .4em;
3014             padding: 0;
3015             position: relative;
3016             top: 1px;
3017             white-space: nowrap;
3018
3019             &.active {
3020                 background-color: #FFFFFF;
3021                 color: #212121;
3022                 font-weight: normal;
3023                 padding-bottom: 1px;
3024
3025                 a {
3026                     background: none repeat scroll 0 0 transparent;
3027                     color: #000000;
3028                     cursor: text;
3029                     font-weight: bold;
3030                     outline: 0 none;
3031                     top: 1px;
3032                 }
3033             }
3034
3035             a {
3036                 color: #004D99;
3037                 cursor: pointer;
3038                 float: left;
3039                 padding: .5em 1em;
3040                 text-decoration: none;
3041
3042                 &:hover {
3043                     background-color: #EDF4F5;
3044                     border-top-left-radius: 4px;
3045                     border-top-right-radius: 4px;
3046                     color: #538200;
3047                 }
3048             }
3049         }
3050     }
3051
3052     .tabs-container {
3053         background: none repeat scroll 0 0 transparent;
3054         border: 1px solid #B9D8D9;
3055         border-bottom-left-radius: 4px;
3056         border-bottom-right-radius: 4px;
3057         color: #222222;
3058         display: block;
3059         padding: 1em 1.4em;
3060     }
3061 }
3062
3063 .authref {
3064     font-style: normal;
3065     text-indent: 4em;
3066 }
3067
3068 .seefrom,
3069 .seealso {
3070     font-style: italic;
3071     text-indent: 2em;
3072 }
3073
3074 #authfinderops {
3075     float: right;
3076 }
3077
3078 .authorizedheading {
3079     font-weight: bold;
3080 }
3081
3082 .authres_notes,
3083 .authres_seealso,
3084 .authres_otherscript {
3085     padding-top: 3px;
3086 }
3087
3088 .authres_notes {
3089     font-style: italic;
3090 }
3091
3092
3093 .contents {
3094     width: 75%;
3095
3096     .r {
3097         display: inline;
3098     }
3099
3100     .t {
3101         display: inline;
3102         font-weight: bold;
3103
3104         &:first-child {
3105             &::before {
3106                 content: "→ ";
3107             }
3108         }
3109
3110         &::before {
3111             content: "\A→ ";
3112             white-space: pre;
3113         }
3114     }
3115 }
3116
3117 .contentblock {
3118     margin-left: 2em;
3119     position: relative;
3120 }
3121
3122 #hierarchies {
3123     a {
3124         color: #069;
3125         font-weight: normal;
3126         text-decoration: underline;
3127
3128         &:hover {
3129             color: #990033;
3130         }
3131     }
3132 }
3133
3134 #didyoumeanopac,
3135 #didyoumeanintranet {
3136     float: left;
3137     width: 260px;
3138 }
3139
3140 .pluginlist {
3141     padding-bottom: 10px;
3142 }
3143
3144 .plugin {
3145     margin: 0 1em 1em 0;
3146 }
3147
3148 .pluginname {
3149     background-color: #E6F0F2;
3150     cursor: move;
3151     margin: .3em;
3152     padding-bottom: 4px;
3153     padding-left: .2em;
3154
3155     .ui-icon {
3156         float: right;
3157     }
3158 }
3159
3160 .plugindesc {
3161     padding: .4em;
3162 }
3163
3164 .ui-sortable-placeholder {
3165     border: 1px dotted #000;
3166     height: 80px;
3167     visibility: visible;
3168
3169     * {
3170         visibility: hidden;
3171     }
3172 }
3173
3174 // jQuery UI Datepicker
3175 .ui-datepicker {
3176     box-shadow: 1px 1px 3px 0 #666;
3177
3178     table {
3179         border: 0;
3180         border-collapse: collapse;
3181         font-size: .9em;
3182         margin: 0 0 .4em;
3183         width: 100%;
3184     }
3185
3186     th {
3187         background: transparent none;
3188         border: 0;
3189         font-weight: bold;
3190         padding: .7em .3em;
3191         text-align: center;
3192     }
3193 }
3194
3195 .ui-datepicker-trigger {
3196     margin: 0 3px;
3197     vertical-align: middle;
3198 }
3199
3200 // css for timepicker
3201 .ui-timepicker-div {
3202     dl {
3203         text-align: left;
3204
3205         dd {
3206             margin: 0 10px 10px 65px;
3207         }
3208
3209         dt {
3210             height: 25px;
3211             margin-bottom: -25px;
3212         }
3213
3214         td {
3215             font-size: 90%;
3216         }
3217     }
3218
3219     .ui-widget-header {
3220         margin-bottom: 8px;
3221     }
3222 }
3223
3224 .ui-tpicker-grid-label {
3225     background: none;
3226     border: 0;
3227     margin: 0;
3228     padding: 0;
3229 }
3230
3231 .ui_tpicker_second,
3232 .ui_tpicker_millisec,
3233 .ui_tpicker_microsec {
3234     display: none;
3235 }
3236
3237 // jQuery UI Accordion
3238 .ui-accordion-header,
3239 .ui-widget-content .ui-accordion-header {
3240     font-size: 110%;
3241     font-weight: bold;
3242 }
3243
3244 video {
3245     width: 480px;
3246 }
3247
3248 // Bootstrap overrides
3249 button,
3250 .btn {
3251     border-color: #ADADAD #ADADAD #949494;
3252     font-family: $font-main;
3253
3254     &.btn-link {
3255         border: 0;
3256     }
3257 }
3258
3259 .btn-xs,
3260 .btn-group-xs > .btn {
3261     font-size: 10.5px;
3262     padding: 3px 5px;
3263 }
3264
3265 #toolbar {
3266     .dropdown-menu {
3267         border-top-width: 1px;
3268         font-size: 13px;
3269     }
3270
3271     &.floating {
3272         border-radius: 0;
3273         margin-top: 0;
3274     }
3275 }
3276
3277 .dropdown-menu {
3278     border-color: rgba(0, 0, 0, .2);
3279     border-top: 0;
3280     font-size: 12px;
3281
3282     li {
3283         list-style: none outside none;
3284
3285         > a,
3286         &.nav-header {
3287             padding: 4px 20px;
3288             cursor: pointer;
3289
3290             &:hover,
3291             &:focus {
3292                 background-image: linear-gradient(to bottom, #0088CC, #0077B3);
3293                 background-repeat: repeat-x;
3294                 color: #FFFFFF;
3295                 text-decoration: none;
3296             }
3297         }
3298     }
3299 }
3300
3301 .navbar {
3302     color: #333;
3303     min-height: 20px;
3304
3305     .nav {
3306         > li {
3307             list-style: none outside none;
3308             padding: 0 .6em;
3309
3310             > a {
3311                 color: #004D99;
3312                 font-weight: bold;
3313                 padding: .4em .2em;
3314
3315                 &:focus,
3316                 &:hover {
3317                     color: #538200;
3318                 }
3319             }
3320         }
3321
3322         li {
3323             .dropdown {
3324                 &.open > .dropdown-toggle:focus,
3325                 &.active > .dropdown-toggle:focus,
3326                 &.open.active > .dropdown-toggle:focus {
3327                     background: #E6F0F2 none;
3328                     box-shadow: none;
3329                 }
3330             }
3331         }
3332     }
3333
3334
3335 }
3336
3337 #changelanguage {
3338     min-height: $language-footer-min-height;
3339
3340     .dropdown-menu {
3341         > li {
3342             > a,
3343             > span {
3344                 padding: 5px 15px;
3345             }
3346         }
3347     }
3348
3349     .navbar-text {
3350         margin: 0;
3351
3352         span {
3353             display: block;
3354             line-height: 20px;
3355         }
3356     }
3357 }
3358
3359 .loggedout {
3360     color: #004D99;
3361     font-weight: bold;
3362     padding: .4em .2em;
3363 }
3364
3365 .navbar-static-top {
3366     .navbar-inner {
3367         background: #E6F0F2 none;
3368         border: 0;
3369         box-shadow: none;
3370         min-height: 0;
3371         padding-left: 0;
3372     }
3373 }
3374
3375 .navbar-fixed-bottom {
3376     .navbar-inner {
3377         min-height: 0;
3378         padding: .4em 0;
3379     }
3380
3381     .nav > li {
3382         border-right: 1px solid #CCC;
3383
3384         > a {
3385             font-weight: normal;
3386         }
3387
3388         &:last-child {
3389             border-right: 0;
3390         }
3391
3392         &.navbar-text {
3393             line-height: normal;
3394             padding: .4em .7em;
3395         }
3396     }
3397 }
3398
3399 .tooltip {
3400     &.bottom {
3401         .tooltip-arrow {
3402             border-bottom-color: #EEE;
3403         }
3404
3405         .tooltip-inner {
3406             background-color: #FFFFFF;
3407             border: 1px solid rgba(0, 0, 0, .2);
3408             box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
3409             color: #000;
3410             font-size: 120%;
3411             padding: 1em;
3412         }
3413     }
3414 }
3415
3416 .separator {
3417     color: #666;
3418     padding: 0 .2em;
3419 }
3420
3421 .close {
3422     filter: none;
3423     float: none;
3424     font-size: inherit;
3425     font-weight: normal;
3426     line-height: 1.5;
3427     opacity: inherit;
3428     position: inherit;
3429     right: auto;
3430     text-shadow: none;
3431     top: auto;
3432
3433     &:hover {
3434         color: inherit;
3435         filter: inherit;
3436         font-size: inherit;
3437         opacity: inherit;
3438     }
3439 }
3440
3441
3442 label {
3443     .radio &,
3444     .checkbox & {
3445         margin-left: 20px;
3446         padding-left: 0;
3447     }
3448 }
3449
3450 .radio {
3451     input {
3452         &[type="radio"] {
3453             margin-left: 0;
3454             position: relative;
3455         }
3456     }
3457 }
3458
3459 .checkbox {
3460     input {
3461         &[type="checkbox"] {
3462             margin-left: 0;
3463             position: relative;
3464         }
3465     }
3466 }
3467
3468 .modal-header {
3469     .closebtn {
3470         margin-top: 4px;
3471     }
3472 }
3473
3474 .closebtn {
3475     color: #000;
3476     filter: alpha(opacity = 20);
3477     float: right;
3478     font-size: 21px;
3479     font-weight: bold;
3480     line-height: 1;
3481     opacity: .2;
3482     text-shadow: 0 1px 0 #FFFFFF;
3483
3484     &:hover,
3485     &:focus {
3486         color: #000;
3487         cursor: pointer;
3488         filter: alpha(opacity = 50);
3489         opacity: .5;
3490         text-decoration: none;
3491     }
3492 }
3493
3494 .modal-body {
3495     background-color: #FFF;
3496     overflow-y: auto;
3497
3498     fieldset,
3499     ol {
3500         background-color: transparent;
3501         border: 0;
3502         margin: 0;
3503         padding: 0;
3504     }
3505 }
3506
3507 .modal-content {
3508     background-color: #EDF4F6;
3509 }
3510
3511 .btn-group {
3512     label,
3513     select {
3514         font-size: 13px;
3515     }
3516 }
3517
3518 .tooltip-inner {
3519     white-space: pre-wrap;
3520 }
3521
3522 pre {
3523     background-color: transparent;
3524     border: 0;
3525     border-radius: 0;
3526     color: inherit;
3527     display: block;
3528     font-size: inherit;
3529     line-height: inherit;
3530     margin: 0;
3531     padding: 0;
3532     word-break: break-all;
3533     word-wrap: break-word;
3534 }
3535
3536 code {
3537     background-color: transparent;
3538     border-radius: 0;
3539     color: inherit;
3540     font-size: inherit;
3541     padding: 0;
3542 }
3543
3544 .pagination > li > a,
3545 .pagination > li > span {
3546     font-weight: bold;
3547 }
3548
3549 // End Bootstrap overrides
3550
3551 .waiting {
3552     cursor: wait;
3553 }
3554
3555 #jobpanel,
3556 #jobstatus,
3557 #jobfailed {
3558     display: none;
3559 }
3560
3561 #jobstatus {
3562     margin: .4em;
3563 }
3564
3565 #jobprogress {
3566     background: url("../img/progress.png") -300px 0 no-repeat;
3567     border: 1px solid #666;
3568     display: inline-block;
3569     height: 10px;
3570     width: 200px;
3571  }
3572
3573 .progress_panel {
3574     border: 2px solid #EEE;
3575     border-radius: 5px;
3576     clear: both;
3577     font-size: 120%;
3578     margin: 1em 0;
3579     padding: 1em;
3580 }
3581
3582 progress {
3583     width: 50%;
3584 }
3585
3586 #selections {
3587     white-space: normal;
3588     width: 100%;
3589
3590     input {
3591         margin: 0 2px;
3592         vertical-align: middle;
3593     }
3594
3595     span {
3596         background-color: #EBF3FF;
3597         border-radius: 5px;
3598         font-size: 75%;
3599         line-height: 240%;
3600         margin: 3px;
3601         padding: 3px;
3602         white-space: nowrap;
3603
3604         &.selected {
3605             background-color: #CCE0FC;
3606         }
3607     }
3608 }
3609
3610 #changepasswordf {
3611     input {
3612         &[type="text"],
3613         &[type="password"] {
3614             font-family: $font-monospace;
3615             font-size: 140%;
3616             padding: .3em;
3617         }
3618     }
3619 }
3620
3621 // Class to be added to toolbar when it starts being fixed at the top of the screen
3622
3623 .floating {
3624     box-shadow: 0 3px 2px 0 rgba(0, 0, 0, .5);
3625 }
3626
3627 .inline {
3628     display: inline;
3629 }
3630
3631 .nowrap {
3632     white-space: nowrap;
3633 }
3634
3635 .tag_editor {
3636     background: transparent url("../img/edit-tag.png") top left no-repeat;
3637     display: block;
3638     float: left;
3639     height: 16px;
3640     margin: 4px;
3641     overflow: hidden;
3642     text-indent: 100%;
3643     white-space: nowrap;
3644     width: 16px;
3645 }
3646
3647 .browse-controls {
3648     margin-left: 1.1em;
3649     margin-right: .5em;
3650     padding-bottom: 1em;
3651     padding-top: 1em;
3652 }
3653
3654 #browse-return-to-results {
3655     border-top-left-radius: 3px;
3656     border-top-right-radius: 3px;
3657     display: block;
3658     text-align: center;
3659 }
3660
3661 .browse-button {
3662     color: #004D99;
3663     display: inline-block;
3664     padding: .4em .6em;
3665
3666     &:hover {
3667         background: #FAFAFA;
3668     }
3669 }
3670
3671 span {
3672     &.browse-button {
3673         background: #FAFAFA;
3674         color: #222;
3675     }
3676
3677     &.circ-hlt {
3678         color: #CC0000;
3679         font-weight: bold;
3680     }
3681
3682     &.expired {
3683         color: #990000;
3684         font-style: italic;
3685     }
3686
3687     &.name {
3688         font-style: italic;
3689         font-weight: bold;
3690     }
3691
3692     &.permissiondesc {
3693         font-weight: normal;
3694     }
3695
3696     &.required {
3697         color: #C00;
3698         font-style: italic;
3699         margin-left: .5em;
3700     }
3701 }
3702
3703
3704 .result-biblio-itemtype {
3705     float: right;
3706     font-size: 85%;
3707     margin: .5em;
3708     padding: .5em;
3709     text-align: center;
3710
3711     img {
3712         display: block;
3713         margin: auto;
3714         margin-bottom: 2px;
3715     }
3716 }
3717
3718 .browse-label,
3719 .browse-prev-next {
3720     border: 1px solid #B9D8D9;
3721 }
3722
3723 .browse-label {
3724     background-color: #E8F0F6;
3725     border-top-left-radius: 5px;
3726     border-top-right-radius: 5px;
3727 }
3728
3729 .browse-prev-next {
3730     border-bottom-left-radius: 5px;
3731     border-bottom-right-radius: 5px;
3732     border-top-width: 0;
3733 }
3734
3735 #browse-previous {
3736     border-bottom-left-radius: 5px;
3737     border-right: 1px solid #B9D8D9;
3738     padding-right: 1em;
3739 }
3740
3741 #browse-next {
3742     border-bottom-right-radius: 5px;
3743     border-top-width: 0;
3744     float: right;
3745     padding-right: 1em;
3746 }
3747
3748 .loading-overlay {
3749     background-color: #FFFFFF;
3750     cursor: wait;
3751     height: 100%;
3752     left: 0;
3753     opacity: .7;
3754     position: fixed;
3755     top: 0;
3756     width: 100%;
3757     z-index: 1000;
3758
3759     div {
3760         background: transparent url("../img/loading.gif") top left no-repeat;
3761         font-size: 175%;
3762         font-weight: bold;
3763         height: 2em;
3764         left: 50%;
3765         margin: -1em 0 0 -2.5em;
3766         padding-left: 50px;
3767         position: absolute;
3768         top: 50%;
3769         width: 15em;
3770     }
3771 }
3772
3773 #merge_invoices {
3774     display: none;
3775     margin: 1em auto;
3776 }
3777
3778 #merge {
3779     margin: .5em 0 0;
3780 }
3781
3782 #merge_table {
3783     tr {
3784         &.active {
3785             td {
3786                 background-color: #FFFFCC;
3787             }
3788         }
3789     }
3790 }
3791
3792 .renewals {
3793     display: block;
3794     font-size: .8em;
3795     padding: .5em;
3796 }
3797
3798 #transport-types {
3799     padding-top: .5px;
3800 }
3801
3802 #i18nMenu {
3803     .navbar-text {
3804         .currentlanguage {
3805             color: #000;
3806             font-weight: bold;
3807         }
3808     }
3809
3810     a {
3811         &.currentlanguage {
3812             &:link,
3813             &:visited {
3814                 font-weight: bold;
3815             }
3816         }
3817
3818         .sublanguage-selected {
3819             color: #000;
3820             font-weight: bold;
3821         }
3822     }
3823 }
3824
3825 .onsite_checkout-select {
3826     label,
3827     #circ_circulation_issue & {
3828         font-size: inherit;
3829         font-weight: normal;
3830     }
3831 }
3832
3833 .onsite_checkout {
3834     color: #CC0000;
3835 }
3836
3837 .onsite-checkout-only {
3838     background-color: rgba(255, 242, 206, .5);
3839     border: 1px solid #FFF2CE;
3840     border-radius: 4px;
3841 }
3842
3843 .branchgriditem {
3844     background-color: #FFFFFF;
3845     border: 1px solid #B9D8D9;
3846     border-radius: 3px;
3847     display: table-cell;
3848     float: left;
3849     margin: 3px;
3850     padding: .3em;
3851 }
3852
3853 .branchgridrow {
3854     display: table-row;
3855 }
3856
3857 .branchselector {
3858     display: table;
3859 }
3860
3861 .hq-author {
3862     font-weight: bold;
3863 }
3864
3865 #cn_browser_table_wrapper > #cn_browser_table {
3866     margin: auto;
3867     width: 90%;
3868 }
3869
3870 #new_rule {
3871     background-color: #F4F8F9;
3872     border: 2px solid #B9D8D9;
3873     border-radius: 5px;
3874     display: none;
3875     margin: .3em;
3876     padding: .3em;
3877 }
3878
3879
3880 .blocks {
3881     margin-bottom: .3em;
3882 }
3883
3884 .remove_rule {
3885     font-size: 80%;
3886     padding-left: .7em;
3887 }
3888
3889 .underline {
3890     text-decoration: underline;
3891 }
3892
3893 .overline {
3894     text-decoration: overline;
3895 }
3896
3897 .order-control {
3898     padding-right: 5px;
3899 }
3900
3901 #borrower_message {
3902     margin-top: 10px;
3903 }
3904
3905 .form-group {
3906     margin-bottom: 10px;
3907
3908     label {
3909         font-weight: bold;
3910     }
3911 }
3912
3913
3914 .form-message {
3915     background-color: #FFF;
3916     border: 1px solid #A4BEDD;
3917     border-radius: 5px;
3918     margin: 1em;
3919     padding: .5em;
3920 }
3921
3922 .modal-textarea {
3923     width: 98%;
3924 }
3925
3926 #pat_member {
3927     #patron_list_dialog,
3928     #searchresults {
3929         display: none;
3930     }
3931 }
3932
3933 #patron_search {
3934     #filters {
3935         display: none;
3936     }
3937 }
3938
3939 #fixedlengthbuilderaction {
3940     border: 3px solid #E6F0F2;
3941     left: 80%;
3942     padding: 5px;
3943     position: relative;
3944     top: -80px;
3945     width: 12%;
3946 }
3947
3948 .navbar-default {
3949     .navbar-nav {
3950         > .open {
3951             > a {
3952                 &:hover,
3953                 &:focus {
3954                     background: #E6F0F2 none;
3955                     box-shadow: none;
3956                 }
3957             }
3958         }
3959     }
3960
3961     &.navbar-fixed-bottom {
3962         .navbar-nav {
3963             > .open {
3964                 > a {
3965                     &:hover,
3966                     &:focus {
3967                         background: transparent none;
3968                         box-shadow: none;
3969                     }
3970                 }
3971             }
3972         }
3973     }
3974 }
3975
3976 #interlibraryloans {
3977     #dataPreviewLabel {
3978         margin: .3em 0;
3979     }
3980
3981     .bg-info {
3982         overflow: auto;
3983         position: relative;
3984     }
3985
3986     .format {
3987         h4 {
3988             margin-bottom: 20px;
3989         }
3990
3991         h5 {
3992             margin-top: 20px;
3993         }
3994
3995         input {
3996             margin: 10px 0;
3997         }
3998
3999         li {
4000             list-style: none;
4001         }
4002     }
4003
4004     #add-new-fields {
4005         margin: 1em;
4006     }
4007
4008     #column-toggle,
4009     #reset-toggle {
4010         font-weight: 700;
4011         line-height: 1.5em;
4012         margin: 15px 0;
4013     }
4014
4015     #freeform-fields {
4016         .custom-name {
4017             margin-right: 1em;
4018             text-align: right;
4019             width: 9em;
4020         }
4021
4022         .delete-new-field {
4023             margin-left: 1em;
4024         }
4025     }
4026
4027     #search-summary {
4028         position: absolute;
4029         top: 50%;
4030         transform: translateY(-50%);
4031     }
4032 }
4033
4034 .ill-view-panel {
4035     margin-top: 15px;
4036
4037     .notesopac {
4038         display: inline-block;
4039     }
4040 }
4041
4042 #requestattributes {
4043     font-family: monospace;
4044     line-height: 1.3em;
4045 }
4046
4047 #ill-requests {
4048     width: 100% !important;
4049 }
4050
4051 #stockrotation {
4052     h3 {
4053         margin: 30px 0 10px 0;
4054     }
4055     .dialog {
4056         h3 {
4057             margin: 10px 0;
4058         }
4059         margin-bottom: 20px;
4060     }
4061     .highlight_stage {
4062         font-weight: bold;
4063     }
4064 }
4065
4066 #catalog_stockrotation .highlight_stage {
4067     font-weight: bold;
4068 }
4069
4070 #stockrotation {
4071     #rota_form {
4072         textarea {
4073             width: 300px;
4074             height: 100px;
4075         }
4076         #name {
4077             width: 300px;
4078         }
4079         fieldset {
4080             width: auto;
4081         }
4082     }
4083     #stage_form fieldset, #add_rota_item_form fieldset {
4084         width: auto;
4085     }
4086     .dialog.alert {
4087         ul {
4088             margin: 20px 0;
4089         }
4090         li {
4091             list-style-type: none;
4092         }
4093     }
4094 }
4095
4096 #catalog_stockrotation {
4097     .item_select_rota {
4098         vertical-align: middle;
4099     }
4100     h1 {
4101         margin-bottom: 20px;
4102     }
4103 }
4104
4105 #stockrotation td.actions, #catalog_stockrotation td.actions {
4106     vertical-align: middle;
4107 }
4108
4109 #stockrotation .stage, #catalog_stockrotation .stage {
4110     display: inline-block;
4111     padding: 5px 7px;
4112     margin: 3px 0 3px 0;
4113     border-radius: 5px;
4114     background-color: rgba(0, 0, 0, 0.1);
4115 }
4116
4117 #stage_list_headings {
4118     font-weight: bold;
4119     span {
4120         padding: 3px;
4121     }
4122 }
4123
4124 #manage_stages {
4125     ul {
4126         padding-left: 0;
4127     }
4128     li {
4129         list-style: none;
4130         margin-bottom: 5px;
4131         span {
4132             padding: 6px 3px;
4133         }
4134     }
4135     .stagename {
4136         width: 15em;
4137         display: inline-block;
4138     }
4139     .stageduration {
4140         width: 10em;
4141         display: inline-block;
4142     }
4143     .stageactions {
4144         display: inline-block;
4145     }
4146     li:nth-child(odd) {
4147         background-color: #F3F3F3;
4148     }
4149     .drag_handle {
4150         margin-right: 6px;
4151         cursor: move;
4152     }
4153     .drag_placeholder {
4154         height: 2em;
4155         border: 1px dotted #aaa;
4156     }
4157     h3 {
4158         display: inline-block;
4159     }
4160     #ajax_status {
4161         display: inline-block;
4162         border: 1px solid #bcbcbc;
4163         border-radius: 5px;
4164         padding: 5px;
4165         margin-left: 10px;
4166         background: #f3f3f3;
4167     }
4168     #manage_stages_help {
4169         margin: 20px 0;
4170     }
4171 }
4172
4173 #helper {
4174     span {
4175         display: none;
4176     }
4177 }
4178
4179 #logged-in-info-full {
4180     display: none;
4181 }
4182
4183 .loggedin-menu-label {
4184     color: #777;
4185     font-size: 12px;
4186     line-height: 1.42857143;
4187     padding: 4px 12px;
4188     white-space: nowrap;
4189
4190     span {
4191         color: #000;
4192         font-weight: bold;
4193     }
4194
4195     &.divider {
4196         padding: 0;
4197     }
4198 }
4199
4200 .lastborrower {
4201     background-color: #E6F0F2;
4202     border: 1px solid #95C6D0;
4203     box-shadow: 1px 1px 1px 0 #999;
4204     color: #CC0000;
4205     margin: .4em 0;
4206     padding: .3em .5em .3em .5em;
4207 }
4208
4209 #lastborrower-ref {
4210     border-radius: 5px 0px 0px 5px;
4211     float: left;
4212 }
4213
4214 #lastborrower-remove {
4215     border-radius: 0px 5px 5px 0px;
4216     cursor: pointer;
4217     float: right;
4218 }
4219
4220 #lastborrower-window {
4221     display: none;
4222     position: absolute;
4223     right: 5px;
4224     top: 100px;
4225 }
4226
4227 /* ==== MODULE LINKS - Start ==== */
4228 .buttons-list {
4229     // List containing the module links
4230     margin-bottom: 30px;
4231     padding: 0;
4232
4233     li {
4234         // Standard attributes for the list elements
4235         list-style-type: none;
4236
4237         a {
4238             &.circ-button {
4239                 // Class used for each module link
4240                 background-color: #F4F8F9;
4241                 background-position: 5px 3px;
4242                 background-repeat: no-repeat;
4243                 border: 2px solid #B9D8D9;
4244                 border-radius: 6px;
4245                 box-sizing: content-box;
4246                 color: #000000;
4247                 display: block;
4248                 font-size: 110%;
4249                 font-weight: bold;
4250                 margin: .5em 0;
4251                 max-width: 260px;
4252                 padding: 8px;
4253                 text-decoration: none;
4254
4255                 &:hover {
4256                     // Class used for each module link hover state
4257                     border-color: #538200;
4258                     color: #538200;
4259                 }
4260             }
4261         }
4262     }
4263 }
4264
4265 .about h2 {
4266     border-bottom: 1px solid #B9D8D9;
4267     padding: .5em .2em;
4268     margin:  .5em 0;
4269 }
4270
4271 .columns-3 {
4272     columns: 3 auto;
4273     column-gap: 2.5em;
4274 }
4275
4276 .columns-4 {
4277     columns: 4 auto;
4278     column-gap: 2em;
4279 }
4280
4281 // ==== MODULE LINKS - End ====
4282
4283 #catalog-search-link {
4284     border-right: 1px solid lighten( #E6F0F2, 15% );
4285     padding-right: .3em;
4286 }
4287
4288 #catalog-search-dropdown {
4289     padding: 0;
4290
4291     & > a {
4292         border-left: 1px solid darken( #B4D2D8, 5% );
4293         margin-right: .6em;
4294         padding: .4em .6em;
4295
4296         &:hover,
4297         &.catalog-search-dropdown-hover {
4298             background-color: darken( #E6F0F2, 5% );
4299             border-left: 1px solid darken( #B4D2D8, 15% );
4300         }
4301     }
4302 }
4303
4304 .adlibris-cover {
4305     max-height: 120px;
4306 }
4307
4308 .adlibris-cover-big {
4309     max-height: 200px;
4310 }
4311
4312 #tools_holidays {
4313     .radio,
4314     .checkbox {
4315         label {
4316             margin-left: 0;
4317         }
4318     }
4319 }
4320
4321 @media (min-width: 200px) {
4322     .navbar-nav > li {
4323         float: left;
4324     }
4325
4326     .navbar-right {
4327         float: right !important;
4328         margin-right: -15px;
4329     }
4330
4331     .navbar-nav {
4332         float: left;
4333         margin: 0;
4334
4335         .open {
4336             .dropdown-menu {
4337                 background-color: #FFF;
4338                 border: 1px solid rgba(0, 0, 0, .15);
4339                 box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
4340                 float: left;
4341                 position: absolute;
4342                 width: auto;
4343
4344                 &.dropdown-menu-left {
4345                     left: auto;
4346                     right: 0;
4347                 }
4348
4349                 &.dropdown-menu-right {
4350                     right: auto;
4351                 }
4352             }
4353         }
4354     }
4355
4356     .navbar-default {
4357         .navbar-nav {
4358             .open {
4359                 .dropdown-menu {
4360                     > li {
4361                         > a {
4362                             &:hover,
4363                             &:focus {
4364                                 background-color: #0081C2;
4365                                 background-image: linear-gradient(to bottom, #0088CC, #0077B3);
4366                                 background-repeat: repeat-x;
4367                                 color: #FFFFFF;
4368                                 text-decoration: none;
4369                             }
4370                         }
4371                     }
4372                 }
4373             }
4374         }
4375     }
4376 }
4377
4378 @media (min-width: 800px) {
4379     #helper {
4380         i {
4381             display: none;
4382         }
4383
4384         span {
4385             display: inline;
4386         }
4387     }
4388
4389     #logged-in-info-full {
4390         display: inline;
4391     }
4392
4393     #logged-in-info-brief {
4394         display: none;
4395     }
4396
4397     .loggedin-menu-label {
4398         display: none;
4399     }
4400 }
4401
4402 div#makechart ol li {
4403     list-style: none;
4404 }