Bug 32046: (follow-up) Accommodate the inclusion of item information
[koha.git] / koha-tmpl / intranet-tmpl / prog / css / preferences.css
1 .preference-email,
2 .preference-url,
3 .preference-multi,
4 .preference-long,
5 .preference-file,
6 .preference-modalselect {
7     width: 20em;
8 }
9
10 .preference-short {
11     width: 10em;
12 }
13
14 .preference-integer, .preference-percent, .preference-date, .preference-currency {
15     width: 5em;
16 }
17
18 input[type="text"].modalselect {
19     cursor: pointer;
20 }
21
22 input[type="text"].modalselect:hover {
23     background-color: #FFC;
24 }
25
26 textarea.preference {
27     width: 35em;
28         height: 20em;
29         display: block;
30 }
31
32 textarea.preference-code, .preference-file {
33         font-family: monospace;
34 }
35
36 a.expand-textarea {
37     display: block;
38 }
39 dl {
40         margin-left : 1em;
41 }
42 dt {
43         padding : .1em;
44 }
45 h1 {
46         font-size : 149%;
47 }
48 h2 {
49         font-size : 134%;
50 }
51
52 table {
53         width : 100%;
54 }
55
56 caption {
57         color : #003399;
58 }
59
60 h3 {
61         color : #003366;
62         margin : .4em 0;
63 }
64
65 /* https://css-tricks.com/hash-tag-links-padding/#article-header-id-4 */
66 h3:target {
67     margin-top: -12px;
68     padding-top: 50px;
69 }
70
71 h3:target::before {
72     padding: 0 5px;
73     position: absolute;
74     top: 25px;
75 }
76
77 h3 i {
78     color: #336699;
79 }
80
81 h3.expanded,
82 h3.collapsed {
83     cursor: pointer;
84 }
85
86 h3.expanded i.fa.fa-caret-down::before {
87     content: "\f0d7";
88 }
89
90 h3.collapsed i.fa.fa-caret-down::before {
91     content: "\f0da";
92 }
93
94 .humanMsg strong {
95         display: block;
96         font-weight: normal;
97 }
98
99 #toolbar.floating {
100     border-radius: 0;
101     box-shadow: 0 0 2px 1px rgba(0,0,0,.4);
102     margin-top: 0;
103     z-index: 100;
104 }
105
106 .loading {
107     display: inline-block;
108     height : 16px;
109     width: 16px;
110     background: transparent url("../img/spinner-small.gif") top left no-repeat;
111     padding : 0 4px;
112     vertical-align: middle;
113 }
114
115 span.overridden {
116     font-style: italic;
117     font-weight: bold;
118     color: red;
119 }
120
121 .sortable {
122     margin-left: 0;
123     max-width: 20em;
124     padding: .5em 0;
125 }
126
127 .sortable label {
128     font-weight: bold;
129 }
130
131 .sortable li {
132     background: #FCFCFC url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMAQMAAABoTh6ZAAAABlBMVEVMaXHExMQ/ZYtiAAAAAXRSTlMAQObYZgAAABNJREFUeNpjYGBgMDYAIQjAxgYAKfECU0ml038AAAAASUVORK5CYII=") repeat-y;
133     border:  1px solid #EEE;
134     cursor: move;
135     font-weight: bold;
136     list-style-type: none;
137     margin: .5em 0;
138     padding: .1em .5em;
139     padding-left:  20px;
140 }
141
142 .sortable li:hover {
143     background-color: #FFC;
144 }
145
146 .sortable li li {
147     background: transparent none;
148     border: 0;
149     font-weight: normal;
150     padding-left: 0;
151 }
152
153 .sortable li li label {
154     font-weight: normal;
155 }
156
157 .sortable li.ui-sortable-helper {
158     background-color: #FFC;
159 }
160
161 .CodeMirror {
162     border: 1px solid #EEE;
163     margin: 1em 1em 1em 0;
164     resize:  vertical;
165 }
166
167 #prefModal label {
168     display: block;
169     font-weight: bold;
170     line-height: 1.5em;
171 }
172
173 .dbcolumn {
174     font-weight: normal;
175     font-family: monospace;
176     color: #666;
177 }
178 #menu ul li.active a.pref_sublink {
179     hyphens:  auto;
180     margin: 0;
181 }
182
183 #menu ul ul {
184     padding-left: 0;
185 }