]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/css/circ.css.tt2
05cea1b0991751597f1cb3cce4bc5922b8197cef
[Evergreen.git] / Open-ILS / src / templates / staff / css / circ.css.tt2
1
2 /* push the patron summary up to compensate for the extra
3  * padding required to support the fixed navigation */
4 .patron-summary-grid-wrapper {
5   margin-top: 20px;
6 }
7
8 /** style to make a grid look like a striped table */
9 #patron-summary-grid div.row {padding: 3px; border-right: 2px solid rgb(248, 248, 248);}
10 #patron-summary-grid div.row:nth-child(odd) {background-color: rgb(248, 248, 248);}
11
12 /* there are bootstrap tyles for error, warning, etc., 
13 but the ones I'm finding aren't quite cutting it..*/
14 .patron-summary-alert {color: red; font-weight:bold}
15 .patron-summary-alert-small {color: red}
16 .patron-summary-divider { border-top: 1px solid #CCC}
17 .patron-summary-act-link {font-size: .8em;}
18
19 /* FIXME: use .barcode instead */
20 #patron-checkout-barcode,
21 #patron-renewal-barcode,
22 #patron-checkin-barcode { width: 16em; }
23
24 #patron-search-form div.form-group {
25   margin-bottom: 5px;
26 }
27
28 #patron-fixed-tabs {
29     position: fixed;
30     top: 50px;
31     right: 15px;
32     left: 45px;
33     padding-top: 20px;
34     padding-top: 10px;
35     z-index: 1;
36     background-color: rgba(255,255,255,1);
37 }
38
39 .patron-name-header {
40   margin-top: 20px;
41 }
42
43 /* let search form elements fill their containers w/ slight padding */
44 #patron-search-form-row {margin-left: 0px;}
45 #patron-search-form div.col-md-2 { padding: 2px; }
46 #patron-search-form input:not([type="checkbox"]) { width: 100%; }
47 #patron-search-form .eg-org-selector,
48 #patron-search-form .eg-org-selector button,
49 #patron-search-form .patron-search-selector,
50   #patron-search-form .patron-search-selector button { 
51   width: 100%; 
52   text-align: left
53 }
54
55
56 #patron-payments-spreadsheet {
57   margin-top: 10px;
58   padding-top: 10px;
59   border-top: 1px solid #aaa;
60 }
61
62 #patron-payments-spreadsheet .flex-cell {
63   margin: 2px;
64 }
65
66 #patron-payments-spreadsheet .flex-cell.well {
67   min-height: 1.5em;
68   margin-bottom: 0px; /* bootstrap default is 20px */
69 }
70
71 #hold-notify-settings div.row { margin-top: 12px; }
72 #hold-notify-settings div.row:not(.header-row):nth-child(odd) {
73   background-color: rgb(248, 248, 248);
74 }
75 #hold-notify-settings div.row:not(.header-row) {
76   border-bottom: 1px solid #CCC;
77 }
78
79 /* -- patron registration -- */
80
81 /* make all input widgets the same width, i.e. fill their column */
82
83 .reg-field-input {font-weight: 700; }
84 .reg-field-input input:not([type="checkbox"]) { width: 100%; }
85
86 /* selector contents float left to allow depth-based left-padding */
87 .reg-field-input .eg-org-selector,
88 .reg-field-input .btn-group {
89   width: 100%; 
90   text-align: left;
91 }
92
93 /* selector button labels float right */
94 .reg-field-input .eg-org-selector button,
95 .reg-field-input .btn-group > button {
96   width: 100%; 
97   text-align: right;
98 }
99
100
101 /* floating div along top-right with field documentation */
102 #reg-field-doc {
103     position: fixed;
104     top:160px;
105     right:20px;
106     border:2px dashed #d9e8f9;
107     -moz-border-radius: 10px;
108     font-weight: bold;
109     padding: 20px;
110     margin-top: 20px;
111 }
112
113 #reg-field-doc legend {
114     /* otherwise the font size is quite large */
115     font-size: 100%;
116 }
117
118 .reg-field-row {
119     padding-bottom: 3px; 
120 }
121
122 .reg-field-row label {
123     font-weight: normal;
124 }
125
126 .patron-reg-fixed-bar {
127     position: fixed;
128     top:50px;
129     right: 20px;
130     left: 20px;
131     padding-top: 20px;
132     padding-bottom: 10px;
133     z-index: 1;
134     background-color: rgba(255,255,255,1);
135 }
136
137 .patron-reg-actions-bar {
138   padding: 5px;
139 }
140 .patron-reg-actions-bar span {
141   font-weight: bold;
142 }
143
144 /* -- end patron registration -- */
145
146 [%# 
147 vim: ft=css 
148 %]