blob: 85bea74aea464839c61afc43ce753dba9b15502d [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
3 * lib/css/legacy/body.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5html {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05306 margin: 0px;
7 padding: 0px;
8}
9
10body {
11 margin: 0px;
12 padding: 0px;
13 font-family: Arial, Helvetica, Sans;
Rushabh Mehta983a1712012-03-21 13:35:34 +053014 font-size: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053015 color: #000;
Rushabh Mehta3f29b852012-02-20 15:40:29 +053016 background-color: #e2e2e2;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053017}
18
Rushabh Mehtaafaac602012-02-14 11:44:13 +053019pre { margin: 0px; padding: 0px; }
20
21button { margin: 2px; margin-left: 0px; }
22
23label {
24 padding-top: 15px;
25 color: #404040;
26}
27
28select, input, textarea {
Rushabh Mehtab9878d02012-03-12 16:12:09 +053029 border: 1px solid #ccc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053030 -moz-border-radius: 4px;
31 -webkit-border-radius: 4px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053032 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053033 padding: 4px;
Rushabh Mehtab9878d02012-03-12 16:12:09 +053034 color: #444;
35 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
36 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
37 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
Rushabh Mehtaafaac602012-02-14 11:44:13 +053038}
39
40textarea {
41 font-family: inherit;
42 height: 120px;
43 width: 90%;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053044 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053045 white-space: normal;
46}
47
48table { padding: 0px; border-collapse: 'collapse'}
49
50td {
51 padding:0px;
52 margin: 0px;
53 vertical-align: top;
54}
55
56p {
57 margin: 0px 0px 9px 0px;
58 line-height: 1.5em;
59}
60
61li {
62 line-height: 1.5em;
63}
64
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053065hr {
66 margin: 18px 0;
67 border: 0;
68 border-top: 1px solid #e5e5e5;
69 border-bottom: 1px solid #ffffff;
70}
71
Rushabh Mehtad0251332012-02-21 17:26:50 +053072/* links */
73
Rushabh Mehtaafaac602012-02-14 11:44:13 +053074a:active { outline:none; }
75
Rushabh Mehtad0251332012-02-21 17:26:50 +053076a {
77 color: #0088cc;
78 text-decoration: none;
79}
80a:hover {
81 color: #005580;
82 text-decoration: underline;
83}
84
85.link_type {
86 padding:2px;
87 color: #0088cc;
88 cursor: pointer;
89}
90
91.link_type:hover {
92 color: #005580;
93 text-decoration: underline;
94}
95
Rushabh Mehtaafaac602012-02-14 11:44:13 +053096:focus { -moz-outline-style:none; }
97
98table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
99table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
100
101div.fix_ff_cursor { overflow: auto; }
102
103/* --- Layout --- */
104
105div.comment { color: #444; }
106
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530107.small {
108 font-size: 11px;
109}
110
111.help {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530112 margin-bottom: 3px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530113 color: #888;
114}
115
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530116div#body_div {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530117 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530118 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530119 width: 900px;
120 margin: auto;
121 margin-top: 56px;
122}
123
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530124.content {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530125 width: 900px;
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530126}
127
128.background-fade-in {
129 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
130 -moz-transition: background 1s ease-in;
131 -o-transition: background 1s ease-in;
132 transition: background 1s ease-in;
133}
134
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530135footer {
Rushabh Mehtab6f80882012-03-23 14:19:49 +0530136 width: 900px;
137 margin: auto;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530138}
139header .container {
140 width: 900px;
141 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530142}
143
Rushabh Mehta2438de42012-03-15 16:43:46 +0530144@media (max-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530145 div#body_div, header .container, .content, #opened-page-selector, footer {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530146 width: 900px;
147 }
148}
149
150@media (min-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530151 div#body_div, header .container, .content, #opened-page-selector, footer {
152 width: 1100px;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530153 }
154}
155
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530156div.no_script {
157 display: none;
158}
159
160div.loading_div {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530161 background-color: #FFFFCC;
162 z-index: 1999;
163 right: 5px;
164 width: 90px;
165 display: none;
166 text-align: center;
167 padding: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530168 border: 1px solid #FF4;
169}
170
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530171div.std-footer {
Rushabh Mehta0f0b1f52012-04-11 17:26:03 +0530172 margin: 13px -15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530173 border-top: 1px solid #AAA;
174 padding: 13px;
175}
176
177div.std-footer-item {
178 margin: 0px 13px 13px 0px;
179}
180
181.shadow {
182 -moz-box-shadow: 0px 2px 2px #888;
183 -webkit-box-shadow: 0px 2px 2px #888;
184 box-shadow: 0px 2px 2px #888;
185}
186
187.round {
188 -webkit-border-radius: 5px;
189 -moz-border-radius: 5px;
190 border-radius: 5px;
191}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530192
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530193.layout_wrapper, .layout-wrapper {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530194 -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
195 -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
196 box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530197 background-color: #fff;
198 padding: 15px;
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530199 -webkit-border-radius: 5px;
200 -moz-border-radius: 5px;
201 border-radius: 5px;
202 margin-bottom: 30px;
203 overflow: hidden;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530204}
205
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530206.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530207 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530208 padding: 0px;
209}
210
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530211.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530212 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530213 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530214 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530215 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530216 min-height: 600px;
Rushabh Mehtac2a08182012-04-12 10:18:45 +0530217 -moz-box-shadow: 2px 0px 1px #ddd;
218 -webkit-box-shadow: 2px 0px 1px #ddd;
219 box-shadow: 2px 0px 1px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530220}
221
222.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530223 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530224 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530225 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530226 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530227 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530228 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530229}
230
231/* from bootstrap */
232.container {
233 margin-left: auto;
234 margin-right: auto;
235 zoom: 1;
236}
237.container:before, .container:after {
238 display: table;
239 content: "";
240 zoom: 1;
241}
242.container:after {
243 clear: both;
244}
245
Anand Doshi40ee8d62012-02-24 19:21:47 +0530246.well {
247 min-height: 20px;
248 padding: 19px;
249 margin-bottom: 20px;
250 background-color: #f5f5f5;
251 border: 1px solid #eee;
252 border: 1px solid rgba(0, 0, 0, 0.05);
253 -webkit-border-radius: 4px;
254 -moz-border-radius: 4px;
255 border-radius: 4px;
256 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
257 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
258 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
259}
260
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530261.avatar-small {
262 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530263 width: 24px;
264 height: 20px;
265 vertical-align: middle;
266 overflow: hidden;
267 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530268}
269.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530270 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530271}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530272
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530273/*
274 * lib/css/legacy/messages.css
275 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530276
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530277/* FLOATING MESSAGE */
278
279.btn-img { cursor: pointer; }
280
281div.fetching { color: #888; text-align:right; }
282
283div.notice {
284 postion: absolute;
285 background-color: #000;
286 -moz-border-radius: 5px; -webkit-border-radius: 5px;
287 opacity: 0.6;
288 right: 0;
289 top: 0;
290 margin-top: 8px;
291 z-index: -1;
292 padding: 8px;
293}
294
295/** help **/
296
297.info-box {
298 background-color: #F8F8F8;
299 border: 1px solid #CCCCCC;
300 border-radius: 3px 3px 3px 3px;
301 line-height: 1.6em;
302 overflow: auto;
303 padding: 6px 10px;
304 margin-bottom: 9px;
305}
306
307.help_box, .help-box {
308 background-color:#FFC;
309 font-size: 13px;
310 color: #864;
311 padding: 7px;
312 margin: 11px 0px;
313 border: 1px solid #EEB;
314}
315
316.help_box_big {
317 background-color:#FFC;
318 color: #864;
319 padding: 7px;
320 margin: 7px 0px;
321 border: 1px solid #EEB;
322 text-align: center;
323 font-size: 14px;
324}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530325
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530326/*
327 * lib/css/legacy/forms.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530328 */
329/* FORMS */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530330
Rushabh Mehta0f0b1f52012-04-11 17:26:03 +0530331div.form-title {
332 /*background-color: #e0eeff;*/
Nabin Hait7fca9e62012-04-13 12:18:06 +0530333 padding: 5px 11px 15px 11px;
Rushabh Mehta0f0b1f52012-04-11 17:26:03 +0530334 margin: -15px -15px 0px -15px;
335 border-bottom: 1px solid #eee;
336}
337
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530338div.form-section-head {
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530339 margin: 11px -15px 3px -15px;
Rushabh Mehta38474e22012-03-13 16:11:52 +0530340 border-top: 1px solid #ccc;
Nabin Hait7fca9e62012-04-13 12:18:06 +0530341 padding: 11px 15px 0px 15px;
Rushabh Mehta38474e22012-03-13 16:11:52 +0530342}
343
344div.form-layout-row:first-child .form-section-head {
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530345 border-top: 0px solid #ccc !important;
346 margin-top: 0px;
Rushabh Mehta0f0b1f52012-04-11 17:26:03 +0530347 padding-top: 15px;
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530348}
349
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530350div.form-section-head h3 {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530351 line-height: 20px;
352}
353
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530354div.form-section-head hr {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530355 margin: 9px 0px;
356}
357
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530358
359div.frm_print_wrapper {
360 background-color:#FFF;
361 border:1px solid #444;
362 padding: 40px;
363
364 box-shadow:1px 1px 8px #229;
365 -moz-box-shadow: 1px 1px 8px #229;
366 -webkit-box-shadow: 1px 1px 8px #229;
367}
368
369div.page_break {
370 margin: 24px 0px;
371 border-top: 1px dashed #888;
372}
373
374div.grid_tbarlinks {
375 border-bottom: 0px;
376 background-color: #CCC;
377 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530378 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530379 float: right;
380
381 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
382 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
383}
384
385
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530386div.dialog_frm {
387 position: relative;
388 margin: 10px;
389}
390
391
392
393/*------------------*/
394
395.top_cell {
396 height: 50px;
397}
398
399div.attach_area {
400 padding: 8px;
401 margin: 8px;
402 background-color: #EEE;
403}
404
405div.attach_area table {
406 width: 100%;
407}
408
409.tablabel_normal {
410 margin: 0 4px 0 0;
411 padding: 3px 5px;
412 line-height: 1.3em;
413 display: inline;
414 cursor: pointer;
415}
416
417.tablabel_selected {
418 margin: 0 4px 0 0;
419 padding: 3px 5px;
420 line-height: 1.3em;
421 font-weight: bold;
422 display: inline;
423 cursor: pointer;
424 color: #000;
425}
426
427.scrollhead_wrapper {
428 position: absolute;
429 z-index: 1;
430 height: 30px;
431}
432
433.treeimg {
434 cursor: pointer;
435 margin-right: 3px;
436}
437
438
439.sectionCell {
440 padding: 5px;
441 vertical-align: top;
442}
443
444.code_area {
445 width: 80%;
446 margin: 8px;
447 padding: 4px;
448 background-color: #F8F8F8;
449 border: 1px solid #CCC;
450 overflow-x: auto;
451}
452
453.code_text {
454 width: 100%;
455 height: 360px;
456 margin-top: 3px;
457 font-family: Courier, Fixed;
458 font-size: 12px;
459}
460
461div.time_field select{
462 display: inline;
463 margin: 2px;
464 width: 45px;
465}
466
467/* Documents */
468
469.frm_field_table {
470 width: 100%;
471 border-collapse: collapse;
472}
473
474.datalabelcell {
475 padding: 2px 0px;
476 width: 160px;
477 vertical-align: top;
478}
479.datainputcell { padding: 2px 0px; }
480
481
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530482.help ol {
483 padding-left: 19px;
484}
485
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530486.field_description_top {
487 margin-bottom: 3px;
488}
489
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530490.input_area input, select, textarea {
491 font-size: 14px;
492 padding: 2px;
493}
494
495.input_area input {
496 width: 80%;
497 margin: 0px;
498}
499.input_area select {
500 width: 80%;
501}
502.input_area textarea {
503 width: 90%;
504}
505
506.disp_area {
507 width: 80%;
508 padding: 2px 0px;
509 font-size: 12px;
510}
511.disp_area_no_val {
512 height: 14px;
513}
514
515.no_img {
516 padding: 40px;
517 width: 100px;
518 height: 20px;
519 color: #888;
520 text-align: center;
521 border: 1px solid #AAA;
522}
523
524.input-mandatory {
525 font-size: 14px !important;
526 font-weight: bold;
527}
528
529.field-to-update {
530 background-color:#FEE;
531}
532
533/* sidebar */
534
535div.sidebar-comment-wrapper input {
536 width: 50%;
537}
538div.sidebar-comment-message {
539 margin-top: 8px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530540 color: #777;
541}
542
543div.sidebar-comment-text {
544 font-size: 12px;
545 font-weight: bold;
546 margin-top: 8px;
547 color: #444;
548}
549div.sidebar-comment-info {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530550 color: #777;
551}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530552
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530553/*
554 * lib/css/legacy/grid.css
555 */
556
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530557
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530558/* Grid */
559
560
561/* --- Simple --- */
562.grid_wrapper_simple {
563 width: 100%;
564 margin-bottom: 8px;
565 border: 1px solid #AA9;
566}
567
568.grid_head_wrapper_simple {
569 padding: 0px;
570 border-bottom: 2px solid #AAA;
571}
572
573.grid_head_wrapper_simple td {
574 border-right: 1px solid #AA9;
575}
576
577.grid_head_wrapper_simple td div {
578 padding: 2px;
579}
580
581.grid_tab_wrapper_simple {
582}
583
584.grid_cell_simple {
585 padding: 2px;
586 background-color: #fff;
587 border-right: 1px solid #AA9;
588}
589
590
591/* --- Normal --- */
592.grid_wrapper {
593 position: relative;
594 overflow: auto;
595 border: 1px solid #AAA;
596 width: 100%;
597 margin-bottom: 8px;
598 background-color: #fff;
599}
600
601.grid_tab_wrapper {
602 position: absolute;
603 top: 40px;
604 border-bottom: 1px solid #DDD;
605}
606
607.grid_table, .grid_head_table {
608 table-layout: fixed;
609 border-collapse: collapse;
610 /*width: 100%;*/
611}
612
613.grid_cell {
614 border-right: 1px solid #ddd;
615 padding: 0px;
616 background-color: #fff;
617}
618
619.grid_head_wrapper {
620 position: absolute;
621 z-index: 1;
622 height: 40px;
623 padding: 0px;
624 overflow: hidden;
625 /*background-color: #fff;*/
626}
627
628.grid_head_table td {
629 background-color: #EEE;
630 border-right: 1px solid #AAA;
631 border-bottom: 1px solid #AAA;
632 height: 40px;
633 padding: 0px;
634}
635
636.grid_head_table td div {
637 color: #222;
638 font-weight: bold;
639 overflow: hidden;
640 padding: 2px 0px;
641 text-align: center;
642}
643
644.grid_selector {
645 padding: 1px;
646 border-right: 1px solid #DDD;
647 width: 20px;
648 background-color: #fff;
649}
650
651.grid_cell_div {
652 padding: 2px;
653 cursor: pointer;
654 overflow: hidden;
655 border: 2px solid #FFF;
656}
657
658.grid_cell_div_selected {
659 border: 2px solid #88f;
660}
661
662.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
663 margin: 0px;
664 border: 0px;
665 width: 100%;
666 margin: 0px;
667 }
668
669.grid_cell_div textarea {
670 border: 3px solid #abf;
671 height:200px;
672 width: 300px;
673 z-index: 10;
674 position:absolute;
675}
676
677.gridDivSelected option { border: 0px; }
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530678
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530679/*
680 * lib/css/legacy/listing.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530681 */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530682
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530683
684/* SRS */
685
686table.srs_result_tab {
687 border: 2px solid #AAA;
688 border-collapse: collapse;
689}
690
691/* firefox bug fix for disappering borders */
692table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
693 position: static;
694}
695
696table.srs_result_tab td {
697 padding: 3px 2px;
698 position: static;
699}
700
701div.srs_body_area {
702}
703
704div.srs_results_area {
705}
706
707div.srs_filter_wrapper {
708 border: 1px solid #CCF;
709
710 background-color: #EEF;
711 margin:0px 0px 8px 0px;
712
713 -moz-border-radius: 5px;
714 -webkit-border-radius: 5px;
715 border-radius: 5px;
716}
717
718div.srs_filter_area {
719 padding: 8px;
720}
721
722div.srs_filter_area td {
723 vertical-align: middle;
724}
725
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530726/*
727 * lib/css/legacy/report.css
728 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530729
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530730/* Reports */
731
732div.report_grid_area {
733 position: relative;
734 padding: 8px;
735}
736
737
738div.report_tab {
739 border: 1px solid #AAA;
740 position: relative;
741 overflow: auto;
742}
743
744div.report_no_data {
745 padding: 8px;
746 background-color: #EEE;
747 border: 1px solid #DDD;
748 position: absolute;
749 margin-left: 40%;
750 margin-top: 50px;
751 display: none;
752}
753
754div.report_htitle {
755 float: left;
756 padding: 2px;
757 font-size: 14px;
758 font-weight: bold;
759 margin-left: 4px;
760 color: #665;
761 /*font-weight: bold;*/
762}
763
764div.report_tbar {
765 background-color: #EEF;
766 border: 1px solid #CCF;
767 border-bottom: 0px;
768 height: 28px;
769}
770
771div.report_tbar table{
772 width: 100%;
773}
774div.report_tbar table td {
775
776}
777div.report_tbar table td div {
778 position: relative;
779}
780div.report_tbar button, div.report_tbar select, div.report_tbar img {
781 font-size: 11px;
782 margin: 0px;
783}
784
785div.report_head_wrapper {
786 position: absolute;
787 height: 24px;
788 top: 0px;
789 z-index: 1;
790}
791
792div.report_tab_wrapper {
793 position: absolute;
794 border-bottom: 1px solid #AAA;
795 border-top: 1px solid #AAA;
796}
797
798div.report_tab_wrapper table, div.report_head_wrapper table {
799 table-layout: fixed;
800 border-collapse: collapse;
801 /*width: 100%;*/
802}
803
804div.report_tab_wrapper table td, div.report_head_wrapper table td {
805 border-left: 1px solid #AAA;
806 border-right: 1px solid #AAA;
807 border-bottom: 1px solid #AAA;
808 overflow: hidden;
809 padding: 0px;
810}
811
812div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
813 padding: 3px;
814 overflow: hidden;
815}
816
817.report_head_cell {
818 background-color: #EEE;
819 border-bottom: 1px solid #AA9;
820 text-align: center;
821 font-weight: bold;
822}
823.report_head_cell div {
824 color:#222;
825 height: 18px;
826}
827
828
829/* FINDER */
830
831div.finder_wrapper {
832}
833
834div.finder_body_area {
835 margin: 16px;
836}
837
838div.finder_body {
839 display: none;
840}
841
842div.finder_advanced_area table {
843 width: 80%;
844}
845
846div.finder_advanced_area textarea {
847 width: 80%;
848}
849
850div.finder_filter_area {
851 position: relative;
852}
853
854div.filter_head {
855 font-size: 14px;
856 margin-bottom: 2px;
857}
858div.filter_dt_head {
859 font-size: 14px;
860 font-weight: bold;
861 margin-bottom: 2px;
862}
863table.filter_tab {
864 width: 96%;
865 border-collapse: collapse;
866}
867
868table.filter_tab td {
869 width: 50%;
870}
871
872div.finder_picker_area {
873
874}
875div.builder_field {
876 margin: 0px;
877}
878div.builder_dt_head {
879 font-size: 14px;
880 font-weight: bold;
881 margin-bottom: 2px;
882}
883
884div.builder_field table {
885 width: 90%;
886 border-collapse: collapse;
887}
888
889div.builder_label {
890 height: 20px;
891}
892
893div.builder_head {
894 font-size: 16px;
895 font-weight: bold;
896 color: #AB6;
897}
898
899table.builder_tab {
900 width: 96%;
901 border-collapse: collapse;
902}
903
904table.builder_tab td {
905 width: 33%;
906 padding: 2px;
907}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530908
909/*
910 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530911 */
912/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530913
914div.dialog_wrapper {
915 position: absolute;
916 width: 440px;
917 display: none;
918 z-index: 90;
919 background-color: #FFF;
Rushabh Mehta49086492012-04-11 18:02:23 +0530920 box-shadow:1px 1px 8px #444;
921 -moz-box-shadow: 1px 1px 8px #444;
922 -webkit-box-shadow: 1px 1px 8px #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530923
924 border-radius: 5px;
925 -moz-border-radius: 5px;
Rushabh Mehta49086492012-04-11 18:02:23 +0530926 -webkit-border-radius: 5px;
927
928 overflow: hidden;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530929}
930
931div.dialog_head {
932 height: 22px;
933 padding: 4px;
934 background-color: #222;
935 color: #FFF;
936}
937
938div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530939 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530940 border-radius: 5px;
941 -moz-border-radius: 5px;
942 -webkit-border-radius: 5px;
943}
944
945div.dialog_back {
946 position: fixed;
947 display: none;
948 top: 0px;
949 left: 0px;
950 bottom: 0px;
951 right: 0px;
Rushabh Mehta49086492012-04-11 18:02:23 +0530952 background-color: #aaa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530953 opacity: 0.6;
954 z-index: 50;
955 text-align: center;
956}
957
958div.dialog_message {
959 display: none;
960 position: absolute;
961 width: 250px;
962 font-size: 12px;
963 z-index: 91;
964 background-color:#FFF;
965 padding: 12px;
966 border: 1px solid #444;
967}
968
969div.dialog_row {
970 padding: 8px 8px 0px 8px;
971}
972
973div.dialog_row table {
974 width: 100%;
975}
976
977div.dialog_row table td {
978}
979
980div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
981 width: 80%;
982 font-size: 14px;
983}
984
985div.dialog_row table td textarea {
986 width: 80%;
987 height: 200px;
988 font-size: 12px;
989}
990
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530991
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530992/*
993 * lib/css/legacy/tabs.css
994 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530995
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530996/******* TABS ********/
997
998div.box_label_wrapper {
999 border-bottom: 6px solid #777;
1000}
1001
1002div.box_label_body {
1003 height: 22px;
1004}
1005
1006ul.box_tabs {
1007 margin: 0px;
1008 padding: 0px;
1009 list-style: none;
1010}
1011
1012ul.box_tabs li {
1013 height: 22px;
1014 float:left;
1015 font-size: 12px;
1016 text-decoration: underline;
1017
1018 background-color: #DDD;
1019
1020 margin:0;
1021 margin-left: 4px;
1022 padding:0 0 0 9px;
1023 cursor: pointer;
1024}
1025
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301026ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301027 display:block;
1028 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301029 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301030}
1031
1032ul.box_tabs li.box_tab_mouseover {
1033 background-color: #BBB;
1034}
1035
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301036ul.box_tabs li.box_tab_selected {
1037 background-color: #777;
1038
1039 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1040 background: -moz-linear-gradient(top, #999, #777);
1041
1042 color: #FFF;
1043 font-weight:bold;
1044
1045}
1046ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301047 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301048}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301049
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301050/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301051 * lib/css/legacy/sidebar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301052 */
1053div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301054}
1055
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301056div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301057 font-size: 14px;
1058 font-weight: bold;
1059 color: #555;
1060 margin-bottom: 12px;
1061}
1062
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301063div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301064 margin-bottom: 11px;
1065 overflow: hidden;
1066}
1067
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301068div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301069 padding: 5px 11px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301070 border-bottom: 1px solid #aaa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301071}
1072
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301073div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301074 margin: 7px 11px 11px 11px;
1075}
1076
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301077div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301078 margin-bottom: 7px;
1079}
1080
Rushabh Mehtad0251332012-02-21 17:26:50 +05301081div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301082 color: #666;
1083}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301084
1085/*
1086 * lib/css/Aristo/aristo.selected.css
1087 */
1088/*
1089 * jQuery UI CSS Framework 1.8.7
1090 *
1091 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1092 * Dual licensed under the MIT or GPL Version 2 licenses.
1093 * http://jquery.org/license
1094 *
1095 * http://docs.jquery.com/UI/Theming/API
1096 */
1097
1098/* Layout helpers
1099----------------------------------*/
1100.ui-helper-hidden { display: none; }
1101.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
1102.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
1103.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
1104.ui-helper-clearfix { display: inline-block; }
1105/* required comment for clearfix to work in Opera \*/
1106* html .ui-helper-clearfix { height:1%; }
1107.ui-helper-clearfix { display:block; }
1108/* end clearfix */
1109.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
1110
1111
1112/* Interaction Cues
1113----------------------------------*/
1114.ui-state-disabled { cursor: default !important; }
1115
1116
1117/* Icons
1118----------------------------------*/
1119
1120/* states and images */
1121.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
1122
1123
1124/* Misc visuals
1125----------------------------------*/
1126
1127/* Overlays */
1128.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1129
1130
1131/*
1132 * jQuery UI CSS Framework 1.8.7
1133 *
1134 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1135 * Dual licensed under the MIT or GPL Version 2 licenses.
1136 * http://jquery.org/license
1137 *
1138 * http://docs.jquery.com/UI/Theming/API
1139 *
1140 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
1141 */
1142
1143
1144/* Component containers
1145----------------------------------*/
1146.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
1147.ui-widget .ui-widget { font-size: 1em; }
1148.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
1149.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
1150.ui-widget-content a { color: #4F4F4F; }
1151.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
1152.ui-widget-header {
1153 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1154 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1155 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1156 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1157 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1158 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1159 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1160}
1161.ui-widget-header a { color: #4F4F4F; }
1162
1163/* Interaction states
1164----------------------------------*/
1165.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
1166.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1167 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1168 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1169 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1170 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1171 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1172 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1173 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1174 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1175 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1176 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1177}
1178.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
1179.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; }
1180.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
1181.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
1182 outline: none;
1183 color: #1c4257; border: 1px solid #7096ab;
1184 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
1185 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
1186 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
1187 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
1188 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
1189 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
1190 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
1191 -webkit-box-shadow: none;
1192 -moz-box-shadow: none;
1193 box-shadow: none;
1194}
1195.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
1196.ui-widget :active { outline: none; }
1197
1198/* Interaction Cues
1199----------------------------------*/
1200.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; }
1201.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
1202.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; }
1203.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
1204.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
1205.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
1206.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
1207.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
1208
1209/* Icons
1210----------------------------------*/
1211
1212/* states and images */
1213.ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1214.ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1215.ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1216.ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1217.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1218.ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1219.ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1220.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; }
1221.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
1222
1223/* positioning */
1224.ui-icon-carat-1-n { background-position: 0 0; }
1225.ui-icon-carat-1-ne { background-position: -16px 0; }
1226.ui-icon-carat-1-e { background-position: -32px 0; }
1227.ui-icon-carat-1-se { background-position: -48px 0; }
1228.ui-icon-carat-1-s { background-position: -64px 0; }
1229.ui-icon-carat-1-sw { background-position: -80px 0; }
1230.ui-icon-carat-1-w { background-position: -96px 0; }
1231.ui-icon-carat-1-nw { background-position: -112px 0; }
1232.ui-icon-carat-2-n-s { background-position: -128px 0; }
1233.ui-icon-carat-2-e-w { background-position: -144px 0; }
1234.ui-icon-triangle-1-n { background-position: 0 -16px; }
1235.ui-icon-triangle-1-ne { background-position: -16px -16px; }
1236.ui-icon-triangle-1-e { background-position: -32px -16px; }
1237.ui-icon-triangle-1-se { background-position: -48px -16px; }
1238.ui-icon-triangle-1-s { background-position: -64px -16px; }
1239.ui-icon-triangle-1-sw { background-position: -80px -16px; }
1240.ui-icon-triangle-1-w { background-position: -96px -16px; }
1241.ui-icon-triangle-1-nw { background-position: -112px -16px; }
1242.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
1243.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
1244.ui-icon-arrow-1-n { background-position: 0 -32px; }
1245.ui-icon-arrow-1-ne { background-position: -16px -32px; }
1246.ui-icon-arrow-1-e { background-position: -32px -32px; }
1247.ui-icon-arrow-1-se { background-position: -48px -32px; }
1248.ui-icon-arrow-1-s { background-position: -64px -32px; }
1249.ui-icon-arrow-1-sw { background-position: -80px -32px; }
1250.ui-icon-arrow-1-w { background-position: -96px -32px; }
1251.ui-icon-arrow-1-nw { background-position: -112px -32px; }
1252.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
1253.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
1254.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
1255.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
1256.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
1257.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
1258.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
1259.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
1260.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
1261.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
1262.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
1263.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
1264.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
1265.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
1266.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
1267.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
1268.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
1269.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
1270.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
1271.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
1272.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
1273.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
1274.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
1275.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
1276.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
1277.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
1278.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
1279.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
1280.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
1281.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
1282.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
1283.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
1284.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
1285.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
1286.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
1287.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
1288.ui-icon-arrow-4 { background-position: 0 -80px; }
1289.ui-icon-arrow-4-diag { background-position: -16px -80px; }
1290.ui-icon-extlink { background-position: -32px -80px; }
1291.ui-icon-newwin { background-position: -48px -80px; }
1292.ui-icon-refresh { background-position: -64px -80px; }
1293.ui-icon-shuffle { background-position: -80px -80px; }
1294.ui-icon-transfer-e-w { background-position: -96px -80px; }
1295.ui-icon-transferthick-e-w { background-position: -112px -80px; }
1296.ui-icon-folder-collapsed { background-position: 0 -96px; }
1297.ui-icon-folder-open { background-position: -16px -96px; }
1298.ui-icon-document { background-position: -32px -96px; }
1299.ui-icon-document-b { background-position: -48px -96px; }
1300.ui-icon-note { background-position: -64px -96px; }
1301.ui-icon-mail-closed { background-position: -80px -96px; }
1302.ui-icon-mail-open { background-position: -96px -96px; }
1303.ui-icon-suitcase { background-position: -112px -96px; }
1304.ui-icon-comment { background-position: -128px -96px; }
1305.ui-icon-person { background-position: -144px -96px; }
1306.ui-icon-print { background-position: -160px -96px; }
1307.ui-icon-trash { background-position: -176px -96px; }
1308.ui-icon-locked { background-position: -192px -96px; }
1309.ui-icon-unlocked { background-position: -208px -96px; }
1310.ui-icon-bookmark { background-position: -224px -96px; }
1311.ui-icon-tag { background-position: -240px -96px; }
1312.ui-icon-home { background-position: 0 -112px; }
1313.ui-icon-flag { background-position: -16px -112px; }
1314.ui-icon-calendar { background-position: -32px -112px; }
1315.ui-icon-cart { background-position: -48px -112px; }
1316.ui-icon-pencil { background-position: -64px -112px; }
1317.ui-icon-clock { background-position: -80px -112px; }
1318.ui-icon-disk { background-position: -96px -112px; }
1319.ui-icon-calculator { background-position: -112px -112px; }
1320.ui-icon-zoomin { background-position: -128px -112px; }
1321.ui-icon-zoomout { background-position: -144px -112px; }
1322.ui-icon-search { background-position: -160px -112px; }
1323.ui-icon-wrench { background-position: -176px -112px; }
1324.ui-icon-gear { background-position: -192px -112px; }
1325.ui-icon-heart { background-position: -208px -112px; }
1326.ui-icon-star { background-position: -224px -112px; }
1327.ui-icon-link { background-position: -240px -112px; }
1328.ui-icon-cancel { background-position: 0 -128px; }
1329.ui-icon-plus { background-position: -16px -128px; }
1330.ui-icon-plusthick { background-position: -32px -128px; }
1331.ui-icon-minus { background-position: -48px -128px; }
1332.ui-icon-minusthick { background-position: -64px -128px; }
1333.ui-icon-close { background-position: -80px -128px; }
1334.ui-icon-closethick { background-position: -96px -128px; }
1335.ui-icon-key { background-position: -112px -128px; }
1336.ui-icon-lightbulb { background-position: -128px -128px; }
1337.ui-icon-scissors { background-position: -144px -128px; }
1338.ui-icon-clipboard { background-position: -160px -128px; }
1339.ui-icon-copy { background-position: -176px -128px; }
1340.ui-icon-contact { background-position: -192px -128px; }
1341.ui-icon-image { background-position: -208px -128px; }
1342.ui-icon-video { background-position: -224px -128px; }
1343.ui-icon-script { background-position: -240px -128px; }
1344.ui-icon-alert { background-position: 0 -144px; }
1345.ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
1346.ui-icon-notice { background-position: -32px -144px; }
1347.ui-icon-help { background-position: -48px -144px; }
1348.ui-icon-check { background-position: -64px -144px; }
1349.ui-icon-bullet { background-position: -80px -144px; }
1350.ui-icon-radio-off { background-position: -96px -144px; }
1351.ui-icon-radio-on { background-position: -112px -144px; }
1352.ui-icon-pin-w { background-position: -128px -144px; }
1353.ui-icon-pin-s { background-position: -144px -144px; }
1354.ui-icon-play { background-position: 0 -160px; }
1355.ui-icon-pause { background-position: -16px -160px; }
1356.ui-icon-seek-next { background-position: -32px -160px; }
1357.ui-icon-seek-prev { background-position: -48px -160px; }
1358.ui-icon-seek-end { background-position: -64px -160px; }
1359.ui-icon-seek-start { background-position: -80px -160px; }
1360/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1361.ui-icon-seek-first { background-position: -80px -160px; }
1362.ui-icon-stop { background-position: -96px -160px; }
1363.ui-icon-eject { background-position: -112px -160px; }
1364.ui-icon-volume-off { background-position: -128px -160px; }
1365.ui-icon-volume-on { background-position: -144px -160px; }
1366.ui-icon-power { background-position: 0 -176px; }
1367.ui-icon-signal-diag { background-position: -16px -176px; }
1368.ui-icon-signal { background-position: -32px -176px; }
1369.ui-icon-battery-0 { background-position: -48px -176px; }
1370.ui-icon-battery-1 { background-position: -64px -176px; }
1371.ui-icon-battery-2 { background-position: -80px -176px; }
1372.ui-icon-battery-3 { background-position: -96px -176px; }
1373.ui-icon-circle-plus { background-position: 0 -192px; }
1374.ui-icon-circle-minus { background-position: -16px -192px; }
1375.ui-icon-circle-close { background-position: -32px -192px; }
1376.ui-icon-circle-triangle-e { background-position: -48px -192px; }
1377.ui-icon-circle-triangle-s { background-position: -64px -192px; }
1378.ui-icon-circle-triangle-w { background-position: -80px -192px; }
1379.ui-icon-circle-triangle-n { background-position: -96px -192px; }
1380.ui-icon-circle-arrow-e { background-position: -112px -192px; }
1381.ui-icon-circle-arrow-s { background-position: -128px -192px; }
1382.ui-icon-circle-arrow-w { background-position: -144px -192px; }
1383.ui-icon-circle-arrow-n { background-position: -160px -192px; }
1384.ui-icon-circle-zoomin { background-position: -176px -192px; }
1385.ui-icon-circle-zoomout { background-position: -192px -192px; }
1386.ui-icon-circle-check { background-position: -208px -192px; }
1387.ui-icon-circlesmall-plus { background-position: 0 -208px; }
1388.ui-icon-circlesmall-minus { background-position: -16px -208px; }
1389.ui-icon-circlesmall-close { background-position: -32px -208px; }
1390.ui-icon-squaresmall-plus { background-position: -48px -208px; }
1391.ui-icon-squaresmall-minus { background-position: -64px -208px; }
1392.ui-icon-squaresmall-close { background-position: -80px -208px; }
1393.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
1394.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
1395.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
1396.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
1397.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
1398.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
1399
1400
1401/* Misc visuals
1402----------------------------------*/
1403
1404/* Corner radius */
1405.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
1406.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
1407.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
1408.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1409.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; }
1410.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; }
1411.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; }
1412.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; }
1413.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
1414
1415/* Overlays */
1416.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
1417.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; }
1418
1419/*
1420 * jQuery UI Autocomplete 1.8.7
1421 *
1422 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1423 * Dual licensed under the MIT or GPL Version 2 licenses.
1424 * http://jquery.org/license
1425 *
1426 * http://docs.jquery.com/UI/Autocomplete#theming
1427 */
1428.ui-autocomplete {
1429 position: absolute; cursor: default; z-index: 3;
1430 -moz-border-radius: 0;
1431 -webkit-border-radius: 0;
1432 border-radius: 0;
1433 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1434 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1435 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1436}
1437
1438/* workarounds */
1439* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
1440
1441/*
1442 * jQuery UI Menu 1.8.7
1443 *
1444 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1445 * Dual licensed under the MIT or GPL Version 2 licenses.
1446 * http://jquery.org/license
1447 *
1448 * http://docs.jquery.com/UI/Menu#theming
1449 */
1450.ui-menu {
1451 list-style:none;
1452 padding: 2px;
1453 margin: 0;
1454 display:block;
1455 float: left;
1456}
1457.ui-menu .ui-menu {
1458 margin-top: -3px;
1459}
1460.ui-menu .ui-menu-item {
1461 margin:0;
1462 padding: 0;
1463 zoom: 1;
1464 float: left;
1465 clear: left;
1466 width: 100%;
1467}
1468.ui-menu .ui-menu-item a {
1469 text-decoration:none;
1470 display:block;
1471 padding:.2em .4em;
1472 line-height:1.5;
1473 zoom:1;
1474}
1475.ui-menu .ui-menu-item a.ui-state-hover,
1476.ui-menu .ui-menu-item a.ui-state-active {
1477 font-weight: normal;
1478 margin: -1px;
1479 background: #5f83b9;
1480 color: #FFFFFF;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301481 border-color: #466086;
1482 -moz-border-radius: 0;
1483 -webkit-border-radius: 0;
1484 border-radius: 0;
1485}
1486
1487/*
1488 * jQuery UI Datepicker 1.8.7
1489 *
1490 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1491 * Dual licensed under the MIT or GPL Version 2 licenses.
1492 * http://jquery.org/license
1493 *
1494 * http://docs.jquery.com/UI/Datepicker#theming
1495 */
1496.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
1497.ui-datepicker {
1498 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1499 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1500 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1501}
1502.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; }
1503.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
1504.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
1505.ui-datepicker .ui-datepicker-prev { left:2px; }
1506.ui-datepicker .ui-datepicker-next { right:2px; }
1507.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
1508.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
1509.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
1510.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
1511.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; }
1512.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); }
1513.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
1514.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
1515.ui-datepicker select.ui-datepicker-month,
1516.ui-datepicker select.ui-datepicker-year { width: 49%;}
1517.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
1518.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
1519.ui-datepicker td { border: 0; padding: 1px; }
1520.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
1521.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; }
1522.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
1523.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
1524.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
1525.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; }
1526.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
1527.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
1528
1529/* with multiple calendars */
1530.ui-datepicker.ui-datepicker-multi { width:auto; }
1531.ui-datepicker-multi .ui-datepicker-group { float:left; }
1532.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
1533.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
1534.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
1535.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
1536.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
1537.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
1538.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
1539.ui-datepicker-row-break { clear:both; width:100%; }
1540
1541/* RTL support */
1542.ui-datepicker-rtl { direction: rtl; }
1543.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
1544.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
1545.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
1546.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
1547.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
1548.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
1549.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
1550.ui-datepicker-rtl .ui-datepicker-group { float:right; }
1551.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1552.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1553
1554/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1555.ui-datepicker-cover {
1556 display: none; /*sorry for IE5*/
1557 display/**/: block; /*sorry for IE5*/
1558 position: absolute; /*must have*/
1559 z-index: -1; /*must have*/
1560 filter: mask(); /*must have*/
1561 top: -4px; /*must have*/
1562 left: -4px; /*must have*/
1563 width: 200px; /*must have*/
1564 height: 200px; /*must have*/
1565}
1566
1567
1568
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301569/*
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301570 * lib/css/ui/list.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301571 */
1572.hide {
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301573 display: none;
1574}
1575
1576.list-filters {
1577 margin: 7px 0px;
1578}
1579
1580.wnlist .img-load {
1581 display: none;
Rushabh Mehta842f7822012-03-22 14:24:49 +05301582 float: left;
1583 margin-bottom: 8px;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301584}
1585
Rushabh Mehta2438de42012-03-15 16:43:46 +05301586/* list-row */
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301587div.list-row {
1588 border-bottom: 1px solid #eee;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301589 padding: 5px 0px;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301590}
1591div.list-row:hover {
1592 background-color: #eef
1593}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301594
Rushabh Mehta2438de42012-03-15 16:43:46 +05301595div.list-row .label {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301596 margin-right: 4px;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301597}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301598
1599div.list-row table {
1600 table-layout: fixed;
1601 border-collapse: collapse;
1602 width: 100%;
1603}
1604
1605div.list-row table td {
1606 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05301607 /*padding-right: 3px;*/
1608 padding: 0px 3px;
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301609 vertical-align: middle;
1610 height: 24px;
1611 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05301612 word-wrap: break-word;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301613}
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301614
Rushabh Mehta9f89e352012-03-09 17:51:39 +05301615div.paging-button {
1616 text-align: center;
1617 padding: 11px 0px;
1618}
1619
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301620div.show_filters {
1621 display: none;
1622}
1623
1624div.filter_list {
1625 padding: 13px;
1626}
1627
1628div.show_filters.well {
1629 margin-top: 11px;
1630 margin-bottom: 11px;
1631}
1632
1633div.filter_list .run_btn {
1634 text-align: right;
1635}
1636
1637div.filter_list .add_filter {
1638 margin: 3px 0px;
1639}
1640
1641div.list_filter {
1642 margin: 7px 0px;
1643}
1644
1645div.list_filter input, div.list_filter select {
1646 width: 130px;
1647 margin-right: 7px;
1648}
1649
Rushabh Mehta2438de42012-03-15 16:43:46 +05301650/* bar */
1651
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301652span.bar-outer {
1653 display: inline-block;
1654 margin: 0px 7px;
1655 margin-top: 3px;
1656 background-color: #fff;
1657 border: 1px solid #aaa;
1658 height: 10px;
1659}
1660
1661span.bar-inner {
1662 display: inline-block;
1663 background-color: #bdf;
1664 height: 100%;
1665 margin-bottom: 2px;
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301666 float: left;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301667}
1668span.bar-complete {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301669 background-color: #009900;
1670}
1671span.bar-empty {
1672 background-color: #990000;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301673}
1674
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301675
Rushabh Mehta2438de42012-03-15 16:43:46 +05301676/* stats */
1677
1678div.stat-wrapper {
1679 margin-bottom: 19px;
1680}
1681
1682div.stat-grid {
1683 border: 2px solid #bbb;
1684 background-color: white;
1685 border-radius: 5px;
1686 -moz-border-radius: 5px;
1687 -webkit-border-radius: 5px;
1688 overflow: hidden;
1689}
1690
1691div.stat-label {
1692 position: relative;
1693 padding: 3px;
1694 text-align: center;
1695}
1696div.stat-label, div.stat-label a {
1697 z-index: 5;
1698}
1699
1700div.stat-item {
1701 position: relative;
1702 border-bottom: 1px solid #ddd;
1703}
1704div.stat-item:last-child {
1705 border-bottom: 0px solid #ddd;
1706}
1707
1708div.stat-bar {
1709 position: absolute;
1710 left: 0px;
1711 background-color: #def;
1712 height: 100%;
1713 z-index: 0;
1714}
1715
1716
1717
1718
1719
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301720/*
Rushabh Mehtac6843482012-04-11 15:28:00 +05301721 * lib/css/ui/views.css
1722 */
Rushabh Mehtac6843482012-04-11 15:28:00 +05301723.breadcrumbs {
1724 color: #000000;
1725}
1726
1727.breadcrumbs a {
1728 color: #000000;
1729}
1730
Rushabh Mehta0f0b1f52012-04-11 17:26:03 +05301731div.appframe-titlebar {
Rushabh Mehtac6843482012-04-11 15:28:00 +05301732 padding: 6px;
1733 background: #eeeeee; /* Old browsers */
1734 background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
1735 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
1736 background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
1737 background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
1738 background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */
1739 background: linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* W3C */
1740 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
1741 border-bottom: 1px solid #ccc;
Rushabh Mehta49086492012-04-11 18:02:23 +05301742 min-height: 1.2em;
Rushabh Mehtac6843482012-04-11 15:28:00 +05301743}
Rushabh Mehta0f0b1f52012-04-11 17:26:03 +05301744
1745div.appframe-toolbar {
Rushabh Mehtac6843482012-04-11 15:28:00 +05301746 padding: 4px;
1747 background: #eeeeee;
1748 border-top: 1px solid #f8f8f8;
1749 border-bottom: 1px solid #ccc;
1750}
1751
1752/*
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301753 * lib/css/ui/fonts.css
1754 */
1755@font-face {
1756 font-family: 'Pontano Sans';
1757 font-style: normal;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301758 font-weight: 800;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301759 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1760}
1761
1762@font-face {
1763 font-family: 'Droid Sans';
1764 font-style: normal;
1765 font-weight: normal;
1766 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1767}
1768
Rushabh Mehta983a1712012-03-21 13:35:34 +05301769@font-face {
1770 font-family: 'PT Sans';
1771 font-style: normal;
1772 font-weight: normal;
1773 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1774}
1775
1776@font-face {
1777 font-family: 'Open Sans';
1778 font-style: normal;
1779 font-weight: 400;
1780 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1781}
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301782
Rushabh Mehta983a1712012-03-21 13:35:34 +05301783@font-face {
1784 font-family: 'Lato';
1785 font-style: normal;
1786 font-weight: 400;
1787 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1788}
1789
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301790@font-face {
1791 font-family: 'Cabin';
1792 font-style: normal;
1793 font-weight: 400;
1794 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
1795}
Rushabh Mehta983a1712012-03-21 13:35:34 +05301796
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +05301797@font-face {
1798 font-family: 'Pacifico';
1799 font-style: normal;
1800 font-weight: normal;
1801 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('../lib/css/fonts/pacifico.woff') format('woff');
1802}
1803
1804
Rushabh Mehta983a1712012-03-21 13:35:34 +05301805
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301806/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301807 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301808 */
1809/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301810
1811h1,
1812h2,
1813h3,
1814h4,
1815h5,
1816h6 {
1817 margin: 0;
1818 font-weight: bold;
1819 color: #333333;
1820 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301821}
1822h1 small,
1823h2 small,
1824h3 small,
1825h4 small,
1826h5 small,
1827h6 small {
1828 font-weight: normal;
1829 color: #999999;
1830}
1831h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301832 font-size: 280%;
1833 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301834}
1835h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301836 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301837}
1838h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301839 font-size: 200%;
1840 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301841}
1842h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301843 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301844}
1845h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301846 font-size: 210%;
1847 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301848}
1849h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301850 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301851}
1852h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301853 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301854}
1855h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301856 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301857}
1858h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301859 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301860}
1861h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301862 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301863}
1864h6 {
1865 font-size: 11px;
1866 color: #999999;
1867 text-transform: uppercase;
1868}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301869
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301870/*
1871 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301872 */
1873.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301874 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301875 float: right;
1876 font-size: 20px;
1877 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301878 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301879 color: #000000;
1880 text-shadow: 0 1px 0 #ffffff;
1881 opacity: 0.2;
1882 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301883}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301884.close:hover {
1885 color: #000000;
1886 text-decoration: none;
1887 opacity: 0.4;
1888 filter: alpha(opacity=40);
1889 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301890}
1891.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301892 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301893 padding: 4px 10px 4px;
1894 font-size: 13px;
1895 line-height: 18px;
1896 color: #333333;
1897 text-align: center;
1898 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1899 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301900 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1901 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1902 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1903 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1904 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1905 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301906 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301907 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301908 border: 1px solid #ccc;
1909 border-bottom-color: #bbb;
1910 -webkit-border-radius: 4px;
1911 -moz-border-radius: 4px;
1912 border-radius: 4px;
1913 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1914 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1915 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 +05301916 cursor: pointer;
1917 *margin-left: .3em;
1918}
1919.btn:first-child {
1920 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301921}
1922.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301923 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301924 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301925 background-color: #e6e6e6;
1926 background-position: 0 -15px;
1927 -webkit-transition: background-position 0.1s linear;
1928 -moz-transition: background-position 0.1s linear;
1929 -ms-transition: background-position 0.1s linear;
1930 -o-transition: background-position 0.1s linear;
1931 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301932}
1933.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301934 outline: thin dotted;
1935 outline: 5px auto -webkit-focus-ring-color;
1936 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301937}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301938.btn.active, .btn:active {
1939 background-image: none;
1940 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1941 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1942 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1943 background-color: #e6e6e6;
1944 background-color: #d9d9d9 \9;
1945 color: rgba(0, 0, 0, 0.5);
1946 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301947}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301948.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301949 cursor: default;
1950 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301951 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301952 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301953 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301954 -webkit-box-shadow: none;
1955 -moz-box-shadow: none;
1956 box-shadow: none;
1957}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301958.btn-large {
1959 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301960 font-size: 15px;
1961 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301962 -webkit-border-radius: 5px;
1963 -moz-border-radius: 5px;
1964 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301965}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301966.btn-large .icon {
1967 margin-top: 1px;
1968}
1969.btn-small {
1970 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301971 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301972 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301973}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301974.btn-small .icon {
1975 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301976}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301977.btn-primary,
1978.btn-primary:hover,
1979.btn-warning,
1980.btn-warning:hover,
1981.btn-danger,
1982.btn-danger:hover,
1983.btn-success,
1984.btn-success:hover,
1985.btn-info,
1986.btn-info:hover {
1987 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1988 color: #ffffff;
1989}
1990.btn-primary.active,
1991.btn-warning.active,
1992.btn-danger.active,
1993.btn-success.active,
1994.btn-info.active {
1995 color: rgba(255, 255, 255, 0.75);
1996}
1997.btn-primary {
1998 background-color: #006dcc;
1999 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
2000 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
2001 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
2002 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
2003 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
2004 background-image: linear-gradient(top, #0088cc, #0044cc);
2005 background-repeat: repeat-x;
2006 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
2007 border-color: #0044cc #0044cc #002a80;
2008 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2009 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2010}
2011.btn-primary:hover,
2012.btn-primary:active,
2013.btn-primary.active,
2014.btn-primary.disabled,
2015.btn-primary[disabled] {
2016 background-color: #0044cc;
2017}
2018.btn-primary:active, .btn-primary.active {
2019 background-color: #003399 \9;
2020}
2021.btn-warning {
2022 background-color: #faa732;
2023 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
2024 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
2025 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
2026 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
2027 background-image: -o-linear-gradient(top, #fbb450, #f89406);
2028 background-image: linear-gradient(top, #fbb450, #f89406);
2029 background-repeat: repeat-x;
2030 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
2031 border-color: #f89406 #f89406 #ad6704;
2032 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2033 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2034}
2035.btn-warning:hover,
2036.btn-warning:active,
2037.btn-warning.active,
2038.btn-warning.disabled,
2039.btn-warning[disabled] {
2040 background-color: #f89406;
2041}
2042.btn-warning:active, .btn-warning.active {
2043 background-color: #c67605 \9;
2044}
2045.btn-danger {
2046 background-color: #da4f49;
2047 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
2048 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
2049 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
2050 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
2051 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
2052 background-image: linear-gradient(top, #ee5f5b, #bd362f);
2053 background-repeat: repeat-x;
2054 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
2055 border-color: #bd362f #bd362f #802420;
2056 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2057 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2058}
2059.btn-danger:hover,
2060.btn-danger:active,
2061.btn-danger.active,
2062.btn-danger.disabled,
2063.btn-danger[disabled] {
2064 background-color: #bd362f;
2065}
2066.btn-danger:active, .btn-danger.active {
2067 background-color: #942a25 \9;
2068}
2069.btn-success {
2070 background-color: #5bb75b;
2071 background-image: -moz-linear-gradient(top, #62c462, #51a351);
2072 background-image: -ms-linear-gradient(top, #62c462, #51a351);
2073 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
2074 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
2075 background-image: -o-linear-gradient(top, #62c462, #51a351);
2076 background-image: linear-gradient(top, #62c462, #51a351);
2077 background-repeat: repeat-x;
2078 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
2079 border-color: #51a351 #51a351 #387038;
2080 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2081 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2082}
2083.btn-success:hover,
2084.btn-success:active,
2085.btn-success.active,
2086.btn-success.disabled,
2087.btn-success[disabled] {
2088 background-color: #51a351;
2089}
2090.btn-success:active, .btn-success.active {
2091 background-color: #408140 \9;
2092}
2093.btn-info {
2094 background-color: #49afcd;
2095 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
2096 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
2097 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
2098 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
2099 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
2100 background-image: linear-gradient(top, #5bc0de, #2f96b4);
2101 background-repeat: repeat-x;
2102 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
2103 border-color: #2f96b4 #2f96b4 #1f6377;
2104 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2105 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2106}
2107.btn-info:hover,
2108.btn-info:active,
2109.btn-info.active,
2110.btn-info.disabled,
2111.btn-info[disabled] {
2112 background-color: #2f96b4;
2113}
2114.btn-info:active, .btn-info.active {
2115 background-color: #24748c \9;
2116}
2117button.btn, input[type="submit"].btn {
2118 *padding-top: 2px;
2119 *padding-bottom: 2px;
2120}
2121button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302122 padding: 0;
2123 border: 0;
2124}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302125button.btn.large, input[type="submit"].btn.large {
2126 *padding-top: 7px;
2127 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302128}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302129button.btn.small, input[type="submit"].btn.small {
2130 *padding-top: 3px;
2131 *padding-bottom: 3px;
2132}
2133.btn-group {
2134 position: relative;
2135 *zoom: 1;
2136 *margin-left: .3em;
2137}
2138.btn-group:before, .btn-group:after {
2139 display: table;
2140 content: "";
2141}
2142.btn-group:after {
2143 clear: both;
2144}
2145.btn-group:first-child {
2146 *margin-left: 0;
2147}
2148.btn-group + .btn-group {
2149 margin-left: 5px;
2150}
2151.btn-toolbar {
2152 margin-top: 9px;
2153 margin-bottom: 9px;
2154}
2155.btn-toolbar .btn-group {
2156 display: inline-block;
2157 *display: inline;
2158 /* IE7 inline-block hack */
2159
2160 *zoom: 1;
2161}
2162.btn-group .btn {
2163 position: relative;
2164 float: left;
2165 margin-left: -1px;
2166 -webkit-border-radius: 0;
2167 -moz-border-radius: 0;
2168 border-radius: 0;
2169}
2170.btn-group .btn:first-child {
2171 margin-left: 0;
2172 -webkit-border-top-left-radius: 4px;
2173 -moz-border-radius-topleft: 4px;
2174 border-top-left-radius: 4px;
2175 -webkit-border-bottom-left-radius: 4px;
2176 -moz-border-radius-bottomleft: 4px;
2177 border-bottom-left-radius: 4px;
2178}
2179.btn-group .btn:last-child, .btn-group .dropdown-toggle {
2180 -webkit-border-top-right-radius: 4px;
2181 -moz-border-radius-topright: 4px;
2182 border-top-right-radius: 4px;
2183 -webkit-border-bottom-right-radius: 4px;
2184 -moz-border-radius-bottomright: 4px;
2185 border-bottom-right-radius: 4px;
2186}
2187.btn-group .btn.large:first-child {
2188 margin-left: 0;
2189 -webkit-border-top-left-radius: 6px;
2190 -moz-border-radius-topleft: 6px;
2191 border-top-left-radius: 6px;
2192 -webkit-border-bottom-left-radius: 6px;
2193 -moz-border-radius-bottomleft: 6px;
2194 border-bottom-left-radius: 6px;
2195}
2196.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
2197 -webkit-border-top-right-radius: 6px;
2198 -moz-border-radius-topright: 6px;
2199 border-top-right-radius: 6px;
2200 -webkit-border-bottom-right-radius: 6px;
2201 -moz-border-radius-bottomright: 6px;
2202 border-bottom-right-radius: 6px;
2203}
2204.btn-group .btn:hover,
2205.btn-group .btn:focus,
2206.btn-group .btn:active,
2207.btn-group .btn.active {
2208 z-index: 2;
2209}
2210.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2211 outline: 0;
2212}
2213.btn-group .dropdown-toggle {
2214 padding-left: 8px;
2215 padding-right: 8px;
2216 -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);
2217 -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);
2218 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);
2219 *padding-top: 5px;
2220 *padding-bottom: 5px;
2221}
2222.btn-group.open {
2223 *z-index: 1000;
2224}
2225.btn-group.open .dropdown-menu {
2226 display: block;
2227 margin-top: 1px;
2228 -webkit-border-radius: 5px;
2229 -moz-border-radius: 5px;
2230 border-radius: 5px;
2231}
2232.btn-group.open .dropdown-toggle {
2233 background-image: none;
2234 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2235 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2236 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2237}
2238.btn .caret {
2239 margin-top: 7px;
2240 margin-left: 0;
2241}
2242.btn:hover .caret, .open.btn-group .caret {
2243 opacity: 1;
2244 filter: alpha(opacity=100);
2245}
2246.btn-primary .caret,
2247.btn-danger .caret,
2248.btn-info .caret,
2249.btn-success .caret {
2250 border-top-color: #ffffff;
2251 opacity: 0.75;
2252 filter: alpha(opacity=75);
2253}
2254.btn-small .caret {
2255 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302256}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302257
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302258/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302259 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302260 */
2261.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302262 margin-left: 0;
2263 margin-bottom: 18px;
2264 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302265}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302266.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302267 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302268}
2269.nav > li > a:hover {
2270 text-decoration: none;
2271 background-color: #eeeeee;
2272}
2273.nav-list {
2274 padding-left: 14px;
2275 padding-right: 14px;
2276 margin-bottom: 0;
2277}
2278.nav-list > li > a, .nav-list .nav-header {
2279 display: block;
2280 padding: 3px 15px;
2281 margin-left: -15px;
2282 margin-right: -15px;
2283 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2284}
2285.nav-list .nav-header {
2286 font-size: 11px;
2287 font-weight: bold;
2288 line-height: 18px;
2289 color: #999999;
2290 text-transform: uppercase;
2291}
2292.nav-list > li + .nav-header {
2293 margin-top: 9px;
2294}
2295.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302296 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302297 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2298 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302299}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302300.nav-list [class^="icon-"] {
2301 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302302}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302303.nav-tabs, .nav-pills {
2304 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302305}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302306.nav-tabs:before,
2307.nav-pills:before,
2308.nav-tabs:after,
2309.nav-pills:after {
2310 display: table;
2311 content: "";
2312}
2313.nav-tabs:after, .nav-pills:after {
2314 clear: both;
2315}
2316.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302317 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302318}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302319.nav-tabs > li > a, .nav-pills > li > a {
2320 padding-right: 12px;
2321 padding-left: 12px;
2322 margin-right: 2px;
2323 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302324}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302325.nav-tabs {
2326 border-bottom: 1px solid #ddd;
2327}
2328.nav-tabs > li {
2329 margin-bottom: -1px;
2330}
2331.nav-tabs > li > a {
2332 padding-top: 9px;
2333 padding-bottom: 9px;
2334 border: 1px solid transparent;
2335 -webkit-border-radius: 4px 4px 0 0;
2336 -moz-border-radius: 4px 4px 0 0;
2337 border-radius: 4px 4px 0 0;
2338}
2339.nav-tabs > li > a:hover {
2340 border-color: #eeeeee #eeeeee #dddddd;
2341}
2342.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2343 color: #555555;
2344 background-color: #ffffff;
2345 border: 1px solid #ddd;
2346 border-bottom-color: transparent;
2347 cursor: default;
2348}
2349.nav-pills > li > a {
2350 padding-top: 8px;
2351 padding-bottom: 8px;
2352 margin-top: 2px;
2353 margin-bottom: 2px;
2354 -webkit-border-radius: 5px;
2355 -moz-border-radius: 5px;
2356 border-radius: 5px;
2357}
2358.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302359 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302360 background-color: #0088cc;
2361}
2362.nav-stacked > li {
2363 float: none;
2364}
2365.nav-stacked > li > a {
2366 margin-right: 0;
2367}
2368.nav-tabs.nav-stacked {
2369 border-bottom: 0;
2370}
2371.nav-tabs.nav-stacked > li > a {
2372 border: 1px solid #ddd;
2373 -webkit-border-radius: 0;
2374 -moz-border-radius: 0;
2375 border-radius: 0;
2376}
2377.nav-tabs.nav-stacked > li:first-child > a {
2378 -webkit-border-radius: 4px 4px 0 0;
2379 -moz-border-radius: 4px 4px 0 0;
2380 border-radius: 4px 4px 0 0;
2381}
2382.nav-tabs.nav-stacked > li:last-child > a {
2383 -webkit-border-radius: 0 0 4px 4px;
2384 -moz-border-radius: 0 0 4px 4px;
2385 border-radius: 0 0 4px 4px;
2386}
2387.nav-tabs.nav-stacked > li > a:hover {
2388 border-color: #ddd;
2389 z-index: 2;
2390}
2391.nav-pills.nav-stacked > li > a {
2392 margin-bottom: 3px;
2393}
2394.nav-pills.nav-stacked > li:last-child > a {
2395 margin-bottom: 1px;
2396}
2397.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2398 margin-top: 1px;
2399 border-width: 1px;
2400}
2401.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302402 -webkit-border-radius: 4px;
2403 -moz-border-radius: 4px;
2404 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302405}
2406.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2407 border-top-color: #0088cc;
2408 margin-top: 6px;
2409}
2410.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2411 border-top-color: #005580;
2412}
2413.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2414 border-top-color: #333333;
2415}
2416.nav > .dropdown.active > a:hover {
2417 color: #000000;
2418 cursor: pointer;
2419}
2420.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2421 color: #ffffff;
2422 background-color: #999999;
2423 border-color: #999999;
2424}
2425.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2426 border-top-color: #ffffff;
2427 opacity: 1;
2428 filter: alpha(opacity=100);
2429}
2430
2431.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302432 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302433 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302434}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302435.navbar-inner {
2436 padding-left: 20px;
2437 padding-right: 20px;
2438 background-color: #2c2c2c;
2439 background-image: -moz-linear-gradient(top, #333333, #222222);
2440 background-image: -ms-linear-gradient(top, #333333, #222222);
2441 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2442 background-image: -webkit-linear-gradient(top, #333333, #222222);
2443 background-image: -o-linear-gradient(top, #333333, #222222);
2444 background-image: linear-gradient(top, #333333, #222222);
2445 background-repeat: repeat-x;
2446 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2447 -webkit-border-radius: 4px;
2448 -moz-border-radius: 4px;
2449 border-radius: 4px;
2450 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2451 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2452 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2453}
2454.btn-navbar {
2455 display: none;
2456 float: right;
2457 padding: 7px 10px;
2458 margin-left: 5px;
2459 margin-right: 5px;
2460 background-color: #2c2c2c;
2461 background-image: -moz-linear-gradient(top, #333333, #222222);
2462 background-image: -ms-linear-gradient(top, #333333, #222222);
2463 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2464 background-image: -webkit-linear-gradient(top, #333333, #222222);
2465 background-image: -o-linear-gradient(top, #333333, #222222);
2466 background-image: linear-gradient(top, #333333, #222222);
2467 background-repeat: repeat-x;
2468 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2469 border-color: #222222 #222222 #000000;
2470 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2471 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2472 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2473 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2474 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2475}
2476.btn-navbar:hover,
2477.btn-navbar:active,
2478.btn-navbar.active,
2479.btn-navbar.disabled,
2480.btn-navbar[disabled] {
2481 background-color: #222222;
2482}
2483.btn-navbar:active, .btn-navbar.active {
2484 background-color: #080808 \9;
2485}
2486.btn-navbar .icon-bar {
2487 display: block;
2488 width: 18px;
2489 height: 2px;
2490 background-color: #f5f5f5;
2491 -webkit-border-radius: 1px;
2492 -moz-border-radius: 1px;
2493 border-radius: 1px;
2494 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2495 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2496 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2497}
2498.btn-navbar .icon-bar + .icon-bar {
2499 margin-top: 3px;
2500}
2501.nav-collapse.collapse {
2502 height: auto;
2503}
2504.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302505 text-decoration: none;
2506}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302507.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302508 float: left;
2509 display: block;
2510 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302511 font-size: 20px;
2512 font-weight: 200;
2513 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302514 color: #ffffff;
2515}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302516.navbar .navbar-text {
2517 margin-bottom: 0;
2518 line-height: 40px;
2519 color: #999999;
2520}
2521.navbar .navbar-text a:hover {
2522 color: #ffffff;
2523 background-color: transparent;
2524}
2525.navbar .btn, .navbar .btn-group {
2526 margin-top: 5px;
2527}
2528.navbar .btn-group .btn {
2529 margin-top: 0;
2530}
2531.navbar-form {
2532 margin-bottom: 0;
2533 *zoom: 1;
2534}
2535.navbar-form:before, .navbar-form:after {
2536 display: table;
2537 content: "";
2538}
2539.navbar-form:after {
2540 clear: both;
2541}
2542.navbar-form input, .navbar-form select {
2543 display: inline-block;
2544 margin-top: 5px;
2545 margin-bottom: 0;
2546}
2547.navbar-form .radio, .navbar-form .checkbox {
2548 margin-top: 5px;
2549}
2550.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2551 margin-top: 3px;
2552}
2553.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302554 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302555 float: left;
2556 margin-top: 6px;
2557 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302558}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302559.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302560 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302561 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2562 font-size: 13px;
2563 font-weight: normal;
2564 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302565 color: #ffffff;
2566 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302567 background: #666;
2568 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302569 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302570 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2571 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2572 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 +05302573 -webkit-transition: none;
2574 -moz-transition: none;
2575 -ms-transition: none;
2576 -o-transition: none;
2577 transition: none;
2578}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302579.navbar-search .search-query :-moz-placeholder {
2580 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302581}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302582.navbar-search .search-query::-webkit-input-placeholder {
2583 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302584}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302585.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302586 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302587 background-color: #999999;
2588 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302589}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302590.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302591 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302592 color: #333333;
2593 text-shadow: 0 1px 0 #ffffff;
2594 background-color: #ffffff;
2595 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302596 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2597 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2598 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302599 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302600}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302601.navbar-fixed-top {
2602 position: fixed;
2603 top: 0;
2604 right: 0;
2605 left: 0;
2606 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302607}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302608.navbar-fixed-top .navbar-inner {
2609 padding-left: 0;
2610 padding-right: 0;
2611 -webkit-border-radius: 0;
2612 -moz-border-radius: 0;
2613 border-radius: 0;
2614}
2615.navbar .nav {
2616 position: relative;
2617 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302618 display: block;
2619 float: left;
2620 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302621}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302622.navbar .nav.pull-right {
2623 float: right;
2624}
2625.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302626 display: block;
2627 float: left;
2628}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302629.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302630 float: none;
2631 padding: 10px 10px 11px;
2632 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302633 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302634 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302635 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302636}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302637.navbar .nav > li > a:hover {
2638 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302639 color: #ffffff;
2640 text-decoration: none;
2641}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302642.navbar .nav .active > a, .navbar .nav .active > a:hover {
2643 color: #ffffff;
2644 text-decoration: none;
2645 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302646 background-color: rgba(0, 0, 0, 0.5);
2647}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302648.navbar .divider-vertical {
2649 height: 40px;
2650 width: 1px;
2651 margin: 0 9px;
2652 overflow: hidden;
2653 background-color: #222222;
2654 border-right: 1px solid #333333;
2655}
2656.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302657 margin-left: 10px;
2658 margin-right: 0;
2659}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302660.navbar .dropdown-menu {
2661 margin-top: 1px;
2662 -webkit-border-radius: 4px;
2663 -moz-border-radius: 4px;
2664 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302665}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302666.navbar .dropdown-menu:before {
2667 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302668 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302669 border-left: 7px solid transparent;
2670 border-right: 7px solid transparent;
2671 border-bottom: 7px solid #ccc;
2672 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302673 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302674 top: -7px;
2675 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302676}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302677.navbar .dropdown-menu:after {
2678 content: '';
2679 display: inline-block;
2680 border-left: 6px solid transparent;
2681 border-right: 6px solid transparent;
2682 border-bottom: 6px solid #ffffff;
2683 position: absolute;
2684 top: -6px;
2685 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302686}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302687.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2688 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302689}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302690.navbar .nav .active .caret {
2691 opacity: 1;
2692 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302693}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302694.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2695 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302696}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302697.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302698 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302699}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302700.navbar .nav.pull-right .dropdown-menu {
2701 left: auto;
2702 right: 0;
2703}
2704.navbar .nav.pull-right .dropdown-menu:before {
2705 left: auto;
2706 right: 12px;
2707}
2708.navbar .nav.pull-right .dropdown-menu:after {
2709 left: auto;
2710 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302711}
2712
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302713/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302714.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302715 display: block;
2716 float: right;
2717 width: 20px;
2718 margin-bottom: -5px;
2719 margin-top: 10px;
2720 visibility: hidden;
2721}
2722
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302723.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302724 padding: 0px 20px;
2725}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302726
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302727
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302728/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302729 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302730 */
2731.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302732 position: relative;
2733}
2734.dropdown-toggle {
2735 *margin-bottom: -3px;
2736}
2737.dropdown-toggle:active, .open .dropdown-toggle {
2738 outline: 0;
2739}
2740.caret {
2741 display: inline-block;
2742 width: 0;
2743 height: 0;
2744 text-indent: -99999px;
2745 *text-indent: 0;
2746 vertical-align: top;
2747 border-left: 4px solid transparent;
2748 border-right: 4px solid transparent;
2749 border-top: 4px solid #000000;
2750 opacity: 0.3;
2751 filter: alpha(opacity=30);
2752 content: "\2193";
2753}
2754.dropdown .caret {
2755 margin-top: 8px;
2756 margin-left: 2px;
2757}
2758.dropdown:hover .caret, .open.dropdown .caret {
2759 opacity: 1;
2760 filter: alpha(opacity=100);
2761}
2762.dropdown-menu {
2763 position: absolute;
2764 top: 100%;
2765 left: 0;
2766 z-index: 1000;
2767 float: left;
2768 display: none;
2769 min-width: 160px;
2770 max-width: 220px;
2771 _width: 160px;
2772 padding: 4px 0;
2773 margin: 0;
2774 list-style: none;
2775 background-color: #ffffff;
2776 border-color: #ccc;
2777 border-color: rgba(0, 0, 0, 0.2);
2778 border-style: solid;
2779 border-width: 1px;
2780 -webkit-border-radius: 0 0 5px 5px;
2781 -moz-border-radius: 0 0 5px 5px;
2782 border-radius: 0 0 5px 5px;
2783 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2784 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2785 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2786 -webkit-background-clip: padding-box;
2787 -moz-background-clip: padding;
2788 background-clip: padding-box;
2789 *border-right-width: 2px;
2790 *border-bottom-width: 2px;
2791}
2792.dropdown-menu.bottom-up {
2793 top: auto;
2794 bottom: 100%;
2795 margin-bottom: 2px;
2796}
2797.dropdown-menu .divider {
2798 height: 1px;
2799 margin: 5px 1px;
2800 overflow: hidden;
2801 background-color: #e5e5e5;
2802 border-bottom: 1px solid #ffffff;
2803 *width: 100%;
2804 *margin: -5px 0 5px;
2805}
2806.dropdown-menu a {
2807 display: block;
2808 padding: 3px 15px;
2809 clear: both;
2810 font-weight: normal;
2811 line-height: 18px;
2812 color: #555555;
2813 white-space: nowrap;
2814}
2815.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2816 color: #ffffff;
2817 text-decoration: none;
2818 background-color: #0088cc;
2819}
2820.dropdown.open {
2821 *z-index: 1000;
2822}
2823.dropdown.open .dropdown-toggle {
2824 color: #ffffff;
2825 background: #ccc;
2826 background: rgba(0, 0, 0, 0.3);
2827}
2828.dropdown.open .dropdown-menu {
2829 display: block;
2830}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302831
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302832/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302833 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302834 */
2835.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05302836 position: absolute;
2837 z-index: 1020;
2838 display: block;
2839 visibility: visible;
2840 padding: 5px;
2841 font-size: 11px;
2842 opacity: 0;
2843 filter: alpha(opacity=0);
2844}
2845.tooltip.in {
2846 opacity: 0.8;
2847 filter: alpha(opacity=80);
2848}
2849.tooltip.top {
2850 margin-top: -2px;
2851}
2852.tooltip.right {
2853 margin-left: 2px;
2854}
2855.tooltip.bottom {
2856 margin-top: 2px;
2857}
2858.tooltip.left {
2859 margin-left: -2px;
2860}
2861.tooltip.top .tooltip-arrow {
2862 bottom: 0;
2863 left: 50%;
2864 margin-left: -5px;
2865 border-left: 5px solid transparent;
2866 border-right: 5px solid transparent;
2867 border-top: 5px solid #000000;
2868}
2869.tooltip.left .tooltip-arrow {
2870 top: 50%;
2871 right: 0;
2872 margin-top: -5px;
2873 border-top: 5px solid transparent;
2874 border-bottom: 5px solid transparent;
2875 border-left: 5px solid #000000;
2876}
2877.tooltip.bottom .tooltip-arrow {
2878 top: 0;
2879 left: 50%;
2880 margin-left: -5px;
2881 border-left: 5px solid transparent;
2882 border-right: 5px solid transparent;
2883 border-bottom: 5px solid #000000;
2884}
2885.tooltip.right .tooltip-arrow {
2886 top: 50%;
2887 left: 0;
2888 margin-top: -5px;
2889 border-top: 5px solid transparent;
2890 border-bottom: 5px solid transparent;
2891 border-right: 5px solid #000000;
2892}
2893.tooltip-inner {
2894 max-width: 200px;
2895 padding: 3px 8px;
2896 color: #ffffff;
2897 text-align: center;
2898 text-decoration: none;
2899 background-color: #000000;
2900 -webkit-border-radius: 4px;
2901 -moz-border-radius: 4px;
2902 border-radius: 4px;
2903}
2904.tooltip-arrow {
2905 position: absolute;
2906 width: 0;
2907 height: 0;
2908}
2909.popover {
2910 position: absolute;
2911 top: 0;
2912 left: 0;
2913 z-index: 1010;
2914 display: none;
2915 padding: 5px;
2916}
2917.popover.top {
2918 margin-top: -5px;
2919}
2920.popover.right {
2921 margin-left: 5px;
2922}
2923.popover.bottom {
2924 margin-top: 5px;
2925}
2926.popover.left {
2927 margin-left: -5px;
2928}
2929.popover.top .arrow {
2930 bottom: 0;
2931 left: 50%;
2932 margin-left: -5px;
2933 border-left: 5px solid transparent;
2934 border-right: 5px solid transparent;
2935 border-top: 5px solid #000000;
2936}
2937.popover.right .arrow {
2938 top: 50%;
2939 left: 0;
2940 margin-top: -5px;
2941 border-top: 5px solid transparent;
2942 border-bottom: 5px solid transparent;
2943 border-right: 5px solid #000000;
2944}
2945.popover.bottom .arrow {
2946 top: 0;
2947 left: 50%;
2948 margin-left: -5px;
2949 border-left: 5px solid transparent;
2950 border-right: 5px solid transparent;
2951 border-bottom: 5px solid #000000;
2952}
2953.popover.left .arrow {
2954 top: 50%;
2955 right: 0;
2956 margin-top: -5px;
2957 border-top: 5px solid transparent;
2958 border-bottom: 5px solid transparent;
2959 border-left: 5px solid #000000;
2960}
2961.popover .arrow {
2962 position: absolute;
2963 width: 0;
2964 height: 0;
2965}
2966.popover-inner {
2967 padding: 3px;
2968 width: 280px;
2969 overflow: hidden;
2970 background: #000000;
2971 background: rgba(0, 0, 0, 0.8);
2972 -webkit-border-radius: 6px;
2973 -moz-border-radius: 6px;
2974 border-radius: 6px;
2975 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2976 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2977 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2978}
2979.popover-title {
2980 padding: 9px 15px;
2981 line-height: 1;
2982 background-color: #f5f5f5;
2983 border-bottom: 1px solid #eee;
2984 -webkit-border-radius: 3px 3px 0 0;
2985 -moz-border-radius: 3px 3px 0 0;
2986 border-radius: 3px 3px 0 0;
2987}
2988.popover-content {
2989 padding: 14px;
2990 background-color: #ffffff;
2991 -webkit-border-radius: 0 0 3px 3px;
2992 -moz-border-radius: 0 0 3px 3px;
2993 border-radius: 0 0 3px 3px;
2994 -webkit-background-clip: padding-box;
2995 -moz-background-clip: padding-box;
2996 background-clip: padding-box;
2997}
2998.popover-content p, .popover-content ul, .popover-content ol {
2999 margin-bottom: 0;
3000}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303001
Rushabh Mehtad0251332012-02-21 17:26:50 +05303002/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05303003 * lib/css/bootstrap/label.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303004 */
3005.label {
Rushabh Mehta2886b952012-02-24 11:26:31 +05303006 padding: 2px 4px 3px;
3007 font-size: 11.049999999999999px;
3008 font-weight: bold;
3009 color: #ffffff;
3010 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3011 background-color: #999999;
3012 -webkit-border-radius: 3px;
3013 -moz-border-radius: 3px;
3014 border-radius: 3px;
3015}
3016.label:hover {
3017 color: #ffffff;
3018 text-decoration: none;
3019}
3020.label-important {
3021 background-color: #b94a48;
3022}
3023.label-important:hover {
3024 background-color: #953b39;
3025}
3026.label-warning {
3027 background-color: #f89406;
3028}
3029.label-warning:hover {
3030 background-color: #c67605;
3031}
3032.label-success {
3033 background-color: #468847;
3034}
3035.label-success:hover {
3036 background-color: #356635;
3037}
3038.label-info {
3039 background-color: #3a87ad;
3040}
3041.label-info:hover {
3042 background-color: #2d6987;
3043}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303044
Rushabh Mehta2886b952012-02-24 11:26:31 +05303045/*
3046 * lib/css/bootstrap/icons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303047 */
3048[class^="icon-"], [class*=" icon-"] {
Rushabh Mehta2886b952012-02-24 11:26:31 +05303049 display: inline-block;
3050 width: 14px;
3051 height: 14px;
3052 line-height: 14px;
3053 vertical-align: text-top;
3054 background-image: url("../lib/images/icons/glyphicons-halflings.png");
3055 background-position: 14px 14px;
3056 background-repeat: no-repeat;
3057 *margin-right: .3em;
3058}
3059[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
3060 *margin-left: 0;
3061}
3062.icon-white {
3063 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
3064}
3065.icon-glass {
3066 background-position: 0 0;
3067}
3068.icon-music {
3069 background-position: -24px 0;
3070}
3071.icon-search {
3072 background-position: -48px 0;
3073}
3074.icon-envelope {
3075 background-position: -72px 0;
3076}
3077.icon-heart {
3078 background-position: -96px 0;
3079}
3080.icon-star {
3081 background-position: -120px 0;
3082}
3083.icon-star-empty {
3084 background-position: -144px 0;
3085}
3086.icon-user {
3087 background-position: -168px 0;
3088}
3089.icon-film {
3090 background-position: -192px 0;
3091}
3092.icon-th-large {
3093 background-position: -216px 0;
3094}
3095.icon-th {
3096 background-position: -240px 0;
3097}
3098.icon-th-list {
3099 background-position: -264px 0;
3100}
3101.icon-ok {
3102 background-position: -288px 0;
3103}
3104.icon-remove {
3105 background-position: -312px 0;
3106}
3107.icon-zoom-in {
3108 background-position: -336px 0;
3109}
3110.icon-zoom-out {
3111 background-position: -360px 0;
3112}
3113.icon-off {
3114 background-position: -384px 0;
3115}
3116.icon-signal {
3117 background-position: -408px 0;
3118}
3119.icon-cog {
3120 background-position: -432px 0;
3121}
3122.icon-trash {
3123 background-position: -456px 0;
3124}
3125.icon-home {
3126 background-position: 0 -24px;
3127}
3128.icon-file {
3129 background-position: -24px -24px;
3130}
3131.icon-time {
3132 background-position: -48px -24px;
3133}
3134.icon-road {
3135 background-position: -72px -24px;
3136}
3137.icon-download-alt {
3138 background-position: -96px -24px;
3139}
3140.icon-download {
3141 background-position: -120px -24px;
3142}
3143.icon-upload {
3144 background-position: -144px -24px;
3145}
3146.icon-inbox {
3147 background-position: -168px -24px;
3148}
3149.icon-play-circle {
3150 background-position: -192px -24px;
3151}
3152.icon-repeat {
3153 background-position: -216px -24px;
3154}
3155.icon-refresh {
3156 background-position: -240px -24px;
3157}
3158.icon-list-alt {
3159 background-position: -264px -24px;
3160}
3161.icon-lock {
3162 background-position: -287px -24px;
3163}
3164.icon-flag {
3165 background-position: -312px -24px;
3166}
3167.icon-headphones {
3168 background-position: -336px -24px;
3169}
3170.icon-volume-off {
3171 background-position: -360px -24px;
3172}
3173.icon-volume-down {
3174 background-position: -384px -24px;
3175}
3176.icon-volume-up {
3177 background-position: -408px -24px;
3178}
3179.icon-qrcode {
3180 background-position: -432px -24px;
3181}
3182.icon-barcode {
3183 background-position: -456px -24px;
3184}
3185.icon-tag {
3186 background-position: 0 -48px;
3187}
3188.icon-tags {
3189 background-position: -25px -48px;
3190}
3191.icon-book {
3192 background-position: -48px -48px;
3193}
3194.icon-bookmark {
3195 background-position: -72px -48px;
3196}
3197.icon-print {
3198 background-position: -96px -48px;
3199}
3200.icon-camera {
3201 background-position: -120px -48px;
3202}
3203.icon-font {
3204 background-position: -144px -48px;
3205}
3206.icon-bold {
3207 background-position: -167px -48px;
3208}
3209.icon-italic {
3210 background-position: -192px -48px;
3211}
3212.icon-text-height {
3213 background-position: -216px -48px;
3214}
3215.icon-text-width {
3216 background-position: -240px -48px;
3217}
3218.icon-align-left {
3219 background-position: -264px -48px;
3220}
3221.icon-align-center {
3222 background-position: -288px -48px;
3223}
3224.icon-align-right {
3225 background-position: -312px -48px;
3226}
3227.icon-align-justify {
3228 background-position: -336px -48px;
3229}
3230.icon-list {
3231 background-position: -360px -48px;
3232}
3233.icon-indent-left {
3234 background-position: -384px -48px;
3235}
3236.icon-indent-right {
3237 background-position: -408px -48px;
3238}
3239.icon-facetime-video {
3240 background-position: -432px -48px;
3241}
3242.icon-picture {
3243 background-position: -456px -48px;
3244}
3245.icon-pencil {
3246 background-position: 0 -72px;
3247}
3248.icon-map-marker {
3249 background-position: -24px -72px;
3250}
3251.icon-adjust {
3252 background-position: -48px -72px;
3253}
3254.icon-tint {
3255 background-position: -72px -72px;
3256}
3257.icon-edit {
3258 background-position: -96px -72px;
3259}
3260.icon-share {
3261 background-position: -120px -72px;
3262}
3263.icon-check {
3264 background-position: -144px -72px;
3265}
3266.icon-move {
3267 background-position: -168px -72px;
3268}
3269.icon-step-backward {
3270 background-position: -192px -72px;
3271}
3272.icon-fast-backward {
3273 background-position: -216px -72px;
3274}
3275.icon-backward {
3276 background-position: -240px -72px;
3277}
3278.icon-play {
3279 background-position: -264px -72px;
3280}
3281.icon-pause {
3282 background-position: -288px -72px;
3283}
3284.icon-stop {
3285 background-position: -312px -72px;
3286}
3287.icon-forward {
3288 background-position: -336px -72px;
3289}
3290.icon-fast-forward {
3291 background-position: -360px -72px;
3292}
3293.icon-step-forward {
3294 background-position: -384px -72px;
3295}
3296.icon-eject {
3297 background-position: -408px -72px;
3298}
3299.icon-chevron-left {
3300 background-position: -432px -72px;
3301}
3302.icon-chevron-right {
3303 background-position: -456px -72px;
3304}
3305.icon-plus-sign {
3306 background-position: 0 -96px;
3307}
3308.icon-minus-sign {
3309 background-position: -24px -96px;
3310}
3311.icon-remove-sign {
3312 background-position: -48px -96px;
3313}
3314.icon-ok-sign {
3315 background-position: -72px -96px;
3316}
3317.icon-question-sign {
3318 background-position: -96px -96px;
3319}
3320.icon-info-sign {
3321 background-position: -120px -96px;
3322}
3323.icon-screenshot {
3324 background-position: -144px -96px;
3325}
3326.icon-remove-circle {
3327 background-position: -168px -96px;
3328}
3329.icon-ok-circle {
3330 background-position: -192px -96px;
3331}
3332.icon-ban-circle {
3333 background-position: -216px -96px;
3334}
3335.icon-arrow-left {
3336 background-position: -240px -96px;
3337}
3338.icon-arrow-right {
3339 background-position: -264px -96px;
3340}
3341.icon-arrow-up {
3342 background-position: -289px -96px;
3343}
3344.icon-arrow-down {
3345 background-position: -312px -96px;
3346}
3347.icon-share-alt {
3348 background-position: -336px -96px;
3349}
3350.icon-resize-full {
3351 background-position: -360px -96px;
3352}
3353.icon-resize-small {
3354 background-position: -384px -96px;
3355}
3356.icon-plus {
3357 background-position: -408px -96px;
3358}
3359.icon-minus {
3360 background-position: -433px -96px;
3361}
3362.icon-asterisk {
3363 background-position: -456px -96px;
3364}
3365.icon-exclamation-sign {
3366 background-position: 0 -120px;
3367}
3368.icon-gift {
3369 background-position: -24px -120px;
3370}
3371.icon-leaf {
3372 background-position: -48px -120px;
3373}
3374.icon-fire {
3375 background-position: -72px -120px;
3376}
3377.icon-eye-open {
3378 background-position: -96px -120px;
3379}
3380.icon-eye-close {
3381 background-position: -120px -120px;
3382}
3383.icon-warning-sign {
3384 background-position: -144px -120px;
3385}
3386.icon-plane {
3387 background-position: -168px -120px;
3388}
3389.icon-calendar {
3390 background-position: -192px -120px;
3391}
3392.icon-random {
3393 background-position: -216px -120px;
3394}
3395.icon-comment {
3396 background-position: -240px -120px;
3397}
3398.icon-magnet {
3399 background-position: -264px -120px;
3400}
3401.icon-chevron-up {
3402 background-position: -288px -120px;
3403}
3404.icon-chevron-down {
3405 background-position: -313px -119px;
3406}
3407.icon-retweet {
3408 background-position: -336px -120px;
3409}
3410.icon-shopping-cart {
3411 background-position: -360px -120px;
3412}
3413.icon-folder-close {
3414 background-position: -384px -120px;
3415}
3416.icon-folder-open {
3417 background-position: -408px -120px;
3418}
3419.icon-resize-vertical {
3420 background-position: -432px -119px;
3421}
3422.icon-resize-horizontal {
3423 background-position: -456px -118px;
3424}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303425
Rushabh Mehta2886b952012-02-24 11:26:31 +05303426/*
Rushabh Mehtad48417c2012-03-19 18:42:13 +05303427 * lib/css/bootstrap/popover.css
3428 */
3429.popover {
3430 position: absolute;
3431 top: 0;
3432 left: 0;
3433 z-index: 1010;
3434 display: none;
3435 padding: 5px;
3436}
3437.popover.top {
3438 margin-top: -5px;
3439}
3440.popover.right {
3441 margin-left: 5px;
3442}
3443.popover.bottom {
3444 margin-top: 5px;
3445}
3446.popover.left {
3447 margin-left: -5px;
3448}
3449.popover.top .arrow {
3450 bottom: 0;
3451 left: 50%;
3452 margin-left: -5px;
3453 border-left: 5px solid transparent;
3454 border-right: 5px solid transparent;
3455 border-top: 5px solid #000000;
3456}
3457.popover.right .arrow {
3458 top: 50%;
3459 left: 0;
3460 margin-top: -5px;
3461 border-top: 5px solid transparent;
3462 border-bottom: 5px solid transparent;
3463 border-right: 5px solid #000000;
3464}
3465.popover.bottom .arrow {
3466 top: 0;
3467 left: 50%;
3468 margin-left: -5px;
3469 border-left: 5px solid transparent;
3470 border-right: 5px solid transparent;
3471 border-bottom: 5px solid #000000;
3472}
3473.popover.left .arrow {
3474 top: 50%;
3475 right: 0;
3476 margin-top: -5px;
3477 border-top: 5px solid transparent;
3478 border-bottom: 5px solid transparent;
3479 border-left: 5px solid #000000;
3480}
3481.popover .arrow {
3482 position: absolute;
3483 width: 0;
3484 height: 0;
3485}
3486.popover-inner {
3487 padding: 3px;
3488 width: 280px;
3489 overflow: hidden;
3490 background: #000000;
3491 background: rgba(0, 0, 0, 0.8);
3492 -webkit-border-radius: 6px;
3493 -moz-border-radius: 6px;
3494 border-radius: 6px;
3495 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3496 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3497 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3498}
3499.popover-title {
3500 padding: 9px 15px;
3501 line-height: 1;
3502 background-color: #f5f5f5;
3503 border-bottom: 1px solid #eee;
3504 -webkit-border-radius: 3px 3px 0 0;
3505 -moz-border-radius: 3px 3px 0 0;
3506 border-radius: 3px 3px 0 0;
3507}
3508.popover-content {
3509 padding: 14px;
3510 background-color: #ffffff;
3511 -webkit-border-radius: 0 0 3px 3px;
3512 -moz-border-radius: 0 0 3px 3px;
3513 border-radius: 0 0 3px 3px;
3514 -webkit-background-clip: padding-box;
3515 -moz-background-clip: padding-box;
3516 background-clip: padding-box;
3517}
3518.popover-content p, .popover-content ul, .popover-content ol {
3519 margin-bottom: 0;
3520}
3521
3522/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303523 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303524 */
3525h1, h2, h3, h4, h5 {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05303526 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05303527 font-weight: normal;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05303528 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303529}
3530
3531body {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05303532 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05303533 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303534}
3535
3536span, div, td, input, textarea, button, select {
3537 font-family: inherit;
3538}
3539
3540body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05303541 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05303542 color: #616161;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303543}
3544
Rushabh Mehta983a1712012-03-21 13:35:34 +05303545.small {
3546 font-size: 11.5px;
3547}
3548
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303549.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303550 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303551 text-align: center;
3552}
3553
Anand Doshidb628762012-02-24 17:56:00 +05303554.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303555 margin: -3px 0px;
3556 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303557 min-width: 20px;
3558 text-align: center;
3559 display: inline-block;
3560 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303561 color: #999999;
3562 background-color: #333131;
3563}
3564
3565.navbar-new-comments:hover,
3566.navbar-new-comments:active,
3567.navbar-new-comments:focus {
3568 color: #fff;
3569}
3570
3571
3572.navbar-new-comments-true {
3573 color: #fff;
3574 background-color: #B00D07;
3575}
3576
3577.navbar-icon-home {
3578 vertical-align: middle;
3579 opacity:0.4;
3580 Filter:alpha(opacity=40); /* For IE8 and earlier */
3581}
3582
3583.navbar-icon-home:hover,
3584.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05303585.navbar-icon-home:active,
3586.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303587 opacity:1;
3588 Filter:alpha(opacity=100); /* For IE8 and earlier */
3589}
3590
3591/*extra size menus for recent*/
3592.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3593 min-width: 160px !important;
3594 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303595}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303596