blob: ff022b795f12edab4f4bcac8e247d5327d549422 [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05303 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05306
7h1,
8h2,
9h3,
10h4,
11h5,
12h6 {
13 margin: 0;
14 font-weight: bold;
15 color: #333333;
16 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053017}
18h1 small,
19h2 small,
20h3 small,
21h4 small,
22h5 small,
23h6 small {
24 font-weight: normal;
25 color: #999999;
26}
27h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053028 font-size: 280%;
29 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053030}
31h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053032 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053033}
34h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053035 font-size: 200%;
36 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053037}
38h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053039 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053040}
41h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053042 font-size: 210%;
43 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053044}
45h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053046 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053047}
48h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053049 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053050}
51h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053052 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053053}
54h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053055 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053056}
57h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053058 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053059}
60h6 {
61 font-size: 11px;
62 color: #999999;
63 text-transform: uppercase;
64}
Rushabh Mehta519f70b2012-03-09 16:44:21 +053065
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053066/*
67 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +053068 */
69.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +053070 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053071 float: right;
72 font-size: 20px;
73 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053074 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053075 color: #000000;
76 text-shadow: 0 1px 0 #ffffff;
77 opacity: 0.2;
78 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +053079}
Rushabh Mehta6e156c72012-02-21 11:19:24 +053080.close:hover {
81 color: #000000;
82 text-decoration: none;
83 opacity: 0.4;
84 filter: alpha(opacity=40);
85 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053086}
87.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +053088 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053089 padding: 4px 10px 4px;
90 font-size: 13px;
91 line-height: 18px;
92 color: #333333;
93 text-align: center;
94 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
95 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053096 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
97 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
98 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
99 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
100 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
101 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530102 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530103 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530104 border: 1px solid #ccc;
105 border-bottom-color: #bbb;
106 -webkit-border-radius: 4px;
107 -moz-border-radius: 4px;
108 border-radius: 4px;
109 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
110 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
111 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530112 cursor: pointer;
113 *margin-left: .3em;
114}
115.btn:first-child {
116 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530117}
118.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530119 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530120 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530121 background-color: #e6e6e6;
122 background-position: 0 -15px;
123 -webkit-transition: background-position 0.1s linear;
124 -moz-transition: background-position 0.1s linear;
125 -ms-transition: background-position 0.1s linear;
126 -o-transition: background-position 0.1s linear;
127 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530128}
129.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530130 outline: thin dotted;
131 outline: 5px auto -webkit-focus-ring-color;
132 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530133}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530134.btn.active, .btn:active {
135 background-image: none;
136 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
137 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
138 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
139 background-color: #e6e6e6;
140 background-color: #d9d9d9 \9;
141 color: rgba(0, 0, 0, 0.5);
142 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530143}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530144.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530145 cursor: default;
146 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530147 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530148 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530149 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530150 -webkit-box-shadow: none;
151 -moz-box-shadow: none;
152 box-shadow: none;
153}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530154.btn-large {
155 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530156 font-size: 15px;
157 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530158 -webkit-border-radius: 5px;
159 -moz-border-radius: 5px;
160 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530161}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530162.btn-large .icon {
163 margin-top: 1px;
164}
165.btn-small {
166 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530167 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530168 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530169}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530170.btn-small .icon {
171 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530172}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530173.btn-primary,
174.btn-primary:hover,
175.btn-warning,
176.btn-warning:hover,
177.btn-danger,
178.btn-danger:hover,
179.btn-success,
180.btn-success:hover,
181.btn-info,
182.btn-info:hover {
183 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
184 color: #ffffff;
185}
186.btn-primary.active,
187.btn-warning.active,
188.btn-danger.active,
189.btn-success.active,
190.btn-info.active {
191 color: rgba(255, 255, 255, 0.75);
192}
193.btn-primary {
194 background-color: #006dcc;
195 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
196 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
197 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
198 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
199 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
200 background-image: linear-gradient(top, #0088cc, #0044cc);
201 background-repeat: repeat-x;
202 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
203 border-color: #0044cc #0044cc #002a80;
204 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
205 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
206}
207.btn-primary:hover,
208.btn-primary:active,
209.btn-primary.active,
210.btn-primary.disabled,
211.btn-primary[disabled] {
212 background-color: #0044cc;
213}
214.btn-primary:active, .btn-primary.active {
215 background-color: #003399 \9;
216}
217.btn-warning {
218 background-color: #faa732;
219 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
220 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
221 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
222 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
223 background-image: -o-linear-gradient(top, #fbb450, #f89406);
224 background-image: linear-gradient(top, #fbb450, #f89406);
225 background-repeat: repeat-x;
226 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
227 border-color: #f89406 #f89406 #ad6704;
228 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
229 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
230}
231.btn-warning:hover,
232.btn-warning:active,
233.btn-warning.active,
234.btn-warning.disabled,
235.btn-warning[disabled] {
236 background-color: #f89406;
237}
238.btn-warning:active, .btn-warning.active {
239 background-color: #c67605 \9;
240}
241.btn-danger {
242 background-color: #da4f49;
243 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
244 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
245 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
246 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
247 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
248 background-image: linear-gradient(top, #ee5f5b, #bd362f);
249 background-repeat: repeat-x;
250 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
251 border-color: #bd362f #bd362f #802420;
252 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
253 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
254}
255.btn-danger:hover,
256.btn-danger:active,
257.btn-danger.active,
258.btn-danger.disabled,
259.btn-danger[disabled] {
260 background-color: #bd362f;
261}
262.btn-danger:active, .btn-danger.active {
263 background-color: #942a25 \9;
264}
265.btn-success {
266 background-color: #5bb75b;
267 background-image: -moz-linear-gradient(top, #62c462, #51a351);
268 background-image: -ms-linear-gradient(top, #62c462, #51a351);
269 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
270 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
271 background-image: -o-linear-gradient(top, #62c462, #51a351);
272 background-image: linear-gradient(top, #62c462, #51a351);
273 background-repeat: repeat-x;
274 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
275 border-color: #51a351 #51a351 #387038;
276 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
277 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
278}
279.btn-success:hover,
280.btn-success:active,
281.btn-success.active,
282.btn-success.disabled,
283.btn-success[disabled] {
284 background-color: #51a351;
285}
286.btn-success:active, .btn-success.active {
287 background-color: #408140 \9;
288}
289.btn-info {
290 background-color: #49afcd;
291 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
292 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
293 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
294 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
295 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
296 background-image: linear-gradient(top, #5bc0de, #2f96b4);
297 background-repeat: repeat-x;
298 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
299 border-color: #2f96b4 #2f96b4 #1f6377;
300 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
301 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
302}
303.btn-info:hover,
304.btn-info:active,
305.btn-info.active,
306.btn-info.disabled,
307.btn-info[disabled] {
308 background-color: #2f96b4;
309}
310.btn-info:active, .btn-info.active {
311 background-color: #24748c \9;
312}
313button.btn, input[type="submit"].btn {
314 *padding-top: 2px;
315 *padding-bottom: 2px;
316}
317button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530318 padding: 0;
319 border: 0;
320}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530321button.btn.large, input[type="submit"].btn.large {
322 *padding-top: 7px;
323 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530324}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530325button.btn.small, input[type="submit"].btn.small {
326 *padding-top: 3px;
327 *padding-bottom: 3px;
328}
329.btn-group {
330 position: relative;
331 *zoom: 1;
332 *margin-left: .3em;
333}
334.btn-group:before, .btn-group:after {
335 display: table;
336 content: "";
337}
338.btn-group:after {
339 clear: both;
340}
341.btn-group:first-child {
342 *margin-left: 0;
343}
344.btn-group + .btn-group {
345 margin-left: 5px;
346}
347.btn-toolbar {
348 margin-top: 9px;
349 margin-bottom: 9px;
350}
351.btn-toolbar .btn-group {
352 display: inline-block;
353 *display: inline;
354 /* IE7 inline-block hack */
355
356 *zoom: 1;
357}
358.btn-group .btn {
359 position: relative;
360 float: left;
361 margin-left: -1px;
362 -webkit-border-radius: 0;
363 -moz-border-radius: 0;
364 border-radius: 0;
365}
366.btn-group .btn:first-child {
367 margin-left: 0;
368 -webkit-border-top-left-radius: 4px;
369 -moz-border-radius-topleft: 4px;
370 border-top-left-radius: 4px;
371 -webkit-border-bottom-left-radius: 4px;
372 -moz-border-radius-bottomleft: 4px;
373 border-bottom-left-radius: 4px;
374}
375.btn-group .btn:last-child, .btn-group .dropdown-toggle {
376 -webkit-border-top-right-radius: 4px;
377 -moz-border-radius-topright: 4px;
378 border-top-right-radius: 4px;
379 -webkit-border-bottom-right-radius: 4px;
380 -moz-border-radius-bottomright: 4px;
381 border-bottom-right-radius: 4px;
382}
383.btn-group .btn.large:first-child {
384 margin-left: 0;
385 -webkit-border-top-left-radius: 6px;
386 -moz-border-radius-topleft: 6px;
387 border-top-left-radius: 6px;
388 -webkit-border-bottom-left-radius: 6px;
389 -moz-border-radius-bottomleft: 6px;
390 border-bottom-left-radius: 6px;
391}
392.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
393 -webkit-border-top-right-radius: 6px;
394 -moz-border-radius-topright: 6px;
395 border-top-right-radius: 6px;
396 -webkit-border-bottom-right-radius: 6px;
397 -moz-border-radius-bottomright: 6px;
398 border-bottom-right-radius: 6px;
399}
400.btn-group .btn:hover,
401.btn-group .btn:focus,
402.btn-group .btn:active,
403.btn-group .btn.active {
404 z-index: 2;
405}
406.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
407 outline: 0;
408}
409.btn-group .dropdown-toggle {
410 padding-left: 8px;
411 padding-right: 8px;
412 -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
413 -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
414 box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
415 *padding-top: 5px;
416 *padding-bottom: 5px;
417}
418.btn-group.open {
419 *z-index: 1000;
420}
421.btn-group.open .dropdown-menu {
422 display: block;
423 margin-top: 1px;
424 -webkit-border-radius: 5px;
425 -moz-border-radius: 5px;
426 border-radius: 5px;
427}
428.btn-group.open .dropdown-toggle {
429 background-image: none;
430 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
431 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
432 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
433}
434.btn .caret {
435 margin-top: 7px;
436 margin-left: 0;
437}
438.btn:hover .caret, .open.btn-group .caret {
439 opacity: 1;
440 filter: alpha(opacity=100);
441}
442.btn-primary .caret,
443.btn-danger .caret,
444.btn-info .caret,
445.btn-success .caret {
446 border-top-color: #ffffff;
447 opacity: 0.75;
448 filter: alpha(opacity=75);
449}
450.btn-small .caret {
451 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530452}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530453
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530454/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530455 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530456 */
457.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530458 margin-left: 0;
459 margin-bottom: 18px;
460 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530461}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530462.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530463 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530464}
465.nav > li > a:hover {
466 text-decoration: none;
467 background-color: #eeeeee;
468}
469.nav-list {
470 padding-left: 14px;
471 padding-right: 14px;
472 margin-bottom: 0;
473}
474.nav-list > li > a, .nav-list .nav-header {
475 display: block;
476 padding: 3px 15px;
477 margin-left: -15px;
478 margin-right: -15px;
479 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
480}
481.nav-list .nav-header {
482 font-size: 11px;
483 font-weight: bold;
484 line-height: 18px;
485 color: #999999;
486 text-transform: uppercase;
487}
488.nav-list > li + .nav-header {
489 margin-top: 9px;
490}
491.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530492 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530493 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
494 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530495}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530496.nav-list [class^="icon-"] {
497 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530498}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530499.nav-tabs, .nav-pills {
500 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530501}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530502.nav-tabs:before,
503.nav-pills:before,
504.nav-tabs:after,
505.nav-pills:after {
506 display: table;
507 content: "";
508}
509.nav-tabs:after, .nav-pills:after {
510 clear: both;
511}
512.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530513 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530514}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530515.nav-tabs > li > a, .nav-pills > li > a {
516 padding-right: 12px;
517 padding-left: 12px;
518 margin-right: 2px;
519 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530520}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530521.nav-tabs {
522 border-bottom: 1px solid #ddd;
523}
524.nav-tabs > li {
525 margin-bottom: -1px;
526}
527.nav-tabs > li > a {
528 padding-top: 9px;
529 padding-bottom: 9px;
530 border: 1px solid transparent;
531 -webkit-border-radius: 4px 4px 0 0;
532 -moz-border-radius: 4px 4px 0 0;
533 border-radius: 4px 4px 0 0;
534}
535.nav-tabs > li > a:hover {
536 border-color: #eeeeee #eeeeee #dddddd;
537}
538.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
539 color: #555555;
540 background-color: #ffffff;
541 border: 1px solid #ddd;
542 border-bottom-color: transparent;
543 cursor: default;
544}
545.nav-pills > li > a {
546 padding-top: 8px;
547 padding-bottom: 8px;
548 margin-top: 2px;
549 margin-bottom: 2px;
550 -webkit-border-radius: 5px;
551 -moz-border-radius: 5px;
552 border-radius: 5px;
553}
554.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530555 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530556 background-color: #0088cc;
557}
558.nav-stacked > li {
559 float: none;
560}
561.nav-stacked > li > a {
562 margin-right: 0;
563}
564.nav-tabs.nav-stacked {
565 border-bottom: 0;
566}
567.nav-tabs.nav-stacked > li > a {
568 border: 1px solid #ddd;
569 -webkit-border-radius: 0;
570 -moz-border-radius: 0;
571 border-radius: 0;
572}
573.nav-tabs.nav-stacked > li:first-child > a {
574 -webkit-border-radius: 4px 4px 0 0;
575 -moz-border-radius: 4px 4px 0 0;
576 border-radius: 4px 4px 0 0;
577}
578.nav-tabs.nav-stacked > li:last-child > a {
579 -webkit-border-radius: 0 0 4px 4px;
580 -moz-border-radius: 0 0 4px 4px;
581 border-radius: 0 0 4px 4px;
582}
583.nav-tabs.nav-stacked > li > a:hover {
584 border-color: #ddd;
585 z-index: 2;
586}
587.nav-pills.nav-stacked > li > a {
588 margin-bottom: 3px;
589}
590.nav-pills.nav-stacked > li:last-child > a {
591 margin-bottom: 1px;
592}
593.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
594 margin-top: 1px;
595 border-width: 1px;
596}
597.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530598 -webkit-border-radius: 4px;
599 -moz-border-radius: 4px;
600 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530601}
602.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
603 border-top-color: #0088cc;
604 margin-top: 6px;
605}
606.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
607 border-top-color: #005580;
608}
609.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
610 border-top-color: #333333;
611}
612.nav > .dropdown.active > a:hover {
613 color: #000000;
614 cursor: pointer;
615}
616.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
617 color: #ffffff;
618 background-color: #999999;
619 border-color: #999999;
620}
621.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
622 border-top-color: #ffffff;
623 opacity: 1;
624 filter: alpha(opacity=100);
625}
626
627.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530628 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530629 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530630}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530631.navbar-inner {
632 padding-left: 20px;
633 padding-right: 20px;
634 background-color: #2c2c2c;
635 background-image: -moz-linear-gradient(top, #333333, #222222);
636 background-image: -ms-linear-gradient(top, #333333, #222222);
637 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
638 background-image: -webkit-linear-gradient(top, #333333, #222222);
639 background-image: -o-linear-gradient(top, #333333, #222222);
640 background-image: linear-gradient(top, #333333, #222222);
641 background-repeat: repeat-x;
642 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
643 -webkit-border-radius: 4px;
644 -moz-border-radius: 4px;
645 border-radius: 4px;
646 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
647 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
648 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
649}
650.btn-navbar {
651 display: none;
652 float: right;
653 padding: 7px 10px;
654 margin-left: 5px;
655 margin-right: 5px;
656 background-color: #2c2c2c;
657 background-image: -moz-linear-gradient(top, #333333, #222222);
658 background-image: -ms-linear-gradient(top, #333333, #222222);
659 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
660 background-image: -webkit-linear-gradient(top, #333333, #222222);
661 background-image: -o-linear-gradient(top, #333333, #222222);
662 background-image: linear-gradient(top, #333333, #222222);
663 background-repeat: repeat-x;
664 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
665 border-color: #222222 #222222 #000000;
666 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
667 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
668 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
669 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
670 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
671}
672.btn-navbar:hover,
673.btn-navbar:active,
674.btn-navbar.active,
675.btn-navbar.disabled,
676.btn-navbar[disabled] {
677 background-color: #222222;
678}
679.btn-navbar:active, .btn-navbar.active {
680 background-color: #080808 \9;
681}
682.btn-navbar .icon-bar {
683 display: block;
684 width: 18px;
685 height: 2px;
686 background-color: #f5f5f5;
687 -webkit-border-radius: 1px;
688 -moz-border-radius: 1px;
689 border-radius: 1px;
690 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
691 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
692 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
693}
694.btn-navbar .icon-bar + .icon-bar {
695 margin-top: 3px;
696}
697.nav-collapse.collapse {
698 height: auto;
699}
700.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530701 text-decoration: none;
702}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530703.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530704 float: left;
705 display: block;
706 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530707 font-size: 20px;
708 font-weight: 200;
709 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530710 color: #ffffff;
711}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530712.navbar .navbar-text {
713 margin-bottom: 0;
714 line-height: 40px;
715 color: #999999;
716}
717.navbar .navbar-text a:hover {
718 color: #ffffff;
719 background-color: transparent;
720}
721.navbar .btn, .navbar .btn-group {
722 margin-top: 5px;
723}
724.navbar .btn-group .btn {
725 margin-top: 0;
726}
727.navbar-form {
728 margin-bottom: 0;
729 *zoom: 1;
730}
731.navbar-form:before, .navbar-form:after {
732 display: table;
733 content: "";
734}
735.navbar-form:after {
736 clear: both;
737}
738.navbar-form input, .navbar-form select {
739 display: inline-block;
740 margin-top: 5px;
741 margin-bottom: 0;
742}
743.navbar-form .radio, .navbar-form .checkbox {
744 margin-top: 5px;
745}
746.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
747 margin-top: 3px;
748}
749.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530750 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530751 float: left;
752 margin-top: 6px;
753 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530754}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530755.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530756 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530757 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
758 font-size: 13px;
759 font-weight: normal;
760 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530761 color: #ffffff;
762 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530763 background: #666;
764 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530765 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530766 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
767 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
768 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530769 -webkit-transition: none;
770 -moz-transition: none;
771 -ms-transition: none;
772 -o-transition: none;
773 transition: none;
774}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530775.navbar-search .search-query :-moz-placeholder {
776 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530777}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530778.navbar-search .search-query::-webkit-input-placeholder {
779 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530780}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530781.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530782 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530783 background-color: #999999;
784 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530785}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530786.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530787 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530788 color: #333333;
789 text-shadow: 0 1px 0 #ffffff;
790 background-color: #ffffff;
791 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530792 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
793 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
794 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530795 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530796}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530797.navbar-fixed-top {
798 position: fixed;
799 top: 0;
800 right: 0;
801 left: 0;
802 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530803}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530804.navbar-fixed-top .navbar-inner {
805 padding-left: 0;
806 padding-right: 0;
807 -webkit-border-radius: 0;
808 -moz-border-radius: 0;
809 border-radius: 0;
810}
811.navbar .nav {
812 position: relative;
813 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530814 display: block;
815 float: left;
816 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530817}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530818.navbar .nav.pull-right {
819 float: right;
820}
821.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530822 display: block;
823 float: left;
824}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530825.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530826 float: none;
827 padding: 10px 10px 11px;
828 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530829 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530830 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530831 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530832}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530833.navbar .nav > li > a:hover {
834 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530835 color: #ffffff;
836 text-decoration: none;
837}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530838.navbar .nav .active > a, .navbar .nav .active > a:hover {
839 color: #ffffff;
840 text-decoration: none;
841 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530842 background-color: rgba(0, 0, 0, 0.5);
843}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530844.navbar .divider-vertical {
845 height: 40px;
846 width: 1px;
847 margin: 0 9px;
848 overflow: hidden;
849 background-color: #222222;
850 border-right: 1px solid #333333;
851}
852.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530853 margin-left: 10px;
854 margin-right: 0;
855}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530856.navbar .dropdown-menu {
857 margin-top: 1px;
858 -webkit-border-radius: 4px;
859 -moz-border-radius: 4px;
860 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530861}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530862.navbar .dropdown-menu:before {
863 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530864 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530865 border-left: 7px solid transparent;
866 border-right: 7px solid transparent;
867 border-bottom: 7px solid #ccc;
868 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530869 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530870 top: -7px;
871 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530872}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530873.navbar .dropdown-menu:after {
874 content: '';
875 display: inline-block;
876 border-left: 6px solid transparent;
877 border-right: 6px solid transparent;
878 border-bottom: 6px solid #ffffff;
879 position: absolute;
880 top: -6px;
881 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530882}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530883.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
884 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530885}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530886.navbar .nav .active .caret {
887 opacity: 1;
888 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530889}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530890.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
891 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530892}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530893.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530894 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530895}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530896.navbar .nav.pull-right .dropdown-menu {
897 left: auto;
898 right: 0;
899}
900.navbar .nav.pull-right .dropdown-menu:before {
901 left: auto;
902 right: 12px;
903}
904.navbar .nav.pull-right .dropdown-menu:after {
905 left: auto;
906 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530907}
908
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530909/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530910.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530911 display: block;
912 float: right;
913 width: 20px;
914 margin-bottom: -5px;
915 margin-top: 10px;
916 visibility: hidden;
917}
918
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530919.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530920 padding: 0px 20px;
921}
Anand Doshi5b1beeb2012-02-27 17:17:48 +0530922
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530923
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530924/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530925 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530926 */
927.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530928 position: relative;
929}
930.dropdown-toggle {
931 *margin-bottom: -3px;
932}
933.dropdown-toggle:active, .open .dropdown-toggle {
934 outline: 0;
935}
936.caret {
937 display: inline-block;
938 width: 0;
939 height: 0;
940 text-indent: -99999px;
941 *text-indent: 0;
942 vertical-align: top;
943 border-left: 4px solid transparent;
944 border-right: 4px solid transparent;
945 border-top: 4px solid #000000;
946 opacity: 0.3;
947 filter: alpha(opacity=30);
948 content: "\2193";
949}
950.dropdown .caret {
951 margin-top: 8px;
952 margin-left: 2px;
953}
954.dropdown:hover .caret, .open.dropdown .caret {
955 opacity: 1;
956 filter: alpha(opacity=100);
957}
958.dropdown-menu {
959 position: absolute;
960 top: 100%;
961 left: 0;
962 z-index: 1000;
963 float: left;
964 display: none;
965 min-width: 160px;
966 max-width: 220px;
967 _width: 160px;
968 padding: 4px 0;
969 margin: 0;
970 list-style: none;
971 background-color: #ffffff;
972 border-color: #ccc;
973 border-color: rgba(0, 0, 0, 0.2);
974 border-style: solid;
975 border-width: 1px;
976 -webkit-border-radius: 0 0 5px 5px;
977 -moz-border-radius: 0 0 5px 5px;
978 border-radius: 0 0 5px 5px;
979 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
980 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
981 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
982 -webkit-background-clip: padding-box;
983 -moz-background-clip: padding;
984 background-clip: padding-box;
985 *border-right-width: 2px;
986 *border-bottom-width: 2px;
987}
988.dropdown-menu.bottom-up {
989 top: auto;
990 bottom: 100%;
991 margin-bottom: 2px;
992}
993.dropdown-menu .divider {
994 height: 1px;
995 margin: 5px 1px;
996 overflow: hidden;
997 background-color: #e5e5e5;
998 border-bottom: 1px solid #ffffff;
999 *width: 100%;
1000 *margin: -5px 0 5px;
1001}
1002.dropdown-menu a {
1003 display: block;
1004 padding: 3px 15px;
1005 clear: both;
1006 font-weight: normal;
1007 line-height: 18px;
1008 color: #555555;
1009 white-space: nowrap;
1010}
1011.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1012 color: #ffffff;
1013 text-decoration: none;
1014 background-color: #0088cc;
1015}
1016.dropdown.open {
1017 *z-index: 1000;
1018}
1019.dropdown.open .dropdown-toggle {
1020 color: #ffffff;
1021 background: #ccc;
1022 background: rgba(0, 0, 0, 0.3);
1023}
1024.dropdown.open .dropdown-menu {
1025 display: block;
1026}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301027
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301028/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301029 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301030 */
1031.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301032 position: absolute;
1033 z-index: 1020;
1034 display: block;
1035 visibility: visible;
1036 padding: 5px;
1037 font-size: 11px;
1038 opacity: 0;
1039 filter: alpha(opacity=0);
1040}
1041.tooltip.in {
1042 opacity: 0.8;
1043 filter: alpha(opacity=80);
1044}
1045.tooltip.top {
1046 margin-top: -2px;
1047}
1048.tooltip.right {
1049 margin-left: 2px;
1050}
1051.tooltip.bottom {
1052 margin-top: 2px;
1053}
1054.tooltip.left {
1055 margin-left: -2px;
1056}
1057.tooltip.top .tooltip-arrow {
1058 bottom: 0;
1059 left: 50%;
1060 margin-left: -5px;
1061 border-left: 5px solid transparent;
1062 border-right: 5px solid transparent;
1063 border-top: 5px solid #000000;
1064}
1065.tooltip.left .tooltip-arrow {
1066 top: 50%;
1067 right: 0;
1068 margin-top: -5px;
1069 border-top: 5px solid transparent;
1070 border-bottom: 5px solid transparent;
1071 border-left: 5px solid #000000;
1072}
1073.tooltip.bottom .tooltip-arrow {
1074 top: 0;
1075 left: 50%;
1076 margin-left: -5px;
1077 border-left: 5px solid transparent;
1078 border-right: 5px solid transparent;
1079 border-bottom: 5px solid #000000;
1080}
1081.tooltip.right .tooltip-arrow {
1082 top: 50%;
1083 left: 0;
1084 margin-top: -5px;
1085 border-top: 5px solid transparent;
1086 border-bottom: 5px solid transparent;
1087 border-right: 5px solid #000000;
1088}
1089.tooltip-inner {
1090 max-width: 200px;
1091 padding: 3px 8px;
1092 color: #ffffff;
1093 text-align: center;
1094 text-decoration: none;
1095 background-color: #000000;
1096 -webkit-border-radius: 4px;
1097 -moz-border-radius: 4px;
1098 border-radius: 4px;
1099}
1100.tooltip-arrow {
1101 position: absolute;
1102 width: 0;
1103 height: 0;
1104}
1105.popover {
1106 position: absolute;
1107 top: 0;
1108 left: 0;
1109 z-index: 1010;
1110 display: none;
1111 padding: 5px;
1112}
1113.popover.top {
1114 margin-top: -5px;
1115}
1116.popover.right {
1117 margin-left: 5px;
1118}
1119.popover.bottom {
1120 margin-top: 5px;
1121}
1122.popover.left {
1123 margin-left: -5px;
1124}
1125.popover.top .arrow {
1126 bottom: 0;
1127 left: 50%;
1128 margin-left: -5px;
1129 border-left: 5px solid transparent;
1130 border-right: 5px solid transparent;
1131 border-top: 5px solid #000000;
1132}
1133.popover.right .arrow {
1134 top: 50%;
1135 left: 0;
1136 margin-top: -5px;
1137 border-top: 5px solid transparent;
1138 border-bottom: 5px solid transparent;
1139 border-right: 5px solid #000000;
1140}
1141.popover.bottom .arrow {
1142 top: 0;
1143 left: 50%;
1144 margin-left: -5px;
1145 border-left: 5px solid transparent;
1146 border-right: 5px solid transparent;
1147 border-bottom: 5px solid #000000;
1148}
1149.popover.left .arrow {
1150 top: 50%;
1151 right: 0;
1152 margin-top: -5px;
1153 border-top: 5px solid transparent;
1154 border-bottom: 5px solid transparent;
1155 border-left: 5px solid #000000;
1156}
1157.popover .arrow {
1158 position: absolute;
1159 width: 0;
1160 height: 0;
1161}
1162.popover-inner {
1163 padding: 3px;
1164 width: 280px;
1165 overflow: hidden;
1166 background: #000000;
1167 background: rgba(0, 0, 0, 0.8);
1168 -webkit-border-radius: 6px;
1169 -moz-border-radius: 6px;
1170 border-radius: 6px;
1171 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1172 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1173 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1174}
1175.popover-title {
1176 padding: 9px 15px;
1177 line-height: 1;
1178 background-color: #f5f5f5;
1179 border-bottom: 1px solid #eee;
1180 -webkit-border-radius: 3px 3px 0 0;
1181 -moz-border-radius: 3px 3px 0 0;
1182 border-radius: 3px 3px 0 0;
1183}
1184.popover-content {
1185 padding: 14px;
1186 background-color: #ffffff;
1187 -webkit-border-radius: 0 0 3px 3px;
1188 -moz-border-radius: 0 0 3px 3px;
1189 border-radius: 0 0 3px 3px;
1190 -webkit-background-clip: padding-box;
1191 -moz-background-clip: padding-box;
1192 background-clip: padding-box;
1193}
1194.popover-content p, .popover-content ul, .popover-content ol {
1195 margin-bottom: 0;
1196}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301197
Rushabh Mehtad0251332012-02-21 17:26:50 +05301198/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05301199 * lib/css/bootstrap/label.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301200 */
1201.label {
Rushabh Mehta2886b952012-02-24 11:26:31 +05301202 padding: 2px 4px 3px;
1203 font-size: 11.049999999999999px;
1204 font-weight: bold;
1205 color: #ffffff;
1206 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1207 background-color: #999999;
1208 -webkit-border-radius: 3px;
1209 -moz-border-radius: 3px;
1210 border-radius: 3px;
1211}
1212.label:hover {
1213 color: #ffffff;
1214 text-decoration: none;
1215}
1216.label-important {
1217 background-color: #b94a48;
1218}
1219.label-important:hover {
1220 background-color: #953b39;
1221}
1222.label-warning {
1223 background-color: #f89406;
1224}
1225.label-warning:hover {
1226 background-color: #c67605;
1227}
1228.label-success {
1229 background-color: #468847;
1230}
1231.label-success:hover {
1232 background-color: #356635;
1233}
1234.label-info {
1235 background-color: #3a87ad;
1236}
1237.label-info:hover {
1238 background-color: #2d6987;
1239}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301240
Rushabh Mehta2886b952012-02-24 11:26:31 +05301241/*
1242 * lib/css/bootstrap/icons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301243 */
1244[class^="icon-"], [class*=" icon-"] {
Rushabh Mehta2886b952012-02-24 11:26:31 +05301245 display: inline-block;
1246 width: 14px;
1247 height: 14px;
1248 line-height: 14px;
1249 vertical-align: text-top;
1250 background-image: url("../lib/images/icons/glyphicons-halflings.png");
1251 background-position: 14px 14px;
1252 background-repeat: no-repeat;
1253 *margin-right: .3em;
1254}
1255[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
1256 *margin-left: 0;
1257}
1258.icon-white {
1259 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
1260}
1261.icon-glass {
1262 background-position: 0 0;
1263}
1264.icon-music {
1265 background-position: -24px 0;
1266}
1267.icon-search {
1268 background-position: -48px 0;
1269}
1270.icon-envelope {
1271 background-position: -72px 0;
1272}
1273.icon-heart {
1274 background-position: -96px 0;
1275}
1276.icon-star {
1277 background-position: -120px 0;
1278}
1279.icon-star-empty {
1280 background-position: -144px 0;
1281}
1282.icon-user {
1283 background-position: -168px 0;
1284}
1285.icon-film {
1286 background-position: -192px 0;
1287}
1288.icon-th-large {
1289 background-position: -216px 0;
1290}
1291.icon-th {
1292 background-position: -240px 0;
1293}
1294.icon-th-list {
1295 background-position: -264px 0;
1296}
1297.icon-ok {
1298 background-position: -288px 0;
1299}
1300.icon-remove {
1301 background-position: -312px 0;
1302}
1303.icon-zoom-in {
1304 background-position: -336px 0;
1305}
1306.icon-zoom-out {
1307 background-position: -360px 0;
1308}
1309.icon-off {
1310 background-position: -384px 0;
1311}
1312.icon-signal {
1313 background-position: -408px 0;
1314}
1315.icon-cog {
1316 background-position: -432px 0;
1317}
1318.icon-trash {
1319 background-position: -456px 0;
1320}
1321.icon-home {
1322 background-position: 0 -24px;
1323}
1324.icon-file {
1325 background-position: -24px -24px;
1326}
1327.icon-time {
1328 background-position: -48px -24px;
1329}
1330.icon-road {
1331 background-position: -72px -24px;
1332}
1333.icon-download-alt {
1334 background-position: -96px -24px;
1335}
1336.icon-download {
1337 background-position: -120px -24px;
1338}
1339.icon-upload {
1340 background-position: -144px -24px;
1341}
1342.icon-inbox {
1343 background-position: -168px -24px;
1344}
1345.icon-play-circle {
1346 background-position: -192px -24px;
1347}
1348.icon-repeat {
1349 background-position: -216px -24px;
1350}
1351.icon-refresh {
1352 background-position: -240px -24px;
1353}
1354.icon-list-alt {
1355 background-position: -264px -24px;
1356}
1357.icon-lock {
1358 background-position: -287px -24px;
1359}
1360.icon-flag {
1361 background-position: -312px -24px;
1362}
1363.icon-headphones {
1364 background-position: -336px -24px;
1365}
1366.icon-volume-off {
1367 background-position: -360px -24px;
1368}
1369.icon-volume-down {
1370 background-position: -384px -24px;
1371}
1372.icon-volume-up {
1373 background-position: -408px -24px;
1374}
1375.icon-qrcode {
1376 background-position: -432px -24px;
1377}
1378.icon-barcode {
1379 background-position: -456px -24px;
1380}
1381.icon-tag {
1382 background-position: 0 -48px;
1383}
1384.icon-tags {
1385 background-position: -25px -48px;
1386}
1387.icon-book {
1388 background-position: -48px -48px;
1389}
1390.icon-bookmark {
1391 background-position: -72px -48px;
1392}
1393.icon-print {
1394 background-position: -96px -48px;
1395}
1396.icon-camera {
1397 background-position: -120px -48px;
1398}
1399.icon-font {
1400 background-position: -144px -48px;
1401}
1402.icon-bold {
1403 background-position: -167px -48px;
1404}
1405.icon-italic {
1406 background-position: -192px -48px;
1407}
1408.icon-text-height {
1409 background-position: -216px -48px;
1410}
1411.icon-text-width {
1412 background-position: -240px -48px;
1413}
1414.icon-align-left {
1415 background-position: -264px -48px;
1416}
1417.icon-align-center {
1418 background-position: -288px -48px;
1419}
1420.icon-align-right {
1421 background-position: -312px -48px;
1422}
1423.icon-align-justify {
1424 background-position: -336px -48px;
1425}
1426.icon-list {
1427 background-position: -360px -48px;
1428}
1429.icon-indent-left {
1430 background-position: -384px -48px;
1431}
1432.icon-indent-right {
1433 background-position: -408px -48px;
1434}
1435.icon-facetime-video {
1436 background-position: -432px -48px;
1437}
1438.icon-picture {
1439 background-position: -456px -48px;
1440}
1441.icon-pencil {
1442 background-position: 0 -72px;
1443}
1444.icon-map-marker {
1445 background-position: -24px -72px;
1446}
1447.icon-adjust {
1448 background-position: -48px -72px;
1449}
1450.icon-tint {
1451 background-position: -72px -72px;
1452}
1453.icon-edit {
1454 background-position: -96px -72px;
1455}
1456.icon-share {
1457 background-position: -120px -72px;
1458}
1459.icon-check {
1460 background-position: -144px -72px;
1461}
1462.icon-move {
1463 background-position: -168px -72px;
1464}
1465.icon-step-backward {
1466 background-position: -192px -72px;
1467}
1468.icon-fast-backward {
1469 background-position: -216px -72px;
1470}
1471.icon-backward {
1472 background-position: -240px -72px;
1473}
1474.icon-play {
1475 background-position: -264px -72px;
1476}
1477.icon-pause {
1478 background-position: -288px -72px;
1479}
1480.icon-stop {
1481 background-position: -312px -72px;
1482}
1483.icon-forward {
1484 background-position: -336px -72px;
1485}
1486.icon-fast-forward {
1487 background-position: -360px -72px;
1488}
1489.icon-step-forward {
1490 background-position: -384px -72px;
1491}
1492.icon-eject {
1493 background-position: -408px -72px;
1494}
1495.icon-chevron-left {
1496 background-position: -432px -72px;
1497}
1498.icon-chevron-right {
1499 background-position: -456px -72px;
1500}
1501.icon-plus-sign {
1502 background-position: 0 -96px;
1503}
1504.icon-minus-sign {
1505 background-position: -24px -96px;
1506}
1507.icon-remove-sign {
1508 background-position: -48px -96px;
1509}
1510.icon-ok-sign {
1511 background-position: -72px -96px;
1512}
1513.icon-question-sign {
1514 background-position: -96px -96px;
1515}
1516.icon-info-sign {
1517 background-position: -120px -96px;
1518}
1519.icon-screenshot {
1520 background-position: -144px -96px;
1521}
1522.icon-remove-circle {
1523 background-position: -168px -96px;
1524}
1525.icon-ok-circle {
1526 background-position: -192px -96px;
1527}
1528.icon-ban-circle {
1529 background-position: -216px -96px;
1530}
1531.icon-arrow-left {
1532 background-position: -240px -96px;
1533}
1534.icon-arrow-right {
1535 background-position: -264px -96px;
1536}
1537.icon-arrow-up {
1538 background-position: -289px -96px;
1539}
1540.icon-arrow-down {
1541 background-position: -312px -96px;
1542}
1543.icon-share-alt {
1544 background-position: -336px -96px;
1545}
1546.icon-resize-full {
1547 background-position: -360px -96px;
1548}
1549.icon-resize-small {
1550 background-position: -384px -96px;
1551}
1552.icon-plus {
1553 background-position: -408px -96px;
1554}
1555.icon-minus {
1556 background-position: -433px -96px;
1557}
1558.icon-asterisk {
1559 background-position: -456px -96px;
1560}
1561.icon-exclamation-sign {
1562 background-position: 0 -120px;
1563}
1564.icon-gift {
1565 background-position: -24px -120px;
1566}
1567.icon-leaf {
1568 background-position: -48px -120px;
1569}
1570.icon-fire {
1571 background-position: -72px -120px;
1572}
1573.icon-eye-open {
1574 background-position: -96px -120px;
1575}
1576.icon-eye-close {
1577 background-position: -120px -120px;
1578}
1579.icon-warning-sign {
1580 background-position: -144px -120px;
1581}
1582.icon-plane {
1583 background-position: -168px -120px;
1584}
1585.icon-calendar {
1586 background-position: -192px -120px;
1587}
1588.icon-random {
1589 background-position: -216px -120px;
1590}
1591.icon-comment {
1592 background-position: -240px -120px;
1593}
1594.icon-magnet {
1595 background-position: -264px -120px;
1596}
1597.icon-chevron-up {
1598 background-position: -288px -120px;
1599}
1600.icon-chevron-down {
1601 background-position: -313px -119px;
1602}
1603.icon-retweet {
1604 background-position: -336px -120px;
1605}
1606.icon-shopping-cart {
1607 background-position: -360px -120px;
1608}
1609.icon-folder-close {
1610 background-position: -384px -120px;
1611}
1612.icon-folder-open {
1613 background-position: -408px -120px;
1614}
1615.icon-resize-vertical {
1616 background-position: -432px -119px;
1617}
1618.icon-resize-horizontal {
1619 background-position: -456px -118px;
1620}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301621
Rushabh Mehta2886b952012-02-24 11:26:31 +05301622/*
Rushabh Mehtad48417c2012-03-19 18:42:13 +05301623 * lib/css/bootstrap/popover.css
1624 */
1625.popover {
1626 position: absolute;
1627 top: 0;
1628 left: 0;
1629 z-index: 1010;
1630 display: none;
1631 padding: 5px;
1632}
1633.popover.top {
1634 margin-top: -5px;
1635}
1636.popover.right {
1637 margin-left: 5px;
1638}
1639.popover.bottom {
1640 margin-top: 5px;
1641}
1642.popover.left {
1643 margin-left: -5px;
1644}
1645.popover.top .arrow {
1646 bottom: 0;
1647 left: 50%;
1648 margin-left: -5px;
1649 border-left: 5px solid transparent;
1650 border-right: 5px solid transparent;
1651 border-top: 5px solid #000000;
1652}
1653.popover.right .arrow {
1654 top: 50%;
1655 left: 0;
1656 margin-top: -5px;
1657 border-top: 5px solid transparent;
1658 border-bottom: 5px solid transparent;
1659 border-right: 5px solid #000000;
1660}
1661.popover.bottom .arrow {
1662 top: 0;
1663 left: 50%;
1664 margin-left: -5px;
1665 border-left: 5px solid transparent;
1666 border-right: 5px solid transparent;
1667 border-bottom: 5px solid #000000;
1668}
1669.popover.left .arrow {
1670 top: 50%;
1671 right: 0;
1672 margin-top: -5px;
1673 border-top: 5px solid transparent;
1674 border-bottom: 5px solid transparent;
1675 border-left: 5px solid #000000;
1676}
1677.popover .arrow {
1678 position: absolute;
1679 width: 0;
1680 height: 0;
1681}
1682.popover-inner {
1683 padding: 3px;
1684 width: 280px;
1685 overflow: hidden;
1686 background: #000000;
1687 background: rgba(0, 0, 0, 0.8);
1688 -webkit-border-radius: 6px;
1689 -moz-border-radius: 6px;
1690 border-radius: 6px;
1691 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1692 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1693 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1694}
1695.popover-title {
1696 padding: 9px 15px;
1697 line-height: 1;
1698 background-color: #f5f5f5;
1699 border-bottom: 1px solid #eee;
1700 -webkit-border-radius: 3px 3px 0 0;
1701 -moz-border-radius: 3px 3px 0 0;
1702 border-radius: 3px 3px 0 0;
1703}
1704.popover-content {
1705 padding: 14px;
1706 background-color: #ffffff;
1707 -webkit-border-radius: 0 0 3px 3px;
1708 -moz-border-radius: 0 0 3px 3px;
1709 border-radius: 0 0 3px 3px;
1710 -webkit-background-clip: padding-box;
1711 -moz-background-clip: padding-box;
1712 background-clip: padding-box;
1713}
1714.popover-content p, .popover-content ul, .popover-content ol {
1715 margin-bottom: 0;
1716}
1717
1718/*
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301719 * lib/css/legacy/body.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301720 */
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301721html {
1722 margin: 0px;
1723 padding: 0px;
1724}
1725
1726body {
1727 margin: 0px;
1728 padding: 0px;
1729 font-size: 14px;
1730 color: #000;
1731 background-color: #e2e2e2;
1732}
1733
1734/* font settings */
1735
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301736h1, h2, h3, h4, h5 {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301737 font-family: "Helvetica Neue", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301738 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301739}
1740
1741body {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301742 font-family: "Helvetica Neue", Helvetica, "Helvetica Neue", sans-serif;
1743 font-size: 13px;
1744}
1745
1746span, div, td, input, textarea, button, select {
1747 font-family: inherit;
1748}
1749
1750
1751pre { margin: 0px; padding: 0px; }
1752
1753button { margin: 2px; margin-left: 0px; }
1754
1755label {
1756 padding-top: 15px;
1757 color: #404040;
1758}
1759
1760select, input, textarea {
1761 border: 1px solid #ccc;
1762 -moz-border-radius: 4px;
1763 -webkit-border-radius: 4px;
1764 font-size: inherit;
1765 padding: 4px;
1766 color: #444;
1767 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1768 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1769 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1770}
1771
1772textarea {
1773 font-family: inherit;
1774 height: 120px;
1775 width: 90%;
1776 font-size: inherit;
1777 white-space: normal;
1778}
1779
1780table { padding: 0px; border-collapse: 'collapse'}
1781
1782td {
1783 padding:0px;
1784 margin: 0px;
1785 vertical-align: top;
1786}
1787
1788p {
1789 margin: 0px 0px 9px 0px;
1790 line-height: 1.5em;
1791}
1792
1793li {
1794 line-height: 1.5em;
1795}
1796
1797hr {
1798 margin: 18px 0;
1799 border: 0;
1800 border-top: 1px solid #e5e5e5;
1801 border-bottom: 1px solid #ffffff;
1802}
1803
1804/* links */
1805
1806a:active { outline:none; }
1807
1808a {
1809 color: #0088cc;
1810 text-decoration: none;
1811}
1812a:hover {
1813 color: #005580;
1814 text-decoration: underline;
1815}
1816
1817.link_type {
1818 padding:2px;
1819 color: #0088cc;
1820 cursor: pointer;
1821}
1822
1823.link_type:hover {
1824 color: #005580;
1825 text-decoration: underline;
1826}
1827
1828:focus { -moz-outline-style:none; }
1829
1830table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
1831table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
1832
1833div.fix_ff_cursor { overflow: auto; }
1834
1835/* --- Layout --- */
1836
1837div.comment { color: #444; }
1838
1839.small {
1840 font-size: 11px;
1841}
1842
1843.help {
1844 margin-bottom: 3px;
1845 color: #888;
1846}
1847
1848div#body_div {
1849 display: none;
1850 padding-right: 7px;
1851 width: 900px;
1852 margin: auto;
1853 margin-top: 56px;
1854}
1855
1856.content {
1857 width: 900px;
1858}
1859
1860.background-fade-in {
1861 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
1862 -moz-transition: background 1s ease-in;
1863 -o-transition: background 1s ease-in;
1864 transition: background 1s ease-in;
1865}
1866
1867footer {
1868 width: 900px;
1869 margin: auto;
1870}
1871header .container {
1872 width: 900px;
1873 margin: auto;
1874}
1875
1876@media (max-width: 1200px) {
1877 div#body_div, header .container, .content, #opened-page-selector, footer {
1878 width: 900px;
1879 }
1880}
1881
1882@media (min-width: 1200px) {
1883 div#body_div, header .container, .content, #opened-page-selector, footer {
1884 width: 1100px;
1885 }
1886}
1887
1888div.no_script {
1889 display: none;
1890}
1891
1892div.loading_div {
1893 background-color: #FFFFCC;
1894 z-index: 1999;
1895 right: 5px;
1896 width: 90px;
1897 display: none;
1898 text-align: center;
1899 padding: 2px;
1900 border: 1px solid #FF4;
1901}
1902
1903div.std-footer {
1904 margin: 13px -15px;
1905 border-top: 1px solid #AAA;
1906 padding: 13px;
1907}
1908
1909div.std-footer-item {
1910 margin: 0px 13px 13px 0px;
1911}
1912
1913.shadow {
1914 -moz-box-shadow: 0px 2px 2px #888;
1915 -webkit-box-shadow: 0px 2px 2px #888;
1916 box-shadow: 0px 2px 2px #888;
1917}
1918
1919.round {
1920 -webkit-border-radius: 5px;
1921 -moz-border-radius: 5px;
1922 border-radius: 5px;
1923}
1924
1925.layout_wrapper, .layout-wrapper {
1926 -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
1927 -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
1928 box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
1929 background-color: #fff;
1930 padding: 15px;
1931 -webkit-border-radius: 5px;
1932 -moz-border-radius: 5px;
1933 border-radius: 5px;
1934 margin-bottom: 30px;
1935 overflow: hidden;
1936}
1937
1938.layout-wrapper-appframe {
1939 padding: 0px;
1940}
1941
1942.layout-wrapper-background {
1943 background-color: #fafafa !important;
1944 padding: 0px;
1945}
1946
Rushabh Mehta2146fd12012-04-17 12:40:37 +05301947.layout-main {
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05301948 padding: 15px;
1949}
1950
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301951.layout-main-section {
1952 width: 71%;
1953 float: left;
1954 padding: 15px;
1955 background-color: #FFF;
1956 min-height: 600px;
1957 -moz-box-shadow: 2px 0px 1px #ddd;
1958 -webkit-box-shadow: 2px 0px 1px #ddd;
1959 box-shadow: 2px 0px 1px #ddd;
1960}
1961
1962.layout-side-section {
1963 width: 22%;
1964 /*float: right;*/
1965 color: #606060;
1966 overflow-x: hidden;
1967 padding: 15px;
1968 min-height: 600px;
1969}
1970
1971/* from bootstrap */
1972.container {
1973 margin-left: auto;
1974 margin-right: auto;
1975 zoom: 1;
1976}
1977.container:before, .container:after {
1978 display: table;
1979 content: "";
1980 zoom: 1;
1981}
1982.container:after {
1983 clear: both;
1984}
1985
1986.well {
1987 min-height: 20px;
1988 padding: 19px;
1989 margin-bottom: 20px;
1990 background-color: #f5f5f5;
1991 border: 1px solid #eee;
1992 border: 1px solid rgba(0, 0, 0, 0.05);
1993 -webkit-border-radius: 4px;
1994 -moz-border-radius: 4px;
1995 border-radius: 4px;
1996 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1997 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1998 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1999}
2000
2001.avatar-small {
2002 display: inline-block;
2003 width: 24px;
2004 height: 20px;
2005 vertical-align: middle;
2006 overflow: hidden;
2007 margin: 0px 3px;
2008}
2009.avatar-small img {
2010 width: 24px;
2011}
2012
2013/*
2014 * lib/css/legacy/messages.css
2015 */
2016
2017/* FLOATING MESSAGE */
2018
2019.btn-img { cursor: pointer; }
2020
2021div.fetching { color: #888; text-align:right; }
2022
2023div.notice {
2024 postion: absolute;
2025 background-color: #000;
2026 -moz-border-radius: 5px; -webkit-border-radius: 5px;
2027 opacity: 0.6;
2028 right: 0;
2029 top: 0;
2030 margin-top: 8px;
2031 z-index: -1;
2032 padding: 8px;
2033}
2034
2035/** help **/
2036
2037.info-box {
2038 background-color: #F8F8F8;
2039 border: 1px solid #CCCCCC;
2040 border-radius: 3px 3px 3px 3px;
2041 line-height: 1.6em;
2042 overflow: auto;
2043 padding: 6px 10px;
2044 margin-bottom: 9px;
2045}
2046
2047.help_box, .help-box {
2048 background-color:#FFC;
2049 font-size: 13px;
2050 color: #864;
2051 padding: 7px;
2052 margin: 11px 0px;
2053 border: 1px solid #EEB;
2054}
2055
2056.help_box_big {
2057 background-color:#FFC;
2058 color: #864;
2059 padding: 7px;
2060 margin: 7px 0px;
2061 border: 1px solid #EEB;
2062 text-align: center;
2063 font-size: 14px;
2064}
2065
2066/*
2067 * lib/css/legacy/forms.css
2068 */
2069/* FORMS */
2070
2071div.form-title {
2072 /*background-color: #e0eeff;*/
2073 padding: 5px 19px 15px 19px;
2074 margin: -15px -15px 0px -15px;
2075 border-bottom: 1px solid #eee;
2076}
2077
2078div.form-section-head {
2079 margin: 11px -15px 3px -15px;
2080 border-top: 1px solid #ccc;
2081 padding: 11px 23px 0px 23px;
2082}
2083
2084div.form-layout-row:first-child .form-section-head {
2085 border-top: 0px solid #ccc !important;
2086 margin-top: 0px;
2087 padding-top: 15px;
2088}
2089
2090div.form-section-head h3 {
2091 line-height: 20px;
2092}
2093
2094div.form-section-head hr {
2095 margin: 9px 0px;
2096}
2097
2098
2099div.frm_print_wrapper {
2100 background-color:#FFF;
2101 border:1px solid #444;
2102 padding: 40px;
2103
2104 box-shadow:1px 1px 8px #229;
2105 -moz-box-shadow: 1px 1px 8px #229;
2106 -webkit-box-shadow: 1px 1px 8px #229;
2107}
2108
2109div.page_break {
2110 margin: 24px 0px;
2111 border-top: 1px dashed #888;
2112}
2113
2114div.grid_tbarlinks {
2115 border-bottom: 0px;
2116 background-color: #CCC;
2117 padding: 4px 4px 2px 4px;
2118 width: 190px;
2119 float: right;
2120
2121 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
2122 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
2123}
2124
2125
2126div.dialog_frm {
2127 position: relative;
2128 margin: 10px;
2129}
2130
2131
2132
2133/*------------------*/
2134
2135.top_cell {
2136 height: 50px;
2137}
2138
2139div.attach_area {
2140 padding: 8px;
2141 margin: 8px;
2142 background-color: #EEE;
2143}
2144
2145div.attach_area table {
2146 width: 100%;
2147}
2148
2149.tablabel_normal {
2150 margin: 0 4px 0 0;
2151 padding: 3px 5px;
2152 line-height: 1.3em;
2153 display: inline;
2154 cursor: pointer;
2155}
2156
2157.tablabel_selected {
2158 margin: 0 4px 0 0;
2159 padding: 3px 5px;
2160 line-height: 1.3em;
2161 font-weight: bold;
2162 display: inline;
2163 cursor: pointer;
2164 color: #000;
2165}
2166
2167.scrollhead_wrapper {
2168 position: absolute;
2169 z-index: 1;
2170 height: 30px;
2171}
2172
2173.treeimg {
2174 cursor: pointer;
2175 margin-right: 3px;
2176}
2177
2178
2179.sectionCell {
2180 padding: 5px;
2181 vertical-align: top;
2182}
2183
2184.code_area {
2185 width: 80%;
2186 margin: 8px;
2187 padding: 4px;
2188 background-color: #F8F8F8;
2189 border: 1px solid #CCC;
2190 overflow-x: auto;
2191}
2192
2193.code_text {
2194 width: 100%;
2195 height: 360px;
2196 margin-top: 3px;
2197 font-family: Courier, Fixed;
2198 font-size: 12px;
2199}
2200
2201div.time_field select{
2202 display: inline;
2203 margin: 2px;
2204 width: 45px;
2205}
2206
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302207/* sidebar */
2208
2209div.sidebar-comment-wrapper input {
2210 width: 50%;
2211}
2212div.sidebar-comment-message {
2213 margin-top: 8px;
2214 color: #777;
2215}
2216
2217div.sidebar-comment-text {
2218 font-size: 12px;
2219 font-weight: bold;
2220 margin-top: 8px;
2221 color: #444;
2222}
2223div.sidebar-comment-info {
2224 color: #777;
2225}
2226
2227/*
2228 * lib/css/legacy/fields.css
2229 */
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302230/* Documents */
2231
2232.frm_field_table {
2233 width: 100%;
2234 border-collapse: collapse;
2235}
2236
2237.datalabelcell {
2238 padding: 2px 0px;
2239 width: 160px;
2240 vertical-align: top;
2241}
2242.datainputcell { padding: 2px 0px; }
2243
2244
2245.help ol {
2246 padding-left: 19px;
2247}
2248
2249.field_description_top {
2250 margin-bottom: 3px;
2251}
2252
2253.input_area input, select, textarea {
2254 font-size: 14px;
2255 padding: 2px;
2256}
2257
2258.input_area input {
2259 width: 80%;
2260 margin: 0px;
2261}
2262.input_area select {
2263 width: 80%;
2264}
2265.input_area textarea {
2266 width: 90%;
2267}
2268
2269.disp_area {
2270 width: 80%;
2271 padding: 2px 0px;
2272 font-size: 12px;
2273}
2274.disp_area_no_val {
2275 height: 14px;
2276}
2277
2278.no_img {
2279 padding: 40px;
2280 width: 100px;
2281 height: 20px;
2282 color: #888;
2283 text-align: center;
2284 border: 1px solid #AAA;
2285}
2286
2287.input-mandatory {
2288 font-size: 14px !important;
2289 font-weight: bold;
2290}
2291
2292.field-to-update {
2293 background-color:#FEE;
2294}
2295
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302296/*
2297 * lib/css/legacy/grid.css
2298 */
2299
2300
2301/* Grid */
2302
2303
2304/* --- Simple --- */
2305.grid_wrapper_simple {
2306 width: 100%;
2307 margin-bottom: 8px;
2308 border: 1px solid #AA9;
2309}
2310
2311.grid_head_wrapper_simple {
2312 padding: 0px;
2313 border-bottom: 2px solid #AAA;
2314}
2315
2316.grid_head_wrapper_simple td {
2317 border-right: 1px solid #AA9;
2318}
2319
2320.grid_head_wrapper_simple td div {
2321 padding: 2px;
2322}
2323
2324.grid_tab_wrapper_simple {
2325}
2326
2327.grid_cell_simple {
2328 padding: 2px;
2329 background-color: #fff;
2330 border-right: 1px solid #AA9;
2331}
2332
2333
2334/* --- Normal --- */
2335.grid_wrapper {
2336 position: relative;
2337 overflow: auto;
2338 border: 1px solid #AAA;
2339 width: 100%;
2340 margin-bottom: 8px;
2341 background-color: #fff;
2342}
2343
2344.grid_tab_wrapper {
2345 position: absolute;
2346 top: 40px;
2347 border-bottom: 1px solid #DDD;
2348}
2349
2350.grid_table, .grid_head_table {
2351 table-layout: fixed;
2352 border-collapse: collapse;
2353 /*width: 100%;*/
2354}
2355
2356.grid_cell {
2357 border-right: 1px solid #ddd;
2358 padding: 0px;
2359 background-color: #fff;
2360}
2361
2362.grid_head_wrapper {
2363 position: absolute;
2364 z-index: 1;
2365 height: 40px;
2366 padding: 0px;
2367 overflow: hidden;
2368 /*background-color: #fff;*/
2369}
2370
2371.grid_head_table td {
2372 background-color: #EEE;
2373 border-right: 1px solid #AAA;
2374 border-bottom: 1px solid #AAA;
2375 height: 40px;
2376 padding: 0px;
2377}
2378
2379.grid_head_table td div {
2380 color: #222;
2381 font-weight: bold;
2382 overflow: hidden;
2383 padding: 2px 0px;
2384 text-align: center;
2385}
2386
2387.grid_selector {
2388 padding: 1px;
2389 border-right: 1px solid #DDD;
2390 width: 20px;
2391 background-color: #fff;
2392}
2393
2394.grid_cell_div {
2395 padding: 2px;
2396 cursor: pointer;
2397 overflow: hidden;
2398 border: 2px solid #FFF;
2399}
2400
2401.grid_cell_div_selected {
2402 border: 2px solid #88f;
2403}
2404
2405.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
2406 margin: 0px;
2407 border: 0px;
2408 width: 100%;
2409 margin: 0px;
2410 }
2411
2412.grid_cell_div textarea {
2413 border: 3px solid #abf;
2414 height:200px;
2415 width: 300px;
2416 z-index: 10;
2417 position:absolute;
2418}
2419
2420.gridDivSelected option { border: 0px; }
2421
2422/*
2423 * lib/css/legacy/listing.css
2424 */
2425
2426
2427/* SRS */
2428
2429table.srs_result_tab {
2430 border: 2px solid #AAA;
2431 border-collapse: collapse;
2432}
2433
2434/* firefox bug fix for disappering borders */
2435table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
2436 position: static;
2437}
2438
2439table.srs_result_tab td {
2440 padding: 3px 2px;
2441 position: static;
2442}
2443
2444div.srs_body_area {
2445}
2446
2447div.srs_results_area {
2448}
2449
2450div.srs_filter_wrapper {
2451 border: 1px solid #CCF;
2452
2453 background-color: #EEF;
2454 margin:0px 0px 8px 0px;
2455
2456 -moz-border-radius: 5px;
2457 -webkit-border-radius: 5px;
2458 border-radius: 5px;
2459}
2460
2461div.srs_filter_area {
2462 padding: 8px;
2463}
2464
2465div.srs_filter_area td {
2466 vertical-align: middle;
2467}
2468
2469/*
2470 * lib/css/legacy/report.css
2471 */
2472
2473/* Reports */
2474
2475div.report_grid_area {
2476 position: relative;
2477 padding: 8px;
2478}
2479
2480
2481div.report_tab {
2482 border: 1px solid #AAA;
2483 position: relative;
2484 overflow: auto;
2485}
2486
2487div.report_no_data {
2488 padding: 8px;
2489 background-color: #EEE;
2490 border: 1px solid #DDD;
2491 position: absolute;
2492 margin-left: 40%;
2493 margin-top: 50px;
2494 display: none;
2495}
2496
2497div.report_htitle {
2498 float: left;
2499 padding: 2px;
2500 font-size: 14px;
2501 font-weight: bold;
2502 margin-left: 4px;
2503 color: #665;
2504 /*font-weight: bold;*/
2505}
2506
2507div.report_tbar {
2508 background-color: #EEF;
2509 border: 1px solid #CCF;
2510 border-bottom: 0px;
2511 height: 28px;
2512}
2513
2514div.report_tbar table{
2515 width: 100%;
2516}
2517div.report_tbar table td {
2518
2519}
2520div.report_tbar table td div {
2521 position: relative;
2522}
2523div.report_tbar button, div.report_tbar select, div.report_tbar img {
2524 font-size: 11px;
2525 margin: 0px;
2526}
2527
2528div.report_head_wrapper {
2529 position: absolute;
2530 height: 24px;
2531 top: 0px;
2532 z-index: 1;
2533}
2534
2535div.report_tab_wrapper {
2536 position: absolute;
2537 border-bottom: 1px solid #AAA;
2538 border-top: 1px solid #AAA;
2539}
2540
2541div.report_tab_wrapper table, div.report_head_wrapper table {
2542 table-layout: fixed;
2543 border-collapse: collapse;
2544 /*width: 100%;*/
2545}
2546
2547div.report_tab_wrapper table td, div.report_head_wrapper table td {
2548 border-left: 1px solid #AAA;
2549 border-right: 1px solid #AAA;
2550 border-bottom: 1px solid #AAA;
2551 overflow: hidden;
2552 padding: 0px;
2553}
2554
2555div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
2556 padding: 3px;
2557 overflow: hidden;
2558}
2559
2560.report_head_cell {
2561 background-color: #EEE;
2562 border-bottom: 1px solid #AA9;
2563 text-align: center;
2564 font-weight: bold;
2565}
2566.report_head_cell div {
2567 color:#222;
2568 height: 18px;
2569}
2570
2571
2572/* FINDER */
2573
2574div.finder_wrapper {
2575}
2576
2577div.finder_body_area {
2578 margin: 16px;
2579}
2580
2581div.finder_body {
2582 display: none;
2583}
2584
2585div.finder_advanced_area table {
2586 width: 80%;
2587}
2588
2589div.finder_advanced_area textarea {
2590 width: 80%;
2591}
2592
2593div.finder_filter_area {
2594 position: relative;
2595}
2596
2597div.filter_head {
2598 font-size: 14px;
2599 margin-bottom: 2px;
2600}
2601div.filter_dt_head {
2602 font-size: 14px;
2603 font-weight: bold;
2604 margin-bottom: 2px;
2605}
2606table.filter_tab {
2607 width: 96%;
2608 border-collapse: collapse;
2609}
2610
2611table.filter_tab td {
2612 width: 50%;
2613}
2614
2615div.finder_picker_area {
2616
2617}
2618div.builder_field {
2619 margin: 0px;
2620}
2621div.builder_dt_head {
2622 font-size: 14px;
2623 font-weight: bold;
2624 margin-bottom: 2px;
2625}
2626
2627div.builder_field table {
2628 width: 90%;
2629 border-collapse: collapse;
2630}
2631
2632div.builder_label {
2633 height: 20px;
2634}
2635
2636div.builder_head {
2637 font-size: 16px;
2638 font-weight: bold;
2639 color: #AB6;
2640}
2641
2642table.builder_tab {
2643 width: 96%;
2644 border-collapse: collapse;
2645}
2646
2647table.builder_tab td {
2648 width: 33%;
2649 padding: 2px;
2650}
2651
2652/*
2653 * lib/css/legacy/dialog.css
2654 */
2655/***** Dialogs *******/
2656
2657div.dialog_wrapper {
2658 position: absolute;
2659 width: 440px;
2660 display: none;
2661 z-index: 90;
2662 background-color: #FFF;
2663 box-shadow:1px 1px 8px #444;
2664 -moz-box-shadow: 1px 1px 8px #444;
2665 -webkit-box-shadow: 1px 1px 8px #444;
2666
2667 border-radius: 5px;
2668 -moz-border-radius: 5px;
2669 -webkit-border-radius: 5px;
2670
2671 overflow: hidden;
2672}
2673
2674div.dialog_head {
2675 height: 22px;
2676 padding: 4px;
2677 background-color: #222;
2678 color: #FFF;
2679}
2680
2681div.dialog_body {
2682 padding: 8px 8px 16px;
2683 border-radius: 5px;
2684 -moz-border-radius: 5px;
2685 -webkit-border-radius: 5px;
2686}
2687
2688div.dialog_back {
2689 position: fixed;
2690 display: none;
2691 top: 0px;
2692 left: 0px;
2693 bottom: 0px;
2694 right: 0px;
2695 background-color: #aaa;
2696 opacity: 0.6;
2697 z-index: 50;
2698 text-align: center;
2699}
2700
2701div.dialog_message {
2702 display: none;
2703 position: absolute;
2704 width: 250px;
2705 font-size: 12px;
2706 z-index: 91;
2707 background-color:#FFF;
2708 padding: 12px;
2709 border: 1px solid #444;
2710}
2711
2712div.dialog_row {
2713 padding: 8px 8px 0px 8px;
2714}
2715
2716div.dialog_row table {
2717 width: 100%;
2718}
2719
2720div.dialog_row table td {
2721}
2722
2723div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
2724 width: 80%;
2725 font-size: 14px;
2726}
2727
2728div.dialog_row table td textarea {
2729 width: 80%;
2730 height: 200px;
2731 font-size: 12px;
2732}
2733
2734
2735/*
2736 * lib/css/legacy/tabs.css
2737 */
2738
2739/******* TABS ********/
2740
2741div.box_label_wrapper {
2742 border-bottom: 6px solid #777;
2743}
2744
2745div.box_label_body {
2746 height: 22px;
2747}
2748
2749ul.box_tabs {
2750 margin: 0px;
2751 padding: 0px;
2752 list-style: none;
2753}
2754
2755ul.box_tabs li {
2756 height: 22px;
2757 float:left;
2758 font-size: 12px;
2759 text-decoration: underline;
2760
2761 background-color: #DDD;
2762
2763 margin:0;
2764 margin-left: 4px;
2765 padding:0 0 0 9px;
2766 cursor: pointer;
2767}
2768
2769ul.box_tabs li a {
2770 display:block;
2771 padding:3px 15px 3px 6px;
2772 text-decoration: none;
2773}
2774
2775ul.box_tabs li.box_tab_mouseover {
2776 background-color: #BBB;
2777}
2778
2779ul.box_tabs li.box_tab_selected {
2780 background-color: #777;
2781
2782 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
2783 background: -moz-linear-gradient(top, #999, #777);
2784
2785 color: #FFF;
2786 font-weight:bold;
2787
2788}
2789ul.box_tabs li.box_tab_selected a {
2790 color: #fff;
2791}
2792
2793/*
2794 * lib/css/legacy/sidebar.css
2795 */
2796div.psidebar {
2797}
2798
2799div.psidebar div.head {
2800 font-size: 14px;
2801 font-weight: bold;
2802 color: #555;
2803 margin-bottom: 12px;
2804}
2805
2806div.psidebar div.section {
2807 margin-bottom: 11px;
2808 overflow: hidden;
2809}
2810
2811div.psidebar div.section-head {
2812 padding: 5px 11px;
2813 border-bottom: 1px solid #aaa;
2814}
2815
2816div.psidebar div.section-body {
2817 margin: 7px 11px 11px 11px;
2818}
2819
2820div.psidebar div.section-item {
2821 margin-bottom: 7px;
2822}
2823
2824div.psidebar div.section-item, div.psidebar .section-link {
2825 color: #666;
2826}
2827
2828/*
2829 * lib/css/Aristo/aristo.selected.css
2830 */
2831/*
2832 * jQuery UI CSS Framework 1.8.7
2833 *
2834 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
2835 * Dual licensed under the MIT or GPL Version 2 licenses.
2836 * http://jquery.org/license
2837 *
2838 * http://docs.jquery.com/UI/Theming/API
2839 */
2840
2841/* Layout helpers
2842----------------------------------*/
2843.ui-helper-hidden { display: none; }
2844.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
2845.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
2846.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
2847.ui-helper-clearfix { display: inline-block; }
2848/* required comment for clearfix to work in Opera \*/
2849* html .ui-helper-clearfix { height:1%; }
2850.ui-helper-clearfix { display:block; }
2851/* end clearfix */
2852.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
2853
2854
2855/* Interaction Cues
2856----------------------------------*/
2857.ui-state-disabled { cursor: default !important; }
2858
2859
2860/* Icons
2861----------------------------------*/
2862
2863/* states and images */
2864.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
2865
2866
2867/* Misc visuals
2868----------------------------------*/
2869
2870/* Overlays */
2871.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
2872
2873
2874/*
2875 * jQuery UI CSS Framework 1.8.7
2876 *
2877 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
2878 * Dual licensed under the MIT or GPL Version 2 licenses.
2879 * http://jquery.org/license
2880 *
2881 * http://docs.jquery.com/UI/Theming/API
2882 *
2883 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
2884 */
2885
2886
2887/* Component containers
2888----------------------------------*/
2889.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
2890.ui-widget .ui-widget { font-size: 1em; }
2891.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
2892.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
2893.ui-widget-content a { color: #4F4F4F; }
2894.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
2895.ui-widget-header {
2896 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
2897 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
2898 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
2899 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
2900 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
2901 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
2902 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
2903}
2904.ui-widget-header a { color: #4F4F4F; }
2905
2906/* Interaction states
2907----------------------------------*/
2908.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
2909.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
2910 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
2911 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
2912 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
2913 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
2914 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
2915 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
2916 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
2917 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
2918 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
2919 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
2920}
2921.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
2922.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #9D9D9D; font-weight: normal; color: #313131; }
2923.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
2924.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
2925 outline: none;
2926 color: #1c4257; border: 1px solid #7096ab;
2927 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
2928 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
2929 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
2930 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
2931 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
2932 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
2933 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
2934 -webkit-box-shadow: none;
2935 -moz-box-shadow: none;
2936 box-shadow: none;
2937}
2938.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
2939.ui-widget :active { outline: none; }
2940
2941/* Interaction Cues
2942----------------------------------*/
2943.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight { border: 1px solid #d2dbf4; background: #f4f8fd; color: #0d2054; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
2944.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
2945.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error { border: 1px solid #e2d0d0; background: #fcf0f0; color: #280b0b; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
2946.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
2947.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
2948.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
2949.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
2950.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
2951
2952/* Icons
2953----------------------------------*/
2954
2955/* states and images */
2956.ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
2957.ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
2958.ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
2959.ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
2960.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
2961.ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
2962.ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
2963.ui-state-error .ui-icon, .ui-state-error-text .ui-icon { background: url(../lib/css/Aristo/images/icon_sprite.png) -16px 0 no-repeat !important; }
2964.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
2965
2966/* positioning */
2967.ui-icon-carat-1-n { background-position: 0 0; }
2968.ui-icon-carat-1-ne { background-position: -16px 0; }
2969.ui-icon-carat-1-e { background-position: -32px 0; }
2970.ui-icon-carat-1-se { background-position: -48px 0; }
2971.ui-icon-carat-1-s { background-position: -64px 0; }
2972.ui-icon-carat-1-sw { background-position: -80px 0; }
2973.ui-icon-carat-1-w { background-position: -96px 0; }
2974.ui-icon-carat-1-nw { background-position: -112px 0; }
2975.ui-icon-carat-2-n-s { background-position: -128px 0; }
2976.ui-icon-carat-2-e-w { background-position: -144px 0; }
2977.ui-icon-triangle-1-n { background-position: 0 -16px; }
2978.ui-icon-triangle-1-ne { background-position: -16px -16px; }
2979.ui-icon-triangle-1-e { background-position: -32px -16px; }
2980.ui-icon-triangle-1-se { background-position: -48px -16px; }
2981.ui-icon-triangle-1-s { background-position: -64px -16px; }
2982.ui-icon-triangle-1-sw { background-position: -80px -16px; }
2983.ui-icon-triangle-1-w { background-position: -96px -16px; }
2984.ui-icon-triangle-1-nw { background-position: -112px -16px; }
2985.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
2986.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
2987.ui-icon-arrow-1-n { background-position: 0 -32px; }
2988.ui-icon-arrow-1-ne { background-position: -16px -32px; }
2989.ui-icon-arrow-1-e { background-position: -32px -32px; }
2990.ui-icon-arrow-1-se { background-position: -48px -32px; }
2991.ui-icon-arrow-1-s { background-position: -64px -32px; }
2992.ui-icon-arrow-1-sw { background-position: -80px -32px; }
2993.ui-icon-arrow-1-w { background-position: -96px -32px; }
2994.ui-icon-arrow-1-nw { background-position: -112px -32px; }
2995.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
2996.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
2997.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
2998.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
2999.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
3000.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
3001.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
3002.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
3003.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
3004.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
3005.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
3006.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
3007.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
3008.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
3009.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
3010.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
3011.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
3012.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
3013.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
3014.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
3015.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
3016.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
3017.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
3018.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
3019.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
3020.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
3021.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
3022.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
3023.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
3024.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
3025.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
3026.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
3027.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
3028.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
3029.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
3030.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
3031.ui-icon-arrow-4 { background-position: 0 -80px; }
3032.ui-icon-arrow-4-diag { background-position: -16px -80px; }
3033.ui-icon-extlink { background-position: -32px -80px; }
3034.ui-icon-newwin { background-position: -48px -80px; }
3035.ui-icon-refresh { background-position: -64px -80px; }
3036.ui-icon-shuffle { background-position: -80px -80px; }
3037.ui-icon-transfer-e-w { background-position: -96px -80px; }
3038.ui-icon-transferthick-e-w { background-position: -112px -80px; }
3039.ui-icon-folder-collapsed { background-position: 0 -96px; }
3040.ui-icon-folder-open { background-position: -16px -96px; }
3041.ui-icon-document { background-position: -32px -96px; }
3042.ui-icon-document-b { background-position: -48px -96px; }
3043.ui-icon-note { background-position: -64px -96px; }
3044.ui-icon-mail-closed { background-position: -80px -96px; }
3045.ui-icon-mail-open { background-position: -96px -96px; }
3046.ui-icon-suitcase { background-position: -112px -96px; }
3047.ui-icon-comment { background-position: -128px -96px; }
3048.ui-icon-person { background-position: -144px -96px; }
3049.ui-icon-print { background-position: -160px -96px; }
3050.ui-icon-trash { background-position: -176px -96px; }
3051.ui-icon-locked { background-position: -192px -96px; }
3052.ui-icon-unlocked { background-position: -208px -96px; }
3053.ui-icon-bookmark { background-position: -224px -96px; }
3054.ui-icon-tag { background-position: -240px -96px; }
3055.ui-icon-home { background-position: 0 -112px; }
3056.ui-icon-flag { background-position: -16px -112px; }
3057.ui-icon-calendar { background-position: -32px -112px; }
3058.ui-icon-cart { background-position: -48px -112px; }
3059.ui-icon-pencil { background-position: -64px -112px; }
3060.ui-icon-clock { background-position: -80px -112px; }
3061.ui-icon-disk { background-position: -96px -112px; }
3062.ui-icon-calculator { background-position: -112px -112px; }
3063.ui-icon-zoomin { background-position: -128px -112px; }
3064.ui-icon-zoomout { background-position: -144px -112px; }
3065.ui-icon-search { background-position: -160px -112px; }
3066.ui-icon-wrench { background-position: -176px -112px; }
3067.ui-icon-gear { background-position: -192px -112px; }
3068.ui-icon-heart { background-position: -208px -112px; }
3069.ui-icon-star { background-position: -224px -112px; }
3070.ui-icon-link { background-position: -240px -112px; }
3071.ui-icon-cancel { background-position: 0 -128px; }
3072.ui-icon-plus { background-position: -16px -128px; }
3073.ui-icon-plusthick { background-position: -32px -128px; }
3074.ui-icon-minus { background-position: -48px -128px; }
3075.ui-icon-minusthick { background-position: -64px -128px; }
3076.ui-icon-close { background-position: -80px -128px; }
3077.ui-icon-closethick { background-position: -96px -128px; }
3078.ui-icon-key { background-position: -112px -128px; }
3079.ui-icon-lightbulb { background-position: -128px -128px; }
3080.ui-icon-scissors { background-position: -144px -128px; }
3081.ui-icon-clipboard { background-position: -160px -128px; }
3082.ui-icon-copy { background-position: -176px -128px; }
3083.ui-icon-contact { background-position: -192px -128px; }
3084.ui-icon-image { background-position: -208px -128px; }
3085.ui-icon-video { background-position: -224px -128px; }
3086.ui-icon-script { background-position: -240px -128px; }
3087.ui-icon-alert { background-position: 0 -144px; }
3088.ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
3089.ui-icon-notice { background-position: -32px -144px; }
3090.ui-icon-help { background-position: -48px -144px; }
3091.ui-icon-check { background-position: -64px -144px; }
3092.ui-icon-bullet { background-position: -80px -144px; }
3093.ui-icon-radio-off { background-position: -96px -144px; }
3094.ui-icon-radio-on { background-position: -112px -144px; }
3095.ui-icon-pin-w { background-position: -128px -144px; }
3096.ui-icon-pin-s { background-position: -144px -144px; }
3097.ui-icon-play { background-position: 0 -160px; }
3098.ui-icon-pause { background-position: -16px -160px; }
3099.ui-icon-seek-next { background-position: -32px -160px; }
3100.ui-icon-seek-prev { background-position: -48px -160px; }
3101.ui-icon-seek-end { background-position: -64px -160px; }
3102.ui-icon-seek-start { background-position: -80px -160px; }
3103/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
3104.ui-icon-seek-first { background-position: -80px -160px; }
3105.ui-icon-stop { background-position: -96px -160px; }
3106.ui-icon-eject { background-position: -112px -160px; }
3107.ui-icon-volume-off { background-position: -128px -160px; }
3108.ui-icon-volume-on { background-position: -144px -160px; }
3109.ui-icon-power { background-position: 0 -176px; }
3110.ui-icon-signal-diag { background-position: -16px -176px; }
3111.ui-icon-signal { background-position: -32px -176px; }
3112.ui-icon-battery-0 { background-position: -48px -176px; }
3113.ui-icon-battery-1 { background-position: -64px -176px; }
3114.ui-icon-battery-2 { background-position: -80px -176px; }
3115.ui-icon-battery-3 { background-position: -96px -176px; }
3116.ui-icon-circle-plus { background-position: 0 -192px; }
3117.ui-icon-circle-minus { background-position: -16px -192px; }
3118.ui-icon-circle-close { background-position: -32px -192px; }
3119.ui-icon-circle-triangle-e { background-position: -48px -192px; }
3120.ui-icon-circle-triangle-s { background-position: -64px -192px; }
3121.ui-icon-circle-triangle-w { background-position: -80px -192px; }
3122.ui-icon-circle-triangle-n { background-position: -96px -192px; }
3123.ui-icon-circle-arrow-e { background-position: -112px -192px; }
3124.ui-icon-circle-arrow-s { background-position: -128px -192px; }
3125.ui-icon-circle-arrow-w { background-position: -144px -192px; }
3126.ui-icon-circle-arrow-n { background-position: -160px -192px; }
3127.ui-icon-circle-zoomin { background-position: -176px -192px; }
3128.ui-icon-circle-zoomout { background-position: -192px -192px; }
3129.ui-icon-circle-check { background-position: -208px -192px; }
3130.ui-icon-circlesmall-plus { background-position: 0 -208px; }
3131.ui-icon-circlesmall-minus { background-position: -16px -208px; }
3132.ui-icon-circlesmall-close { background-position: -32px -208px; }
3133.ui-icon-squaresmall-plus { background-position: -48px -208px; }
3134.ui-icon-squaresmall-minus { background-position: -64px -208px; }
3135.ui-icon-squaresmall-close { background-position: -80px -208px; }
3136.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
3137.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
3138.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
3139.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
3140.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
3141.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
3142
3143
3144/* Misc visuals
3145----------------------------------*/
3146
3147/* Corner radius */
3148.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
3149.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
3150.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
3151.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
3152.ui-corner-top { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
3153.ui-corner-bottom { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
3154.ui-corner-right { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
3155.ui-corner-left { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
3156.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
3157
3158/* Overlays */
3159.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
3160.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #000000; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
3161
3162/*
3163 * jQuery UI Autocomplete 1.8.7
3164 *
3165 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
3166 * Dual licensed under the MIT or GPL Version 2 licenses.
3167 * http://jquery.org/license
3168 *
3169 * http://docs.jquery.com/UI/Autocomplete#theming
3170 */
3171.ui-autocomplete {
3172 position: absolute; cursor: default; z-index: 3;
3173 -moz-border-radius: 0;
3174 -webkit-border-radius: 0;
3175 border-radius: 0;
3176 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
3177 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
3178 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
3179}
3180
3181/* workarounds */
3182* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
3183
3184/*
3185 * jQuery UI Menu 1.8.7
3186 *
3187 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
3188 * Dual licensed under the MIT or GPL Version 2 licenses.
3189 * http://jquery.org/license
3190 *
3191 * http://docs.jquery.com/UI/Menu#theming
3192 */
3193.ui-menu {
3194 list-style:none;
3195 padding: 2px;
3196 margin: 0;
3197 display:block;
3198 float: left;
3199}
3200.ui-menu .ui-menu {
3201 margin-top: -3px;
3202}
3203.ui-menu .ui-menu-item {
3204 margin:0;
3205 padding: 0;
3206 zoom: 1;
3207 float: left;
3208 clear: left;
3209 width: 100%;
3210}
3211.ui-menu .ui-menu-item a {
3212 text-decoration:none;
3213 display:block;
3214 padding:.2em .4em;
3215 line-height:1.5;
3216 zoom:1;
3217}
3218.ui-menu .ui-menu-item a.ui-state-hover,
3219.ui-menu .ui-menu-item a.ui-state-active {
3220 font-weight: normal;
3221 margin: -1px;
3222 background: #5f83b9;
3223 color: #FFFFFF;
3224 border-color: #466086;
3225 -moz-border-radius: 0;
3226 -webkit-border-radius: 0;
3227 border-radius: 0;
3228}
3229
3230/*
3231 * jQuery UI Datepicker 1.8.7
3232 *
3233 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
3234 * Dual licensed under the MIT or GPL Version 2 licenses.
3235 * http://jquery.org/license
3236 *
3237 * http://docs.jquery.com/UI/Datepicker#theming
3238 */
3239.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
3240.ui-datepicker {
3241 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
3242 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
3243 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
3244}
3245.ui-datepicker .ui-datepicker-header { position:relative; padding:.35em 0; border: none; border-bottom: 1px solid #B6B6B6; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; }
3246.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
3247.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
3248.ui-datepicker .ui-datepicker-prev { left:2px; }
3249.ui-datepicker .ui-datepicker-next { right:2px; }
3250.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
3251.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
3252.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
3253.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
3254.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; background: url(../lib/css/Aristo/images/icon_sprite.png) no-repeat; }
3255.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; font-size: 12px; text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
3256.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
3257.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
3258.ui-datepicker select.ui-datepicker-month,
3259.ui-datepicker select.ui-datepicker-year { width: 49%;}
3260.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
3261.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
3262.ui-datepicker td { border: 0; padding: 1px; }
3263.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
3264.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
3265.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
3266.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
3267.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
3268.ui-datepicker table .ui-state-hover { background: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; -webkit-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; -moz-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; border-color: #5F83B9; }
3269.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
3270.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
3271
3272/* with multiple calendars */
3273.ui-datepicker.ui-datepicker-multi { width:auto; }
3274.ui-datepicker-multi .ui-datepicker-group { float:left; }
3275.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
3276.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
3277.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
3278.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
3279.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
3280.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
3281.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
3282.ui-datepicker-row-break { clear:both; width:100%; }
3283
3284/* RTL support */
3285.ui-datepicker-rtl { direction: rtl; }
3286.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
3287.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
3288.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
3289.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
3290.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
3291.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
3292.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
3293.ui-datepicker-rtl .ui-datepicker-group { float:right; }
3294.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
3295.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
3296
3297/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
3298.ui-datepicker-cover {
3299 display: none; /*sorry for IE5*/
3300 display/**/: block; /*sorry for IE5*/
3301 position: absolute; /*must have*/
3302 z-index: -1; /*must have*/
3303 filter: mask(); /*must have*/
3304 top: -4px; /*must have*/
3305 left: -4px; /*must have*/
3306 width: 200px; /*must have*/
3307 height: 200px; /*must have*/
3308}
3309
3310
3311
3312/*
3313 * lib/css/ui/common.css
3314 */
3315.navbar-icon-home {
3316 vertical-align: middle;
3317 opacity: 0.4;
3318 Filter:alpha(opacity=40); /* For IE8 and earlier */
3319}
3320
3321.navbar-icon-home:hover,
3322.navbar-icon-home:focus,
3323.navbar-icon-home:active,
3324.navbar-icon-home-hover{
3325 opacity:1;
3326 Filter:alpha(opacity=100); /* For IE8 and earlier */
3327}
3328
3329
3330/*
3331 * lib/css/ui/list.css
3332 */
3333.hide {
3334 display: none;
3335}
3336
3337.list-filters {
3338 margin: 7px 0px;
3339}
3340
3341.wnlist .img-load {
3342 display: none;
3343 float: left;
3344 margin-bottom: 8px;
3345}
3346
3347/* list-row */
3348div.list-row {
3349 border-bottom: 1px solid #eee;
3350 padding: 5px 0px;
3351}
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303352
3353div.list-row .label {
3354 margin-right: 4px;
3355}
3356
3357div.list-row table {
3358 table-layout: fixed;
3359 border-collapse: collapse;
3360 width: 100%;
3361}
3362
3363div.list-row table td {
3364 overflow: hidden;
3365 /*padding-right: 3px;*/
3366 padding: 0px 3px;
3367 vertical-align: middle;
3368 height: 24px;
3369 max-height: 24px;
3370 word-wrap: break-word;
3371}
3372
3373div.paging-button {
3374 text-align: center;
3375 padding: 11px 0px;
3376}
3377
3378div.show_filters {
3379 display: none;
3380}
3381
3382div.filter_list {
3383 padding: 13px;
3384}
3385
3386div.show_filters.well {
3387 margin-top: 11px;
3388 margin-bottom: 11px;
3389}
3390
3391div.filter_list .run_btn {
3392 text-align: right;
3393}
3394
3395div.filter_list .add_filter {
3396 margin: 3px 0px;
3397}
3398
3399div.list_filter {
3400 margin: 7px 0px;
3401}
3402
3403div.list_filter input, div.list_filter select {
3404 width: 130px;
3405 margin-right: 7px;
3406}
3407
3408/* bar */
3409
3410span.bar-outer {
3411 display: inline-block;
3412 margin: 0px 7px;
3413 margin-top: 3px;
3414 background-color: #fff;
3415 border: 1px solid #aaa;
3416 height: 10px;
3417}
3418
3419span.bar-inner {
3420 display: inline-block;
3421 background-color: #bdf;
3422 height: 100%;
3423 margin-bottom: 2px;
3424 float: left;
3425}
3426span.bar-complete {
3427 background-color: #009900;
3428}
3429span.bar-empty {
3430 background-color: #990000;
3431}
3432
3433
3434/* stats */
3435
3436div.stat-wrapper {
3437 margin-bottom: 19px;
3438}
3439
3440div.stat-grid {
3441 border: 2px solid #bbb;
3442 background-color: white;
3443 border-radius: 5px;
3444 -moz-border-radius: 5px;
3445 -webkit-border-radius: 5px;
3446 overflow: hidden;
3447}
3448
3449div.stat-label {
3450 position: relative;
3451 padding: 3px;
3452 text-align: center;
3453}
3454div.stat-label, div.stat-label a {
3455 z-index: 5;
3456}
3457
3458div.stat-item {
3459 position: relative;
3460 border-bottom: 1px solid #ddd;
3461}
3462div.stat-item:last-child {
3463 border-bottom: 0px solid #ddd;
3464}
3465
3466div.stat-bar {
3467 position: absolute;
3468 left: 0px;
3469 background-color: #def;
3470 height: 100%;
3471 z-index: 0;
3472}
3473
3474
3475
3476
3477
3478/*
3479 * lib/css/ui/views.css
3480 */
3481
3482.breadcrumbs {
3483 color: #000000;
3484}
3485
3486.breadcrumbs a {
3487 color: #000000;
3488}
3489
3490div.appframe-titlebar {
3491 padding: 6px;
3492 background: #eeeeee; /* Old browsers */
3493 background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
3494 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
3495 background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
3496 background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
3497 background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */
3498 background: linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* W3C */
3499 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05303500 border-bottom: 1px solid #aaa;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303501 min-height: 1.2em;
3502}
3503
3504div.appframe-toolbar {
3505 padding: 4px;
3506 background: #eeeeee;
3507 border-top: 1px solid #f8f8f8;
3508 border-bottom: 1px solid #ccc;
3509}
3510
3511/*
3512 * lib/css/ui/fonts.css
3513 */
3514@font-face {
3515 font-family: 'Pontano Sans';
3516 font-style: normal;
3517 font-weight: 800;
3518 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
3519}
3520
3521@font-face {
3522 font-family: 'Droid Sans';
3523 font-style: normal;
3524 font-weight: normal;
3525 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
3526}
3527
3528@font-face {
3529 font-family: 'PT Sans';
3530 font-style: normal;
3531 font-weight: normal;
3532 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
3533}
3534
3535@font-face {
3536 font-family: 'Open Sans';
3537 font-style: normal;
3538 font-weight: 400;
3539 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
3540}
3541
3542@font-face {
3543 font-family: 'Lato';
3544 font-style: normal;
3545 font-weight: 400;
3546 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
3547}
3548
3549@font-face {
3550 font-family: 'Cabin';
3551 font-style: normal;
3552 font-weight: 400;
3553 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
3554}
3555
3556@font-face {
3557 font-family: 'Pacifico';
3558 font-style: normal;
3559 font-weight: normal;
3560 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('../lib/css/fonts/pacifico.woff') format('woff');
3561}
3562
3563
3564
3565/*
3566 * erpnext/startup/startup.css
3567 */
3568h1, h2, h3, h4, h5 {
3569 font-family: "Helvetica Neue", "Open Sans", Helvetica, sans-serif;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303570 margin-top: 0.2em;
3571}
3572
3573body {
3574 font-family: "Helvetica Neue", "Open Sans", Helvetica, sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05303575 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303576}
3577
3578span, div, td, input, textarea, button, select {
3579 font-family: inherit;
3580}
3581
3582body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05303583 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05303584 color: #616161;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303585}
3586
Rushabh Mehta983a1712012-03-21 13:35:34 +05303587.small {
3588 font-size: 11.5px;
3589}
3590
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303591.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303592 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303593 text-align: center;
3594}
3595
Anand Doshidb628762012-02-24 17:56:00 +05303596.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303597 margin: -3px 0px;
3598 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303599 min-width: 20px;
3600 text-align: center;
3601 display: inline-block;
3602 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303603 color: #999999;
3604 background-color: #333131;
3605}
3606
3607.navbar-new-comments:hover,
3608.navbar-new-comments:active,
3609.navbar-new-comments:focus {
3610 color: #fff;
3611}
3612
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303613.navbar-new-comments-true {
3614 color: #fff;
3615 background-color: #B00D07;
3616}
3617
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303618/*extra size menus for recent*/
3619.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3620 min-width: 160px !important;
3621 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303622}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303623