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