blob: 9382352af1abac68f1dc81ca70289cec882798d8 [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
3 * lib/css/legacy/body.css
4 */html {
5 margin: 0px;
6 padding: 0px;
7}
8
9body {
10 margin: 0px;
11 padding: 0px;
12 font-family: Arial, Helvetica, Sans;
13 font-size: 12px;
14 color: #000;
Rushabh Mehta3f29b852012-02-20 15:40:29 +053015 background-color: #e2e2e2;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053016}
17
Rushabh Mehtaafaac602012-02-14 11:44:13 +053018pre { margin: 0px; padding: 0px; }
19
20button { margin: 2px; margin-left: 0px; }
21
22label {
23 padding-top: 15px;
24 color: #404040;
25}
26
27select, input, textarea {
28 border: 1px solid #AAA;
29 -moz-border-radius: 4px;
30 -webkit-border-radius: 4px;
31 font-size: 13px;
32 padding: 4px;
33 color: #222;
34}
35
36textarea {
37 font-family: inherit;
38 height: 120px;
39 width: 90%;
40 font-size: 12px;
41 white-space: normal;
42}
43
44table { padding: 0px; border-collapse: 'collapse'}
45
46td {
47 padding:0px;
48 margin: 0px;
49 vertical-align: top;
50}
51
52p {
53 margin: 0px 0px 9px 0px;
54 line-height: 1.5em;
55}
56
57li {
58 line-height: 1.5em;
59}
60
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053061hr {
62 margin: 18px 0;
63 border: 0;
64 border-top: 1px solid #e5e5e5;
65 border-bottom: 1px solid #ffffff;
66}
67
Rushabh Mehtad0251332012-02-21 17:26:50 +053068/* links */
69
Rushabh Mehtaafaac602012-02-14 11:44:13 +053070a:active { outline:none; }
71
Rushabh Mehtad0251332012-02-21 17:26:50 +053072a {
73 color: #0088cc;
74 text-decoration: none;
75}
76a:hover {
77 color: #005580;
78 text-decoration: underline;
79}
80
81.link_type {
82 padding:2px;
83 color: #0088cc;
84 cursor: pointer;
85}
86
87.link_type:hover {
88 color: #005580;
89 text-decoration: underline;
90}
91
Rushabh Mehtaafaac602012-02-14 11:44:13 +053092:focus { -moz-outline-style:none; }
93
94table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
95table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
96
97div.fix_ff_cursor { overflow: auto; }
98
99/* --- Layout --- */
100
101div.comment { color: #444; }
102
103div#body_div {
104 position: relative;
105 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530106 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530107 width: 900px;
108 margin: auto;
109 margin-top: 56px;
110}
111
112footer {
113 width: 900px;
114 margin: auto;
115}
116header .container {
117 width: 900px;
118 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530119}
120
121div.no_script {
122 display: none;
123}
124
125div.loading_div {
126 position: absolute;
127 background-color: #FFFFCC;
128 z-index: 1999;
129 right: 5px;
130 width: 90px;
131 display: none;
132 text-align: center;
133 padding: 2px;
134 font-size: 12px;
135 border: 1px solid #FF4;
136}
137
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530138div.std-footer {
139 margin: 13px 0px;
140 border-top: 1px solid #AAA;
141 padding: 13px;
142}
143
144div.std-footer-item {
145 margin: 0px 13px 13px 0px;
146}
147
148.shadow {
149 -moz-box-shadow: 0px 2px 2px #888;
150 -webkit-box-shadow: 0px 2px 2px #888;
151 box-shadow: 0px 2px 2px #888;
152}
153
154.round {
155 -webkit-border-radius: 5px;
156 -moz-border-radius: 5px;
157 border-radius: 5px;
158}
159.gradient {
160 background: #ededed; /* Old browsers */
161 background: -moz-linear-gradient(top, #ededed 0%, #d1d1d1 47%, #b7b7b7 100%); /* FF3.6+ */
162 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(47%,#d1d1d1), color-stop(100%,#b7b7b7)); /* Chrome,Safari4+ */
163 background: -webkit-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Chrome10+,Safari5.1+ */
164 background: -o-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Opera11.10+ */
165 background: -ms-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* IE10+ */
166 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#b7b7b7',GradientType=0 ); /* IE6-9 */
167 background: linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* W3C */
168}
169
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530170.layout_wrapper, .layout-wrapper {
Rushabh Mehtab73fa492012-02-24 15:07:39 +0530171 -moz-box-shadow: 1px 1px 8px #555;
172 -webkit-box-shadow: 1px 1px 8px #555;
173 box-shadow: 1px 1px 8px #555;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530174 background-color: #fff;
175 padding: 15px;
176}
177
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530178.layout-wrapper-background {
179 background-color: #f2f2f2 !important;
180 padding: 0px;
181}
182
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530183.layout-main-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530184 width: 70%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530185 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530186 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530187 background-color: #FFF;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530188 min-height: 450px;
189}
190
191.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530192 width: 22%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530193 float: right;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530194 color: #606060;
195 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530196 padding: 15px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530197 min-height: 450px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530198}
199
200/* from bootstrap */
201.container {
202 margin-left: auto;
203 margin-right: auto;
204 zoom: 1;
205}
206.container:before, .container:after {
207 display: table;
208 content: "";
209 zoom: 1;
210}
211.container:after {
212 clear: both;
213}
214
Rushabh Mehtab73fa492012-02-24 15:07:39 +0530215.well {
216 min-height: 20px;
217 padding: 19px;
218 margin-bottom: 20px;
219 background-color: #f5f5f5;
220 border: 1px solid #eee;
221 border: 1px solid rgba(0, 0, 0, 0.05);
222 -webkit-border-radius: 4px;
223 -moz-border-radius: 4px;
224 border-radius: 4px;
225 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
226 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
227 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
228}
229
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530230/*
231 * lib/css/legacy/menus.css
232 */
233/******** Menus - menu.js ************/
234
235ul.menu_toolbar {
236 z-index: 30;
237 padding: 0px;
238 margin: 0px;
239 margin-top: 1px;
240}
241
242ul.menu_toolbar li {
243 list-style: none;
244 margin: 0px;
245 float: left;
246}
247
248.top_menu {
249 margin: 0px;
250 padding: 4px;
251 cursor: pointer;
252 color: #FFF;
253 margin-right: 8px;
254}
255
256.top_menu_mo {
257 background-color: #000;
258
259 -moz-border-radius: 5px;
260 -webkit-border-radius: 5px;
261}
262
263div.menu_toolbar_dropdown {
264 position: absolute;
265 margin-top: 4px;
266 margin-left: 8px;
267 width: 140px;
268 background-color: #FFF;
269 color: #000;
270 display: none;
271 border: 2px solid #333;
272 z-index: 31;
273 overflow-y: auto;
274 overflow-x: hidden;
275}
276
277div.dd_item {
278 cursor: pointer;
279 padding: 4px;
280 background-color: #FFF;
281}
282div.dd_item_mo { background-color: #FE8; }
283/*
284 * lib/css/legacy/messages.css
285 */
286/* FLOATING MESSAGE */
287
288.btn-img { cursor: pointer; }
289
290div.fetching { color: #888; text-align:right; }
291
292div.notice {
293 postion: absolute;
294 background-color: #000;
295 -moz-border-radius: 5px; -webkit-border-radius: 5px;
296 opacity: 0.6;
297 right: 0;
298 top: 0;
299 margin-top: 8px;
300 z-index: -1;
301 padding: 8px;
302}
303
304/** help **/
305
306.info-box {
307 background-color: #F8F8F8;
308 border: 1px solid #CCCCCC;
309 border-radius: 3px 3px 3px 3px;
310 line-height: 1.6em;
311 overflow: auto;
312 padding: 6px 10px;
313 margin-bottom: 9px;
314}
315
316.help_box, .help-box {
317 background-color:#FFC;
318 font-size: 13px;
319 color: #864;
320 padding: 7px;
321 margin: 11px 0px;
322 border: 1px solid #EEB;
323}
324
325.help_box_big {
326 background-color:#FFC;
327 color: #864;
328 padding: 7px;
329 margin: 7px 0px;
330 border: 1px solid #EEB;
331 text-align: center;
332 font-size: 14px;
333}
334/*
335 * lib/css/legacy/forms.css
336 *//* FORMS */
337
338
339div.frm_print_wrapper {
340 background-color:#FFF;
341 border:1px solid #444;
342 padding: 40px;
343
344 box-shadow:1px 1px 8px #229;
345 -moz-box-shadow: 1px 1px 8px #229;
346 -webkit-box-shadow: 1px 1px 8px #229;
347}
348
349div.page_break {
350 margin: 24px 0px;
351 border-top: 1px dashed #888;
352}
353
354div.grid_tbarlinks {
355 border-bottom: 0px;
356 background-color: #CCC;
357 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530358 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530359 float: right;
360
361 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
362 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
363}
364
365
366div.frm_tip_box {
367 margin: 0px;
368 padding: 8px;
369 background-color: #FFC;
370 display: none;
371 font-size: 11px;
372 border: 1px solid #FFB;
373}
374
375div.frm_tip_box table {
376 border-collapse: collapse;
377 vertical-align: top;
378}
379
380td.frm_tray_area {
381 width: 122px;
382}
383
384div.dialog_frm {
385 position: relative;
386 margin: 10px;
387}
388
389
390
391/*------------------*/
392
393.top_cell {
394 height: 50px;
395}
396
397div.attach_area {
398 padding: 8px;
399 margin: 8px;
400 background-color: #EEE;
401}
402
403div.attach_area table {
404 width: 100%;
405}
406
407.tablabel_normal {
408 margin: 0 4px 0 0;
409 padding: 3px 5px;
410 line-height: 1.3em;
411 display: inline;
412 cursor: pointer;
413}
414
415.tablabel_selected {
416 margin: 0 4px 0 0;
417 padding: 3px 5px;
418 line-height: 1.3em;
419 font-weight: bold;
420 display: inline;
421 cursor: pointer;
422 color: #000;
423}
424
425.scrollhead_wrapper {
426 position: absolute;
427 z-index: 1;
428 height: 30px;
429}
430
431.treeimg {
432 cursor: pointer;
433 margin-right: 3px;
434}
435
436
437.sectionCell {
438 padding: 5px;
439 vertical-align: top;
440}
441
442.code_area {
443 width: 80%;
444 margin: 8px;
445 padding: 4px;
446 background-color: #F8F8F8;
447 border: 1px solid #CCC;
448 overflow-x: auto;
449}
450
451.code_text {
452 width: 100%;
453 height: 360px;
454 margin-top: 3px;
455 font-family: Courier, Fixed;
456 font-size: 12px;
457}
458
459div.time_field select{
460 display: inline;
461 margin: 2px;
462 width: 45px;
463}
464
465/* Documents */
466
467.frm_field_table {
468 width: 100%;
469 border-collapse: collapse;
470}
471
472.datalabelcell {
473 padding: 2px 0px;
474 width: 160px;
475 vertical-align: top;
476}
477.datainputcell { padding: 2px 0px; }
478
479
480.field_description, .help {
481 margin: 3px 0px 11px 0px;
482 color: #888;
483 font-style: italic;
484}
485
486.field_description_top {
487 margin-bottom: 3px;
488}
489
490.field_label {
491 font-size:11px;
492}
493.input_area input, select, textarea {
494 font-size: 14px;
495 padding: 2px;
496}
497
498.input_area input {
499 width: 80%;
500 margin: 0px;
501}
502.input_area select {
503 width: 80%;
504}
505.input_area textarea {
506 width: 90%;
507}
508
509.disp_area {
510 width: 80%;
511 padding: 2px 0px;
512 font-size: 12px;
513}
514.disp_area_no_val {
515 height: 14px;
516}
517
518.no_img {
519 padding: 40px;
520 width: 100px;
521 height: 20px;
522 color: #888;
523 text-align: center;
524 border: 1px solid #AAA;
525}
526
527.input-mandatory {
528 font-size: 14px !important;
529 font-weight: bold;
530}
531
532.field-to-update {
533 background-color:#FEE;
534}
535
536/* sidebar */
537
538div.sidebar-comment-wrapper input {
539 width: 50%;
540}
541div.sidebar-comment-message {
542 margin-top: 8px;
543 font-size: 11px;
544 color: #777;
545}
546
547div.sidebar-comment-text {
548 font-size: 12px;
549 font-weight: bold;
550 margin-top: 8px;
551 color: #444;
552}
553div.sidebar-comment-info {
554 font-size: 10px;
555 color: #777;
556}
557/*
558 * lib/css/legacy/grid.css
559 */
560
561/* Grid */
562
563
564/* --- Simple --- */
565.grid_wrapper_simple {
566 width: 100%;
567 margin-bottom: 8px;
568 border: 1px solid #AA9;
569}
570
571.grid_head_wrapper_simple {
572 padding: 0px;
573 border-bottom: 2px solid #AAA;
574}
575
576.grid_head_wrapper_simple td {
577 border-right: 1px solid #AA9;
578}
579
580.grid_head_wrapper_simple td div {
581 padding: 2px;
582}
583
584.grid_tab_wrapper_simple {
585}
586
587.grid_cell_simple {
588 padding: 2px;
589 background-color: #fff;
590 border-right: 1px solid #AA9;
591}
592
593
594/* --- Normal --- */
595.grid_wrapper {
596 position: relative;
597 overflow: auto;
598 border: 1px solid #AAA;
599 width: 100%;
600 margin-bottom: 8px;
601 background-color: #fff;
602}
603
604.grid_tab_wrapper {
605 position: absolute;
606 top: 40px;
607 border-bottom: 1px solid #DDD;
608}
609
610.grid_table, .grid_head_table {
611 table-layout: fixed;
612 border-collapse: collapse;
613 /*width: 100%;*/
614}
615
616.grid_cell {
617 border-right: 1px solid #ddd;
618 padding: 0px;
619 background-color: #fff;
620}
621
622.grid_head_wrapper {
623 position: absolute;
624 z-index: 1;
625 height: 40px;
626 padding: 0px;
627 overflow: hidden;
628 /*background-color: #fff;*/
629}
630
631.grid_head_table td {
632 background-color: #EEE;
633 border-right: 1px solid #AAA;
634 border-bottom: 1px solid #AAA;
635 height: 40px;
636 padding: 0px;
637}
638
639.grid_head_table td div {
640 color: #222;
641 font-weight: bold;
642 overflow: hidden;
643 padding: 2px 0px;
644 text-align: center;
645}
646
647.grid_selector {
648 padding: 1px;
649 border-right: 1px solid #DDD;
650 width: 20px;
651 background-color: #fff;
652}
653
654.grid_cell_div {
655 padding: 2px;
656 cursor: pointer;
657 overflow: hidden;
658 border: 2px solid #FFF;
659}
660
661.grid_cell_div_selected {
662 border: 2px solid #88f;
663}
664
665.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
666 margin: 0px;
667 border: 0px;
668 width: 100%;
669 margin: 0px;
670 }
671
672.grid_cell_div textarea {
673 border: 3px solid #abf;
674 height:200px;
675 width: 300px;
676 z-index: 10;
677 position:absolute;
678}
679
680.gridDivSelected option { border: 0px; }
681/*
682 * lib/css/legacy/listing.css
683 *//* listing 2.0 */
684
685div.listing-more {
686 margin: 7px 0px 17px 0px;
687 text-align: center;
688 display: none;
689}
690
691div.listing-toolbar {
692 margin: 7px 0px;
693}
694
695/* SRS */
696
697table.srs_result_tab {
698 border: 2px solid #AAA;
699 border-collapse: collapse;
700}
701
702/* firefox bug fix for disappering borders */
703table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
704 position: static;
705}
706
707table.srs_result_tab td {
708 padding: 3px 2px;
709 position: static;
710}
711
712div.srs_body_area {
713}
714
715div.srs_results_area {
716}
717
718div.srs_filter_wrapper {
719 border: 1px solid #CCF;
720
721 background-color: #EEF;
722 margin:0px 0px 8px 0px;
723
724 -moz-border-radius: 5px;
725 -webkit-border-radius: 5px;
726 border-radius: 5px;
727}
728
729div.srs_filter_area {
730 padding: 8px;
731}
732
733div.srs_filter_area td {
734 vertical-align: middle;
735}
736
737
738
739
740/*
741 * lib/css/legacy/report.css
742 */
743/* Reports */
744
745div.report_grid_area {
746 position: relative;
747 padding: 8px;
748}
749
750
751div.report_tab {
752 border: 1px solid #AAA;
753 position: relative;
754 overflow: auto;
755}
756
757div.report_no_data {
758 padding: 8px;
759 background-color: #EEE;
760 border: 1px solid #DDD;
761 position: absolute;
762 margin-left: 40%;
763 margin-top: 50px;
764 display: none;
765}
766
767div.report_htitle {
768 float: left;
769 padding: 2px;
770 font-size: 14px;
771 font-weight: bold;
772 margin-left: 4px;
773 color: #665;
774 /*font-weight: bold;*/
775}
776
777div.report_tbar {
778 background-color: #EEF;
779 border: 1px solid #CCF;
780 border-bottom: 0px;
781 height: 28px;
782}
783
784div.report_tbar table{
785 width: 100%;
786}
787div.report_tbar table td {
788
789}
790div.report_tbar table td div {
791 position: relative;
792}
793div.report_tbar button, div.report_tbar select, div.report_tbar img {
794 font-size: 11px;
795 margin: 0px;
796}
797
798div.report_head_wrapper {
799 position: absolute;
800 height: 24px;
801 top: 0px;
802 z-index: 1;
803}
804
805div.report_tab_wrapper {
806 position: absolute;
807 border-bottom: 1px solid #AAA;
808 border-top: 1px solid #AAA;
809}
810
811div.report_tab_wrapper table, div.report_head_wrapper table {
812 table-layout: fixed;
813 border-collapse: collapse;
814 /*width: 100%;*/
815}
816
817div.report_tab_wrapper table td, div.report_head_wrapper table td {
818 border-left: 1px solid #AAA;
819 border-right: 1px solid #AAA;
820 border-bottom: 1px solid #AAA;
821 overflow: hidden;
822 padding: 0px;
823}
824
825div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
826 padding: 3px;
827 overflow: hidden;
828}
829
830.report_head_cell {
831 background-color: #EEE;
832 border-bottom: 1px solid #AA9;
833 text-align: center;
834 font-weight: bold;
835}
836.report_head_cell div {
837 color:#222;
838 height: 18px;
839}
840
841
842/* FINDER */
843
844div.finder_wrapper {
845}
846
847div.finder_body_area {
848 margin: 16px;
849}
850
851div.finder_body {
852 display: none;
853}
854
855div.finder_advanced_area table {
856 width: 80%;
857}
858
859div.finder_advanced_area textarea {
860 width: 80%;
861}
862
863div.finder_filter_area {
864 position: relative;
865}
866
867div.filter_head {
868 font-size: 14px;
869 margin-bottom: 2px;
870}
871div.filter_dt_head {
872 font-size: 14px;
873 font-weight: bold;
874 margin-bottom: 2px;
875}
876table.filter_tab {
877 width: 96%;
878 border-collapse: collapse;
879}
880
881table.filter_tab td {
882 width: 50%;
883}
884
885div.finder_picker_area {
886
887}
888div.builder_field {
889 margin: 0px;
890}
891div.builder_dt_head {
892 font-size: 14px;
893 font-weight: bold;
894 margin-bottom: 2px;
895}
896
897div.builder_field table {
898 width: 90%;
899 border-collapse: collapse;
900}
901
902div.builder_label {
903 height: 20px;
904}
905
906div.builder_head {
907 font-size: 16px;
908 font-weight: bold;
909 color: #AB6;
910}
911
912table.builder_tab {
913 width: 96%;
914 border-collapse: collapse;
915}
916
917table.builder_tab td {
918 width: 33%;
919 padding: 2px;
920}
921/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530922 * lib/css/legacy/autosuggest.css
923 *//*
924================================================
925autosuggest, inquisitor style
926================================================
927*/
928
929div.autosuggest
930{
931 position: absolute;
932 margin-top: 3px;
933 border: 1px solid #222;
934}
935
936div.autosuggest ul
937{
938 list-style: none;
939 margin: 0px;
940 padding: 2px;
941 overflow: hidden;
942 background-color: #FFF;
943}
944
945div.autosuggest ul li
946{
947 color: #444;
948 padding: 0;
949 margin: 0;
950 text-align: left;
951}
952
953div.autosuggest ul li a
954{
955 color: #444;
956 display: block;
957 text-decoration: none;
958 position: relative;
959 padding: 0;
960 width: 100%;
961}
962div.autosuggest ul li a:hover
963{
964
965}
966div.autosuggest ul li.as_highlight a:hover
967{
968 background-color: #45A;
969 color: #FFF;
970}
971
972div.autosuggest ul li a span
973{
974 display: block;
975 padding: 3px 6px;
976 color: #444;
977 border-bottom:1px solid #DDD;
978}
979
980div.autosuggest ul li a span small
981{
982 display: block;
983 font-weight: normal;
984 color: #444;
985}
986
987div.autosuggest ul li.as_highlight a span small
988{
989 color: #FFF;
990}
991
992div.autosuggest ul li.as_highlight a span {
993 color: #FFF;
994}
995
996div.autosuggest ul li.as_highlight a
997{
998 color: #FFF;
999 background-color: #45A;
1000 cursor: pointer;
1001}
1002
1003div.autosuggest ul li.as_warning
1004{
1005 font-weight: bold;
1006 text-align: center;
1007}
1008
1009div.autosuggest ul em
1010{
1011 font-style: normal;
1012 font-weight: bold;
1013}
1014
1015/*
1016 * lib/css/legacy/dialog.css
1017 *//***** Dialogs *******/
1018
1019div.dialog_wrapper {
1020 position: absolute;
1021 width: 440px;
1022 display: none;
1023 z-index: 90;
1024 background-color: #FFF;
1025 border: 3px solid #222;
1026 box-shadow:1px 1px 5px #777;
1027 -moz-box-shadow: 1px 1px 5px #777;
1028 -webkit-box-shadow: 1px 1px 5px #777;
1029
1030 border-radius: 5px;
1031 -moz-border-radius: 5px;
1032 -webkit-border-radius: 5px;
1033}
1034
1035div.dialog_head {
1036 height: 22px;
1037 padding: 4px;
1038 background-color: #222;
1039 color: #FFF;
1040}
1041
1042div.dialog_body {
1043 padding: 8px 4px 16px 4px;
1044 border-radius: 5px;
1045 -moz-border-radius: 5px;
1046 -webkit-border-radius: 5px;
1047}
1048
1049div.dialog_back {
1050 position: fixed;
1051 display: none;
1052 top: 0px;
1053 left: 0px;
1054 bottom: 0px;
1055 right: 0px;
1056 background-color: #EEE;
1057 opacity: 0.6;
1058 z-index: 50;
1059 text-align: center;
1060}
1061
1062div.dialog_message {
1063 display: none;
1064 position: absolute;
1065 width: 250px;
1066 font-size: 12px;
1067 z-index: 91;
1068 background-color:#FFF;
1069 padding: 12px;
1070 border: 1px solid #444;
1071}
1072
1073div.dialog_row {
1074 padding: 8px 8px 0px 8px;
1075}
1076
1077div.dialog_row table {
1078 width: 100%;
1079}
1080
1081div.dialog_row table td {
1082}
1083
1084div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
1085 width: 80%;
1086 font-size: 14px;
1087}
1088
1089div.dialog_row table td textarea {
1090 width: 80%;
1091 height: 200px;
1092 font-size: 12px;
1093}
1094
1095/*
1096 * lib/css/legacy/tabs.css
1097 */
1098/******* TABS ********/
1099
1100div.box_label_wrapper {
1101 border-bottom: 6px solid #777;
1102}
1103
1104div.box_label_body {
1105 height: 22px;
1106}
1107
1108ul.box_tabs {
1109 margin: 0px;
1110 padding: 0px;
1111 list-style: none;
1112}
1113
1114ul.box_tabs li {
1115 height: 22px;
1116 float:left;
1117 font-size: 12px;
1118 text-decoration: underline;
1119
1120 background-color: #DDD;
1121
1122 margin:0;
1123 margin-left: 4px;
1124 padding:0 0 0 9px;
1125 cursor: pointer;
1126}
1127
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301128ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301129 display:block;
1130 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301131 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301132}
1133
1134ul.box_tabs li.box_tab_mouseover {
1135 background-color: #BBB;
1136}
1137
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301138ul.box_tabs li.box_tab_selected {
1139 background-color: #777;
1140
1141 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1142 background: -moz-linear-gradient(top, #999, #777);
1143
1144 color: #FFF;
1145 font-weight:bold;
1146
1147}
1148ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301149 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301150}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301151/*
1152 * lib/css/legacy/bw-icons.css
1153 */
1154/** general icons **/
1155
1156.wn-icon { background: url('../lib/images/icons/icons.png'); width: 16px; height: 16px; cursor: pointer; }
1157.ic-2x2_grid { background-position: 0 0; }
1158.ic-3x3_grid { background-position: 0 -36px; }
1159.ic-3x3_grid_2 { background-position: 0 -72px; }
1160.ic-air_signal { background-position: 0 -108px; }
1161.ic-align_center { background-position: 0 -144px; }
1162.ic-align_just { background-position: 0 -180px; }
1163.ic-align_left { background-position: 0 -216px; }
1164.ic-align_right { background-position: 0 -252px; }
1165.ic-app_window { background-position: 0 -288px; }
1166.ic-arrow_bottom { background-position: 0 -324px; }
1167.ic-arrow_bottom_left { background-position: 0 -360px; }
1168.ic-arrow_bottom_right { background-position: 0 -396px; }
1169.ic-arrow_l { background-position: 0 -432px; }
1170.ic-arrow_left { background-position: 0 -468px; }
1171.ic-arrow_r { background-position: 0 -504px; }
1172.ic-arrow_right { background-position: 0 -540px; }
1173.ic-arrow_top { background-position: 0 -576px; }
1174.ic-arrow_top_left { background-position: 0 -612px; }
1175.ic-arrow_top_right { background-position: 0 -648px; }
1176.ic-arrow_two_head { background-position: 0 -684px; }
1177.ic-arrow_two_head_2 { background-position: 0 -720px; }
1178.ic-attention { background-position: 0 -756px; }
1179.ic-battery { background-position: 0 -792px; }
1180.ic-bell { background-position: 0 -828px; }
1181.ic-book { background-position: 0 -864px; }
1182.ic-bookmark_1 { background-position: 0 -900px; }
1183.ic-bookmark_2 { background-position: 0 -936px; }
1184.ic-box { background-position: 0 -972px; }
1185.ic-br_down { background-position: 0 -1008px; }
1186.ic-br_next { background-position: 0 -1044px; }
1187.ic-br_prev { background-position: 0 -1080px; }
1188.ic-br_up { background-position: 0 -1116px; }
1189.ic-brackets { background-position: 0 -1152px; }
1190.ic-browser { background-position: 0 -1188px; }
1191.ic-brush { background-position: 0 -1224px; }
1192.ic-bug { background-position: 0 -1260px; }
1193.ic-burst { background-position: 0 -1296px; }
1194.ic-calc { background-position: 0 -1332px; }
1195.ic-calendar_1 { background-position: 0 -1368px; }
1196.ic-calendar_2 { background-position: 0 -1404px; }
1197.ic-cancel { background-position: 0 -1440px; }
1198.ic-case { background-position: 0 -1476px; }
1199.ic-cc { background-position: 0 -1512px; }
1200.ic-cert { background-position: 0 -1548px; }
1201.ic-chart_bar { background-position: 0 -1584px; }
1202.ic-chart_line { background-position: 0 -1620px; }
1203.ic-chart_line_2 { background-position: 0 -1656px; }
1204.ic-chart_pie { background-position: 0 -1692px; }
1205.ic-checkbox_checked { background-position: 0 -1728px; }
1206.ic-checkbox_unchecked { background-position: 0 -1764px; }
1207.ic-checkmark { background-position: 0 -1800px; }
1208.ic-clip { background-position: 0 -1836px; }
1209.ic-clipboard_copy { background-position: 0 -1872px; }
1210.ic-clipboard_cut { background-position: 0 -1908px; }
1211.ic-clipboard_past { background-position: 0 -1944px; }
1212.ic-clock { background-position: -36px 0; }
1213.ic-cloud { background-position: -36px -36px; }
1214.ic-cloud_rain { background-position: -36px -72px; }
1215.ic-cog { background-position: -36px -108px; }
1216.ic-comp { background-position: -36px -144px; }
1217.ic-compass { background-position: -36px -180px; }
1218.ic-contact_card { background-position: -36px -216px; }
1219.ic-cube { background-position: -36px -252px; }
1220.ic-cur_bp { background-position: -36px -288px; }
1221.ic-cur_dollar { background-position: -36px -324px; }
1222.ic-cur_euro { background-position: -36px -360px; }
1223.ic-cur_yen { background-position: -36px -396px; }
1224.ic-cursor_H_split { background-position: -36px -432px; }
1225.ic-cursor_V_split { background-position: -36px -468px; }
1226.ic-cursor_arrow { background-position: -36px -504px; }
1227.ic-cursor_drag_arrow { background-position: -36px -540px; }
1228.ic-cursor_drag_arrow_2 { background-position: -36px -576px; }
1229.ic-cursor_drag_hand { background-position: -36px -612px; }
1230.ic-cursor_hand { background-position: -36px -648px; }
1231.ic-db { background-position: -36px -684px; }
1232.ic-delete { background-position: -36px -720px; }
1233.ic-doc_delete { background-position: -36px -756px; }
1234.ic-doc_edit { background-position: -36px -792px; }
1235.ic-doc_empty { background-position: -36px -828px; }
1236.ic-doc_export { background-position: -36px -864px; }
1237.ic-doc_import { background-position: -36px -900px; }
1238.ic-doc_lines { background-position: -36px -936px; }
1239.ic-doc_lines_stright { background-position: -36px -972px; }
1240.ic-doc_minus { background-position: -36px -1008px; }
1241.ic-doc_new { background-position: -36px -1044px; }
1242.ic-doc_plus { background-position: -36px -1080px; }
1243.ic-document { background-position: -36px -1116px; }
1244.ic-download { background-position: -36px -1152px; }
1245.ic-emotion_sad { background-position: -36px -1188px; }
1246.ic-emotion_smile { background-position: -36px -1224px; }
1247.ic-expand { background-position: -36px -1260px; }
1248.ic-eye { background-position: -36px -1296px; }
1249.ic-eye_inv { background-position: -36px -1332px; }
1250.ic-facebook { background-position: -36px -1368px; }
1251.ic-filter { background-position: -36px -1404px; }
1252.ic-fire { background-position: -36px -1440px; }
1253.ic-flag { background-position: -36px -1476px; }
1254.ic-folder { background-position: -36px -1512px; }
1255.ic-folder_arrow { background-position: -36px -1548px; }
1256.ic-folder_delete { background-position: -36px -1584px; }
1257.ic-folder_minus { background-position: -36px -1620px; }
1258.ic-folder_open { background-position: -36px -1656px; }
1259.ic-folder_plus { background-position: -36px -1692px; }
1260.ic-font_bold { background-position: -36px -1728px; }
1261.ic-font_italic { background-position: -36px -1764px; }
1262.ic-font_size { background-position: -36px -1800px; }
1263.ic-font_strokethrough { background-position: -36px -1836px; }
1264.ic-font_underline { background-position: -36px -1872px; }
1265.ic-game_pad { background-position: -36px -1908px; }
1266.ic-globe_1 { background-position: -36px -1944px; }
1267.ic-globe_2 { background-position: -72px 0; }
1268.ic-globe_3 { background-position: -72px -36px; }
1269.ic-google { background-position: -72px -72px; }
1270.ic-hand_1 { background-position: -72px -108px; }
1271.ic-hand_2 { background-position: -72px -144px; }
1272.ic-hand_contra { background-position: -72px -180px; }
1273.ic-hand_pro { background-position: -72px -216px; }
1274.ic-headphones { background-position: -72px -252px; }
1275.ic-heart { background-position: -72px -288px; }
1276.ic-heart_empty { background-position: -72px -324px; }
1277.ic-home { background-position: -72px -360px; }
1278.ic-image_text { background-position: -72px -396px; }
1279.ic-inbox { background-position: -72px -432px; }
1280.ic-indent_decrease { background-position: -72px -468px; }
1281.ic-indent_increase { background-position: -72px -504px; }
1282.ic-info { background-position: -72px -540px; }
1283.ic-iphone { background-position: -72px -576px; }
1284.ic-key { background-position: -72px -612px; }
1285.ic-layers_1 { background-position: -72px -648px; }
1286.ic-layers_2 { background-position: -72px -684px; }
1287.ic-lightbulb { background-position: -72px -720px; }
1288.ic-lighting { background-position: -72px -756px; }
1289.ic-link { background-position: -72px -792px; }
1290.ic-list_bullets { background-position: -72px -828px; }
1291.ic-list_num { background-position: -72px -864px; }
1292.ic-magic_wand { background-position: -72px -900px; }
1293.ic-mail { background-position: -72px -936px; }
1294.ic-mail_2 { background-position: -72px -972px; }
1295.ic-mic { background-position: -72px -1008px; }
1296.ic-monitor { background-position: -72px -1044px; }
1297.ic-movie { background-position: -72px -1080px; }
1298.ic-music { background-position: -72px -1116px; }
1299.ic-net_comp { background-position: -72px -1152px; }
1300.ic-network { background-position: -72px -1188px; }
1301.ic-notepad { background-position: -72px -1224px; }
1302.ic-notepad_2 { background-position: -72px -1260px; }
1303.ic-on-off { background-position: -72px -1296px; }
1304.ic-openid { background-position: -72px -1332px; }
1305.ic-padlock_closed { background-position: -72px -1368px; }
1306.ic-padlock_open { background-position: -72px -1404px; }
1307.ic-page_layout { background-position: -72px -1440px; }
1308.ic-paragraph { background-position: -72px -1476px; }
1309.ic-pencil { background-position: -72px -1512px; }
1310.ic-phone { background-position: -72px -1548px; }
1311.ic-phone_1 { background-position: -72px -1584px; }
1312.ic-phone_2 { background-position: -72px -1620px; }
1313.ic-phone_touch { background-position: -72px -1656px; }
1314.ic-photo { background-position: -72px -1692px; }
1315.ic-picture { background-position: -72px -1728px; }
1316.ic-pin { background-position: -72px -1764px; }
1317.ic-pin_2 { background-position: -72px -1800px; }
1318.ic-pin_map { background-position: -72px -1836px; }
1319.ic-pin_map_down { background-position: -72px -1872px; }
1320.ic-pin_map_left { background-position: -72px -1908px; }
1321.ic-pin_map_right { background-position: -72px -1944px; }
1322.ic-pin_map_top { background-position: -108px 0; }
1323.ic-pin_sq_down { background-position: -108px -36px; }
1324.ic-pin_sq_left { background-position: -108px -72px; }
1325.ic-pin_sq_right { background-position: -108px -108px; }
1326.ic-pin_sq_top { background-position: -108px -144px; }
1327.ic-playback_ff { background-position: -108px -180px; }
1328.ic-playback_next { background-position: -108px -216px; }
1329.ic-playback_pause { background-position: -108px -252px; }
1330.ic-playback_play { background-position: -108px -288px; }
1331.ic-playback_prev { background-position: -108px -324px; }
1332.ic-playback_rec { background-position: -108px -360px; }
1333.ic-playback_reload { background-position: -108px -396px; }
1334.ic-playback_rew { background-position: -108px -432px; }
1335.ic-playback_stop { background-position: -108px -468px; }
1336.ic-preso { background-position: -108px -504px; }
1337.ic-print { background-position: -108px -540px; }
1338.ic-question { background-position: -108px -576px; }
1339.ic-redo { background-position: -108px -612px; }
1340.ic-rnd_br_down { background-position: -108px -648px; }
1341.ic-rnd_br_first { background-position: -108px -684px; }
1342.ic-rnd_br_last { background-position: -108px -720px; }
1343.ic-rnd_br_next { background-position: -108px -756px; }
1344.ic-rnd_br_prev { background-position: -108px -792px; }
1345.ic-rnd_br_up { background-position: -108px -828px; }
1346.ic-round { background-position: -108px -864px; }
1347.ic-round_and_up { background-position: -108px -900px; }
1348.ic-round_arrow_left { background-position: -108px -936px; }
1349.ic-round_arrow_right { background-position: -108px -972px; }
1350.ic-round_checkmark { background-position: -108px -1008px; }
1351.ic-round_delete { background-position: -108px -1044px; }
1352.ic-round_minus { background-position: -108px -1080px; }
1353.ic-round_plus { background-position: -108px -1116px; }
1354.ic-rss { background-position: -108px -1152px; }
1355.ic-rss_sq { background-position: -108px -1188px; }
1356.ic-sand { background-position: -108px -1224px; }
1357.ic-sat_dish { background-position: -108px -1260px; }
1358.ic-save { background-position: -108px -1296px; }
1359.ic-server { background-position: -108px -1332px; }
1360.ic-share { background-position: -108px -1368px; }
1361.ic-shop_cart { background-position: -108px -1404px; }
1362.ic-sound_high { background-position: -108px -1440px; }
1363.ic-sound_low { background-position: -108px -1476px; }
1364.ic-sound_mute { background-position: -108px -1512px; }
1365.ic-spechbubble { background-position: -108px -1548px; }
1366.ic-spechbubble_2 { background-position: -108px -1584px; }
1367.ic-spechbubble_sq { background-position: -108px -1620px; }
1368.ic-spechbubble_sq_line { background-position: -108px -1656px; }
1369.ic-sq_br_down { background-position: -108px -1692px; }
1370.ic-sq_br_first { background-position: -108px -1728px; }
1371.ic-sq_br_last { background-position: -108px -1764px; }
1372.ic-sq_br_next { background-position: -108px -1800px; }
1373.ic-sq_br_prev { background-position: -108px -1836px; }
1374.ic-sq_br_up { background-position: -108px -1872px; }
1375.ic-sq_down { background-position: -108px -1908px; }
1376.ic-sq_minus { background-position: -108px -1944px; }
1377.ic-sq_next { background-position: -144px 0; }
1378.ic-sq_plus { background-position: -144px -36px; }
1379.ic-sq_prev { background-position: -144px -72px; }
1380.ic-sq_up { background-position: -144px -108px; }
1381.ic-square_shape { background-position: -144px -144px; }
1382.ic-star { background-position: -144px -180px; }
1383.ic-star_fav { background-position: -144px -216px; }
1384.ic-star_fav_empty { background-position: -144px -252px; }
1385.ic-sun { background-position: -144px -288px; }
1386.ic-tag { background-position: -144px -324px; }
1387.ic-tape { background-position: -144px -360px; }
1388.ic-target { background-position: -144px -396px; }
1389.ic-text_curstor { background-position: -144px -432px; }
1390.ic-text_letter_t { background-position: -144px -468px; }
1391.ic-top_right_expand { background-position: -144px -504px; }
1392.ic-trash { background-position: -144px -540px; }
1393.ic-twitter { background-position: -144px -576px; }
1394.ic-twitter_2 { background-position: -144px -612px; }
1395.ic-undo { background-position: -144px -648px; }
1396.ic-user { background-position: -144px -684px; }
1397.ic-users { background-position: -144px -720px; }
1398.ic-wrench { background-position: -144px -756px; }
1399.ic-wrench_plus { background-position: -144px -792px; }
1400.ic-wrench_plus_2 { background-position: -144px -828px; }
1401.ic-zoom { background-position: -144px -864px; }
1402
1403
1404/*
1405 * lib/css/legacy/sidebar.css
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301406 */div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301407}
1408
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301409div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301410 font-size: 14px;
1411 font-weight: bold;
1412 color: #555;
1413 margin-bottom: 12px;
1414}
1415
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301416div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301417 margin-bottom: 11px;
1418 overflow: hidden;
1419}
1420
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301421div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301422 font-size: 12px;
1423 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301424 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301425}
1426
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301427div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301428 margin: 7px 11px 11px 11px;
1429}
1430
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301431div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301432 margin-bottom: 7px;
1433}
1434
Rushabh Mehtad0251332012-02-21 17:26:50 +05301435div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301436 font-size: 11px;
1437 color: #666;
1438}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301439/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301440 * lib/css/bootstrap/headings.css
1441 *//* heading from bootstrap */
1442
1443h1,
1444h2,
1445h3,
1446h4,
1447h5,
1448h6 {
1449 margin: 0;
1450 font-weight: bold;
1451 color: #333333;
1452 text-rendering: optimizelegibility;
1453 margin-bottom: 0.3em;
1454}
1455h1 small,
1456h2 small,
1457h3 small,
1458h4 small,
1459h5 small,
1460h6 small {
1461 font-weight: normal;
1462 color: #999999;
1463}
1464h1 {
1465 font-size: 30px;
1466 line-height: 36px;
1467}
1468h1 small {
1469 font-size: 18px;
1470}
1471h2 {
1472 font-size: 24px;
1473 line-height: 36px;
1474}
1475h2 small {
1476 font-size: 18px;
1477}
1478h3 {
1479 line-height: 27px;
1480 font-size: 18px;
1481}
1482h3 small {
1483 font-size: 14px;
1484}
1485h4, h5, h6 {
1486 line-height: 18px;
1487}
1488h4 {
1489 font-size: 14px;
1490}
1491h4 small {
1492 font-size: 12px;
1493}
1494h5 {
1495 font-size: 12px;
1496}
1497h6 {
1498 font-size: 11px;
1499 color: #999999;
1500 text-transform: uppercase;
1501}
1502/*
1503 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301504 */.close {
1505 float: right;
1506 font-size: 20px;
1507 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301508 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301509 color: #000000;
1510 text-shadow: 0 1px 0 #ffffff;
1511 opacity: 0.2;
1512 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301513}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301514.close:hover {
1515 color: #000000;
1516 text-decoration: none;
1517 opacity: 0.4;
1518 filter: alpha(opacity=40);
1519 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301520}
1521.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301522 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301523 padding: 4px 10px 4px;
1524 font-size: 13px;
1525 line-height: 18px;
1526 color: #333333;
1527 text-align: center;
1528 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1529 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301530 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1531 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1532 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1533 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1534 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1535 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301536 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301537 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301538 border: 1px solid #ccc;
1539 border-bottom-color: #bbb;
1540 -webkit-border-radius: 4px;
1541 -moz-border-radius: 4px;
1542 border-radius: 4px;
1543 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1544 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1545 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 +05301546 cursor: pointer;
1547 *margin-left: .3em;
1548}
1549.btn:first-child {
1550 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301551}
1552.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301553 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301554 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301555 background-color: #e6e6e6;
1556 background-position: 0 -15px;
1557 -webkit-transition: background-position 0.1s linear;
1558 -moz-transition: background-position 0.1s linear;
1559 -ms-transition: background-position 0.1s linear;
1560 -o-transition: background-position 0.1s linear;
1561 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301562}
1563.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301564 outline: thin dotted;
1565 outline: 5px auto -webkit-focus-ring-color;
1566 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301567}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301568.btn.active, .btn:active {
1569 background-image: none;
1570 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1571 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1572 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1573 background-color: #e6e6e6;
1574 background-color: #d9d9d9 \9;
1575 color: rgba(0, 0, 0, 0.5);
1576 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301577}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301578.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301579 cursor: default;
1580 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301581 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301582 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301583 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301584 -webkit-box-shadow: none;
1585 -moz-box-shadow: none;
1586 box-shadow: none;
1587}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301588.btn-large {
1589 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301590 font-size: 15px;
1591 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301592 -webkit-border-radius: 5px;
1593 -moz-border-radius: 5px;
1594 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301595}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301596.btn-large .icon {
1597 margin-top: 1px;
1598}
1599.btn-small {
1600 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301601 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301602 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301603}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301604.btn-small .icon {
1605 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301606}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301607.btn-primary,
1608.btn-primary:hover,
1609.btn-warning,
1610.btn-warning:hover,
1611.btn-danger,
1612.btn-danger:hover,
1613.btn-success,
1614.btn-success:hover,
1615.btn-info,
1616.btn-info:hover {
1617 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1618 color: #ffffff;
1619}
1620.btn-primary.active,
1621.btn-warning.active,
1622.btn-danger.active,
1623.btn-success.active,
1624.btn-info.active {
1625 color: rgba(255, 255, 255, 0.75);
1626}
1627.btn-primary {
1628 background-color: #006dcc;
1629 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1630 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1631 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1632 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1633 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1634 background-image: linear-gradient(top, #0088cc, #0044cc);
1635 background-repeat: repeat-x;
1636 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1637 border-color: #0044cc #0044cc #002a80;
1638 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1639 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1640}
1641.btn-primary:hover,
1642.btn-primary:active,
1643.btn-primary.active,
1644.btn-primary.disabled,
1645.btn-primary[disabled] {
1646 background-color: #0044cc;
1647}
1648.btn-primary:active, .btn-primary.active {
1649 background-color: #003399 \9;
1650}
1651.btn-warning {
1652 background-color: #faa732;
1653 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1654 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1655 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1656 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1657 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1658 background-image: linear-gradient(top, #fbb450, #f89406);
1659 background-repeat: repeat-x;
1660 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1661 border-color: #f89406 #f89406 #ad6704;
1662 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1663 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1664}
1665.btn-warning:hover,
1666.btn-warning:active,
1667.btn-warning.active,
1668.btn-warning.disabled,
1669.btn-warning[disabled] {
1670 background-color: #f89406;
1671}
1672.btn-warning:active, .btn-warning.active {
1673 background-color: #c67605 \9;
1674}
1675.btn-danger {
1676 background-color: #da4f49;
1677 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1678 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1679 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1680 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1681 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1682 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1683 background-repeat: repeat-x;
1684 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1685 border-color: #bd362f #bd362f #802420;
1686 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1687 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1688}
1689.btn-danger:hover,
1690.btn-danger:active,
1691.btn-danger.active,
1692.btn-danger.disabled,
1693.btn-danger[disabled] {
1694 background-color: #bd362f;
1695}
1696.btn-danger:active, .btn-danger.active {
1697 background-color: #942a25 \9;
1698}
1699.btn-success {
1700 background-color: #5bb75b;
1701 background-image: -moz-linear-gradient(top, #62c462, #51a351);
1702 background-image: -ms-linear-gradient(top, #62c462, #51a351);
1703 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1704 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1705 background-image: -o-linear-gradient(top, #62c462, #51a351);
1706 background-image: linear-gradient(top, #62c462, #51a351);
1707 background-repeat: repeat-x;
1708 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1709 border-color: #51a351 #51a351 #387038;
1710 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1711 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1712}
1713.btn-success:hover,
1714.btn-success:active,
1715.btn-success.active,
1716.btn-success.disabled,
1717.btn-success[disabled] {
1718 background-color: #51a351;
1719}
1720.btn-success:active, .btn-success.active {
1721 background-color: #408140 \9;
1722}
1723.btn-info {
1724 background-color: #49afcd;
1725 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1726 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1727 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1728 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1729 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1730 background-image: linear-gradient(top, #5bc0de, #2f96b4);
1731 background-repeat: repeat-x;
1732 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1733 border-color: #2f96b4 #2f96b4 #1f6377;
1734 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1735 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1736}
1737.btn-info:hover,
1738.btn-info:active,
1739.btn-info.active,
1740.btn-info.disabled,
1741.btn-info[disabled] {
1742 background-color: #2f96b4;
1743}
1744.btn-info:active, .btn-info.active {
1745 background-color: #24748c \9;
1746}
1747button.btn, input[type="submit"].btn {
1748 *padding-top: 2px;
1749 *padding-bottom: 2px;
1750}
1751button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301752 padding: 0;
1753 border: 0;
1754}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301755button.btn.large, input[type="submit"].btn.large {
1756 *padding-top: 7px;
1757 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301758}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301759button.btn.small, input[type="submit"].btn.small {
1760 *padding-top: 3px;
1761 *padding-bottom: 3px;
1762}
1763.btn-group {
1764 position: relative;
1765 *zoom: 1;
1766 *margin-left: .3em;
1767}
1768.btn-group:before, .btn-group:after {
1769 display: table;
1770 content: "";
1771}
1772.btn-group:after {
1773 clear: both;
1774}
1775.btn-group:first-child {
1776 *margin-left: 0;
1777}
1778.btn-group + .btn-group {
1779 margin-left: 5px;
1780}
1781.btn-toolbar {
1782 margin-top: 9px;
1783 margin-bottom: 9px;
1784}
1785.btn-toolbar .btn-group {
1786 display: inline-block;
1787 *display: inline;
1788 /* IE7 inline-block hack */
1789
1790 *zoom: 1;
1791}
1792.btn-group .btn {
1793 position: relative;
1794 float: left;
1795 margin-left: -1px;
1796 -webkit-border-radius: 0;
1797 -moz-border-radius: 0;
1798 border-radius: 0;
1799}
1800.btn-group .btn:first-child {
1801 margin-left: 0;
1802 -webkit-border-top-left-radius: 4px;
1803 -moz-border-radius-topleft: 4px;
1804 border-top-left-radius: 4px;
1805 -webkit-border-bottom-left-radius: 4px;
1806 -moz-border-radius-bottomleft: 4px;
1807 border-bottom-left-radius: 4px;
1808}
1809.btn-group .btn:last-child, .btn-group .dropdown-toggle {
1810 -webkit-border-top-right-radius: 4px;
1811 -moz-border-radius-topright: 4px;
1812 border-top-right-radius: 4px;
1813 -webkit-border-bottom-right-radius: 4px;
1814 -moz-border-radius-bottomright: 4px;
1815 border-bottom-right-radius: 4px;
1816}
1817.btn-group .btn.large:first-child {
1818 margin-left: 0;
1819 -webkit-border-top-left-radius: 6px;
1820 -moz-border-radius-topleft: 6px;
1821 border-top-left-radius: 6px;
1822 -webkit-border-bottom-left-radius: 6px;
1823 -moz-border-radius-bottomleft: 6px;
1824 border-bottom-left-radius: 6px;
1825}
1826.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
1827 -webkit-border-top-right-radius: 6px;
1828 -moz-border-radius-topright: 6px;
1829 border-top-right-radius: 6px;
1830 -webkit-border-bottom-right-radius: 6px;
1831 -moz-border-radius-bottomright: 6px;
1832 border-bottom-right-radius: 6px;
1833}
1834.btn-group .btn:hover,
1835.btn-group .btn:focus,
1836.btn-group .btn:active,
1837.btn-group .btn.active {
1838 z-index: 2;
1839}
1840.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
1841 outline: 0;
1842}
1843.btn-group .dropdown-toggle {
1844 padding-left: 8px;
1845 padding-right: 8px;
1846 -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);
1847 -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);
1848 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);
1849 *padding-top: 5px;
1850 *padding-bottom: 5px;
1851}
1852.btn-group.open {
1853 *z-index: 1000;
1854}
1855.btn-group.open .dropdown-menu {
1856 display: block;
1857 margin-top: 1px;
1858 -webkit-border-radius: 5px;
1859 -moz-border-radius: 5px;
1860 border-radius: 5px;
1861}
1862.btn-group.open .dropdown-toggle {
1863 background-image: none;
1864 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1865 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1866 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1867}
1868.btn .caret {
1869 margin-top: 7px;
1870 margin-left: 0;
1871}
1872.btn:hover .caret, .open.btn-group .caret {
1873 opacity: 1;
1874 filter: alpha(opacity=100);
1875}
1876.btn-primary .caret,
1877.btn-danger .caret,
1878.btn-info .caret,
1879.btn-success .caret {
1880 border-top-color: #ffffff;
1881 opacity: 0.75;
1882 filter: alpha(opacity=75);
1883}
1884.btn-small .caret {
1885 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301886}
1887/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301888 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301889 */.nav {
1890 margin-left: 0;
1891 margin-bottom: 18px;
1892 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301893}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301894.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301895 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301896}
1897.nav > li > a:hover {
1898 text-decoration: none;
1899 background-color: #eeeeee;
1900}
1901.nav-list {
1902 padding-left: 14px;
1903 padding-right: 14px;
1904 margin-bottom: 0;
1905}
1906.nav-list > li > a, .nav-list .nav-header {
1907 display: block;
1908 padding: 3px 15px;
1909 margin-left: -15px;
1910 margin-right: -15px;
1911 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1912}
1913.nav-list .nav-header {
1914 font-size: 11px;
1915 font-weight: bold;
1916 line-height: 18px;
1917 color: #999999;
1918 text-transform: uppercase;
1919}
1920.nav-list > li + .nav-header {
1921 margin-top: 9px;
1922}
1923.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301924 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301925 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
1926 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301927}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301928.nav-list [class^="icon-"] {
1929 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301930}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301931.nav-tabs, .nav-pills {
1932 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301933}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301934.nav-tabs:before,
1935.nav-pills:before,
1936.nav-tabs:after,
1937.nav-pills:after {
1938 display: table;
1939 content: "";
1940}
1941.nav-tabs:after, .nav-pills:after {
1942 clear: both;
1943}
1944.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301945 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301946}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301947.nav-tabs > li > a, .nav-pills > li > a {
1948 padding-right: 12px;
1949 padding-left: 12px;
1950 margin-right: 2px;
1951 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301952}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301953.nav-tabs {
1954 border-bottom: 1px solid #ddd;
1955}
1956.nav-tabs > li {
1957 margin-bottom: -1px;
1958}
1959.nav-tabs > li > a {
1960 padding-top: 9px;
1961 padding-bottom: 9px;
1962 border: 1px solid transparent;
1963 -webkit-border-radius: 4px 4px 0 0;
1964 -moz-border-radius: 4px 4px 0 0;
1965 border-radius: 4px 4px 0 0;
1966}
1967.nav-tabs > li > a:hover {
1968 border-color: #eeeeee #eeeeee #dddddd;
1969}
1970.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
1971 color: #555555;
1972 background-color: #ffffff;
1973 border: 1px solid #ddd;
1974 border-bottom-color: transparent;
1975 cursor: default;
1976}
1977.nav-pills > li > a {
1978 padding-top: 8px;
1979 padding-bottom: 8px;
1980 margin-top: 2px;
1981 margin-bottom: 2px;
1982 -webkit-border-radius: 5px;
1983 -moz-border-radius: 5px;
1984 border-radius: 5px;
1985}
1986.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301987 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301988 background-color: #0088cc;
1989}
1990.nav-stacked > li {
1991 float: none;
1992}
1993.nav-stacked > li > a {
1994 margin-right: 0;
1995}
1996.nav-tabs.nav-stacked {
1997 border-bottom: 0;
1998}
1999.nav-tabs.nav-stacked > li > a {
2000 border: 1px solid #ddd;
2001 -webkit-border-radius: 0;
2002 -moz-border-radius: 0;
2003 border-radius: 0;
2004}
2005.nav-tabs.nav-stacked > li:first-child > a {
2006 -webkit-border-radius: 4px 4px 0 0;
2007 -moz-border-radius: 4px 4px 0 0;
2008 border-radius: 4px 4px 0 0;
2009}
2010.nav-tabs.nav-stacked > li:last-child > a {
2011 -webkit-border-radius: 0 0 4px 4px;
2012 -moz-border-radius: 0 0 4px 4px;
2013 border-radius: 0 0 4px 4px;
2014}
2015.nav-tabs.nav-stacked > li > a:hover {
2016 border-color: #ddd;
2017 z-index: 2;
2018}
2019.nav-pills.nav-stacked > li > a {
2020 margin-bottom: 3px;
2021}
2022.nav-pills.nav-stacked > li:last-child > a {
2023 margin-bottom: 1px;
2024}
2025.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2026 margin-top: 1px;
2027 border-width: 1px;
2028}
2029.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302030 -webkit-border-radius: 4px;
2031 -moz-border-radius: 4px;
2032 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302033}
2034.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2035 border-top-color: #0088cc;
2036 margin-top: 6px;
2037}
2038.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2039 border-top-color: #005580;
2040}
2041.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2042 border-top-color: #333333;
2043}
2044.nav > .dropdown.active > a:hover {
2045 color: #000000;
2046 cursor: pointer;
2047}
2048.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2049 color: #ffffff;
2050 background-color: #999999;
2051 border-color: #999999;
2052}
2053.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2054 border-top-color: #ffffff;
2055 opacity: 1;
2056 filter: alpha(opacity=100);
2057}
2058
2059.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302060 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302061 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302062}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302063.navbar-inner {
2064 padding-left: 20px;
2065 padding-right: 20px;
2066 background-color: #2c2c2c;
2067 background-image: -moz-linear-gradient(top, #333333, #222222);
2068 background-image: -ms-linear-gradient(top, #333333, #222222);
2069 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2070 background-image: -webkit-linear-gradient(top, #333333, #222222);
2071 background-image: -o-linear-gradient(top, #333333, #222222);
2072 background-image: linear-gradient(top, #333333, #222222);
2073 background-repeat: repeat-x;
2074 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2075 -webkit-border-radius: 4px;
2076 -moz-border-radius: 4px;
2077 border-radius: 4px;
2078 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2079 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2080 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2081}
2082.btn-navbar {
2083 display: none;
2084 float: right;
2085 padding: 7px 10px;
2086 margin-left: 5px;
2087 margin-right: 5px;
2088 background-color: #2c2c2c;
2089 background-image: -moz-linear-gradient(top, #333333, #222222);
2090 background-image: -ms-linear-gradient(top, #333333, #222222);
2091 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2092 background-image: -webkit-linear-gradient(top, #333333, #222222);
2093 background-image: -o-linear-gradient(top, #333333, #222222);
2094 background-image: linear-gradient(top, #333333, #222222);
2095 background-repeat: repeat-x;
2096 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2097 border-color: #222222 #222222 #000000;
2098 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2099 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2100 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2101 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2102 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2103}
2104.btn-navbar:hover,
2105.btn-navbar:active,
2106.btn-navbar.active,
2107.btn-navbar.disabled,
2108.btn-navbar[disabled] {
2109 background-color: #222222;
2110}
2111.btn-navbar:active, .btn-navbar.active {
2112 background-color: #080808 \9;
2113}
2114.btn-navbar .icon-bar {
2115 display: block;
2116 width: 18px;
2117 height: 2px;
2118 background-color: #f5f5f5;
2119 -webkit-border-radius: 1px;
2120 -moz-border-radius: 1px;
2121 border-radius: 1px;
2122 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2123 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2124 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2125}
2126.btn-navbar .icon-bar + .icon-bar {
2127 margin-top: 3px;
2128}
2129.nav-collapse.collapse {
2130 height: auto;
2131}
2132.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302133 text-decoration: none;
2134}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302135.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302136 float: left;
2137 display: block;
2138 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302139 font-size: 20px;
2140 font-weight: 200;
2141 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302142 color: #ffffff;
2143}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302144.navbar .navbar-text {
2145 margin-bottom: 0;
2146 line-height: 40px;
2147 color: #999999;
2148}
2149.navbar .navbar-text a:hover {
2150 color: #ffffff;
2151 background-color: transparent;
2152}
2153.navbar .btn, .navbar .btn-group {
2154 margin-top: 5px;
2155}
2156.navbar .btn-group .btn {
2157 margin-top: 0;
2158}
2159.navbar-form {
2160 margin-bottom: 0;
2161 *zoom: 1;
2162}
2163.navbar-form:before, .navbar-form:after {
2164 display: table;
2165 content: "";
2166}
2167.navbar-form:after {
2168 clear: both;
2169}
2170.navbar-form input, .navbar-form select {
2171 display: inline-block;
2172 margin-top: 5px;
2173 margin-bottom: 0;
2174}
2175.navbar-form .radio, .navbar-form .checkbox {
2176 margin-top: 5px;
2177}
2178.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2179 margin-top: 3px;
2180}
2181.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302182 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302183 float: left;
2184 margin-top: 6px;
2185 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302186}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302187.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302188 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302189 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2190 font-size: 13px;
2191 font-weight: normal;
2192 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302193 color: #ffffff;
2194 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302195 background: #666;
2196 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302197 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302198 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2199 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2200 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 +05302201 -webkit-transition: none;
2202 -moz-transition: none;
2203 -ms-transition: none;
2204 -o-transition: none;
2205 transition: none;
2206}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302207.navbar-search .search-query :-moz-placeholder {
2208 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302209}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302210.navbar-search .search-query::-webkit-input-placeholder {
2211 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302212}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302213.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302214 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302215 background-color: #999999;
2216 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302217}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302218.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302219 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302220 color: #333333;
2221 text-shadow: 0 1px 0 #ffffff;
2222 background-color: #ffffff;
2223 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302224 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2225 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2226 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302227 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302228}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302229.navbar-fixed-top {
2230 position: fixed;
2231 top: 0;
2232 right: 0;
2233 left: 0;
2234 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302235}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302236.navbar-fixed-top .navbar-inner {
2237 padding-left: 0;
2238 padding-right: 0;
2239 -webkit-border-radius: 0;
2240 -moz-border-radius: 0;
2241 border-radius: 0;
2242}
2243.navbar .nav {
2244 position: relative;
2245 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302246 display: block;
2247 float: left;
2248 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302249}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302250.navbar .nav.pull-right {
2251 float: right;
2252}
2253.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302254 display: block;
2255 float: left;
2256}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302257.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302258 float: none;
2259 padding: 10px 10px 11px;
2260 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302261 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302262 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302263 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302264}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302265.navbar .nav > li > a:hover {
2266 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302267 color: #ffffff;
2268 text-decoration: none;
2269}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302270.navbar .nav .active > a, .navbar .nav .active > a:hover {
2271 color: #ffffff;
2272 text-decoration: none;
2273 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302274 background-color: rgba(0, 0, 0, 0.5);
2275}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302276.navbar .divider-vertical {
2277 height: 40px;
2278 width: 1px;
2279 margin: 0 9px;
2280 overflow: hidden;
2281 background-color: #222222;
2282 border-right: 1px solid #333333;
2283}
2284.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302285 margin-left: 10px;
2286 margin-right: 0;
2287}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302288.navbar .dropdown-menu {
2289 margin-top: 1px;
2290 -webkit-border-radius: 4px;
2291 -moz-border-radius: 4px;
2292 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302293}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302294.navbar .dropdown-menu:before {
2295 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302296 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302297 border-left: 7px solid transparent;
2298 border-right: 7px solid transparent;
2299 border-bottom: 7px solid #ccc;
2300 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302301 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302302 top: -7px;
2303 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302304}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302305.navbar .dropdown-menu:after {
2306 content: '';
2307 display: inline-block;
2308 border-left: 6px solid transparent;
2309 border-right: 6px solid transparent;
2310 border-bottom: 6px solid #ffffff;
2311 position: absolute;
2312 top: -6px;
2313 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302314}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302315.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2316 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302317}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302318.navbar .nav .active .caret {
2319 opacity: 1;
2320 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302321}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302322.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2323 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302324}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302325.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302326 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302327}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302328.navbar .nav.pull-right .dropdown-menu {
2329 left: auto;
2330 right: 0;
2331}
2332.navbar .nav.pull-right .dropdown-menu:before {
2333 left: auto;
2334 right: 12px;
2335}
2336.navbar .nav.pull-right .dropdown-menu:after {
2337 left: auto;
2338 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302339}
2340
2341/*extra size menus for recent*/
2342.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2343 width: 260px !important;
2344 max-width: 260px !important;
2345}
2346
2347/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302348.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302349 display: block;
2350 float: right;
2351 width: 20px;
2352 margin-bottom: -5px;
2353 margin-top: 10px;
2354 visibility: hidden;
2355}
2356
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302357.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302358 padding: 0px 20px;
2359}
2360/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302361 * lib/css/bootstrap/dropdown.css
2362 */.dropdown {
2363 position: relative;
2364}
2365.dropdown-toggle {
2366 *margin-bottom: -3px;
2367}
2368.dropdown-toggle:active, .open .dropdown-toggle {
2369 outline: 0;
2370}
2371.caret {
2372 display: inline-block;
2373 width: 0;
2374 height: 0;
2375 text-indent: -99999px;
2376 *text-indent: 0;
2377 vertical-align: top;
2378 border-left: 4px solid transparent;
2379 border-right: 4px solid transparent;
2380 border-top: 4px solid #000000;
2381 opacity: 0.3;
2382 filter: alpha(opacity=30);
2383 content: "\2193";
2384}
2385.dropdown .caret {
2386 margin-top: 8px;
2387 margin-left: 2px;
2388}
2389.dropdown:hover .caret, .open.dropdown .caret {
2390 opacity: 1;
2391 filter: alpha(opacity=100);
2392}
2393.dropdown-menu {
2394 position: absolute;
2395 top: 100%;
2396 left: 0;
2397 z-index: 1000;
2398 float: left;
2399 display: none;
2400 min-width: 160px;
2401 max-width: 220px;
2402 _width: 160px;
2403 padding: 4px 0;
2404 margin: 0;
2405 list-style: none;
2406 background-color: #ffffff;
2407 border-color: #ccc;
2408 border-color: rgba(0, 0, 0, 0.2);
2409 border-style: solid;
2410 border-width: 1px;
2411 -webkit-border-radius: 0 0 5px 5px;
2412 -moz-border-radius: 0 0 5px 5px;
2413 border-radius: 0 0 5px 5px;
2414 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2415 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2416 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2417 -webkit-background-clip: padding-box;
2418 -moz-background-clip: padding;
2419 background-clip: padding-box;
2420 *border-right-width: 2px;
2421 *border-bottom-width: 2px;
2422}
2423.dropdown-menu.bottom-up {
2424 top: auto;
2425 bottom: 100%;
2426 margin-bottom: 2px;
2427}
2428.dropdown-menu .divider {
2429 height: 1px;
2430 margin: 5px 1px;
2431 overflow: hidden;
2432 background-color: #e5e5e5;
2433 border-bottom: 1px solid #ffffff;
2434 *width: 100%;
2435 *margin: -5px 0 5px;
2436}
2437.dropdown-menu a {
2438 display: block;
2439 padding: 3px 15px;
2440 clear: both;
2441 font-weight: normal;
2442 line-height: 18px;
2443 color: #555555;
2444 white-space: nowrap;
2445}
2446.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2447 color: #ffffff;
2448 text-decoration: none;
2449 background-color: #0088cc;
2450}
2451.dropdown.open {
2452 *z-index: 1000;
2453}
2454.dropdown.open .dropdown-toggle {
2455 color: #ffffff;
2456 background: #ccc;
2457 background: rgba(0, 0, 0, 0.3);
2458}
2459.dropdown.open .dropdown-menu {
2460 display: block;
2461}
2462/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302463 * lib/css/bootstrap/tooltip.css
2464 */.tooltip {
2465 position: absolute;
2466 z-index: 1020;
2467 display: block;
2468 visibility: visible;
2469 padding: 5px;
2470 font-size: 11px;
2471 opacity: 0;
2472 filter: alpha(opacity=0);
2473}
2474.tooltip.in {
2475 opacity: 0.8;
2476 filter: alpha(opacity=80);
2477}
2478.tooltip.top {
2479 margin-top: -2px;
2480}
2481.tooltip.right {
2482 margin-left: 2px;
2483}
2484.tooltip.bottom {
2485 margin-top: 2px;
2486}
2487.tooltip.left {
2488 margin-left: -2px;
2489}
2490.tooltip.top .tooltip-arrow {
2491 bottom: 0;
2492 left: 50%;
2493 margin-left: -5px;
2494 border-left: 5px solid transparent;
2495 border-right: 5px solid transparent;
2496 border-top: 5px solid #000000;
2497}
2498.tooltip.left .tooltip-arrow {
2499 top: 50%;
2500 right: 0;
2501 margin-top: -5px;
2502 border-top: 5px solid transparent;
2503 border-bottom: 5px solid transparent;
2504 border-left: 5px solid #000000;
2505}
2506.tooltip.bottom .tooltip-arrow {
2507 top: 0;
2508 left: 50%;
2509 margin-left: -5px;
2510 border-left: 5px solid transparent;
2511 border-right: 5px solid transparent;
2512 border-bottom: 5px solid #000000;
2513}
2514.tooltip.right .tooltip-arrow {
2515 top: 50%;
2516 left: 0;
2517 margin-top: -5px;
2518 border-top: 5px solid transparent;
2519 border-bottom: 5px solid transparent;
2520 border-right: 5px solid #000000;
2521}
2522.tooltip-inner {
2523 max-width: 200px;
2524 padding: 3px 8px;
2525 color: #ffffff;
2526 text-align: center;
2527 text-decoration: none;
2528 background-color: #000000;
2529 -webkit-border-radius: 4px;
2530 -moz-border-radius: 4px;
2531 border-radius: 4px;
2532}
2533.tooltip-arrow {
2534 position: absolute;
2535 width: 0;
2536 height: 0;
2537}
2538.popover {
2539 position: absolute;
2540 top: 0;
2541 left: 0;
2542 z-index: 1010;
2543 display: none;
2544 padding: 5px;
2545}
2546.popover.top {
2547 margin-top: -5px;
2548}
2549.popover.right {
2550 margin-left: 5px;
2551}
2552.popover.bottom {
2553 margin-top: 5px;
2554}
2555.popover.left {
2556 margin-left: -5px;
2557}
2558.popover.top .arrow {
2559 bottom: 0;
2560 left: 50%;
2561 margin-left: -5px;
2562 border-left: 5px solid transparent;
2563 border-right: 5px solid transparent;
2564 border-top: 5px solid #000000;
2565}
2566.popover.right .arrow {
2567 top: 50%;
2568 left: 0;
2569 margin-top: -5px;
2570 border-top: 5px solid transparent;
2571 border-bottom: 5px solid transparent;
2572 border-right: 5px solid #000000;
2573}
2574.popover.bottom .arrow {
2575 top: 0;
2576 left: 50%;
2577 margin-left: -5px;
2578 border-left: 5px solid transparent;
2579 border-right: 5px solid transparent;
2580 border-bottom: 5px solid #000000;
2581}
2582.popover.left .arrow {
2583 top: 50%;
2584 right: 0;
2585 margin-top: -5px;
2586 border-top: 5px solid transparent;
2587 border-bottom: 5px solid transparent;
2588 border-left: 5px solid #000000;
2589}
2590.popover .arrow {
2591 position: absolute;
2592 width: 0;
2593 height: 0;
2594}
2595.popover-inner {
2596 padding: 3px;
2597 width: 280px;
2598 overflow: hidden;
2599 background: #000000;
2600 background: rgba(0, 0, 0, 0.8);
2601 -webkit-border-radius: 6px;
2602 -moz-border-radius: 6px;
2603 border-radius: 6px;
2604 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2605 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2606 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2607}
2608.popover-title {
2609 padding: 9px 15px;
2610 line-height: 1;
2611 background-color: #f5f5f5;
2612 border-bottom: 1px solid #eee;
2613 -webkit-border-radius: 3px 3px 0 0;
2614 -moz-border-radius: 3px 3px 0 0;
2615 border-radius: 3px 3px 0 0;
2616}
2617.popover-content {
2618 padding: 14px;
2619 background-color: #ffffff;
2620 -webkit-border-radius: 0 0 3px 3px;
2621 -moz-border-radius: 0 0 3px 3px;
2622 border-radius: 0 0 3px 3px;
2623 -webkit-background-clip: padding-box;
2624 -moz-background-clip: padding-box;
2625 background-clip: padding-box;
2626}
2627.popover-content p, .popover-content ul, .popover-content ol {
2628 margin-bottom: 0;
2629}
2630/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302631 * lib/css/bootstrap/label.css
2632 */.label {
2633 padding: 2px 4px 3px;
2634 font-size: 11.049999999999999px;
2635 font-weight: bold;
2636 color: #ffffff;
2637 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2638 background-color: #999999;
2639 -webkit-border-radius: 3px;
2640 -moz-border-radius: 3px;
2641 border-radius: 3px;
2642}
2643.label:hover {
2644 color: #ffffff;
2645 text-decoration: none;
2646}
2647.label-important {
2648 background-color: #b94a48;
2649}
2650.label-important:hover {
2651 background-color: #953b39;
2652}
2653.label-warning {
2654 background-color: #f89406;
2655}
2656.label-warning:hover {
2657 background-color: #c67605;
2658}
2659.label-success {
2660 background-color: #468847;
2661}
2662.label-success:hover {
2663 background-color: #356635;
2664}
2665.label-info {
2666 background-color: #3a87ad;
2667}
2668.label-info:hover {
2669 background-color: #2d6987;
2670}
2671/*
2672 * lib/css/bootstrap/icons.css
2673 */[class^="icon-"], [class*=" icon-"] {
2674 display: inline-block;
2675 width: 14px;
2676 height: 14px;
2677 line-height: 14px;
2678 vertical-align: text-top;
2679 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2680 background-position: 14px 14px;
2681 background-repeat: no-repeat;
2682 *margin-right: .3em;
2683}
2684[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
2685 *margin-left: 0;
2686}
2687.icon-white {
2688 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
2689}
2690.icon-glass {
2691 background-position: 0 0;
2692}
2693.icon-music {
2694 background-position: -24px 0;
2695}
2696.icon-search {
2697 background-position: -48px 0;
2698}
2699.icon-envelope {
2700 background-position: -72px 0;
2701}
2702.icon-heart {
2703 background-position: -96px 0;
2704}
2705.icon-star {
2706 background-position: -120px 0;
2707}
2708.icon-star-empty {
2709 background-position: -144px 0;
2710}
2711.icon-user {
2712 background-position: -168px 0;
2713}
2714.icon-film {
2715 background-position: -192px 0;
2716}
2717.icon-th-large {
2718 background-position: -216px 0;
2719}
2720.icon-th {
2721 background-position: -240px 0;
2722}
2723.icon-th-list {
2724 background-position: -264px 0;
2725}
2726.icon-ok {
2727 background-position: -288px 0;
2728}
2729.icon-remove {
2730 background-position: -312px 0;
2731}
2732.icon-zoom-in {
2733 background-position: -336px 0;
2734}
2735.icon-zoom-out {
2736 background-position: -360px 0;
2737}
2738.icon-off {
2739 background-position: -384px 0;
2740}
2741.icon-signal {
2742 background-position: -408px 0;
2743}
2744.icon-cog {
2745 background-position: -432px 0;
2746}
2747.icon-trash {
2748 background-position: -456px 0;
2749}
2750.icon-home {
2751 background-position: 0 -24px;
2752}
2753.icon-file {
2754 background-position: -24px -24px;
2755}
2756.icon-time {
2757 background-position: -48px -24px;
2758}
2759.icon-road {
2760 background-position: -72px -24px;
2761}
2762.icon-download-alt {
2763 background-position: -96px -24px;
2764}
2765.icon-download {
2766 background-position: -120px -24px;
2767}
2768.icon-upload {
2769 background-position: -144px -24px;
2770}
2771.icon-inbox {
2772 background-position: -168px -24px;
2773}
2774.icon-play-circle {
2775 background-position: -192px -24px;
2776}
2777.icon-repeat {
2778 background-position: -216px -24px;
2779}
2780.icon-refresh {
2781 background-position: -240px -24px;
2782}
2783.icon-list-alt {
2784 background-position: -264px -24px;
2785}
2786.icon-lock {
2787 background-position: -287px -24px;
2788}
2789.icon-flag {
2790 background-position: -312px -24px;
2791}
2792.icon-headphones {
2793 background-position: -336px -24px;
2794}
2795.icon-volume-off {
2796 background-position: -360px -24px;
2797}
2798.icon-volume-down {
2799 background-position: -384px -24px;
2800}
2801.icon-volume-up {
2802 background-position: -408px -24px;
2803}
2804.icon-qrcode {
2805 background-position: -432px -24px;
2806}
2807.icon-barcode {
2808 background-position: -456px -24px;
2809}
2810.icon-tag {
2811 background-position: 0 -48px;
2812}
2813.icon-tags {
2814 background-position: -25px -48px;
2815}
2816.icon-book {
2817 background-position: -48px -48px;
2818}
2819.icon-bookmark {
2820 background-position: -72px -48px;
2821}
2822.icon-print {
2823 background-position: -96px -48px;
2824}
2825.icon-camera {
2826 background-position: -120px -48px;
2827}
2828.icon-font {
2829 background-position: -144px -48px;
2830}
2831.icon-bold {
2832 background-position: -167px -48px;
2833}
2834.icon-italic {
2835 background-position: -192px -48px;
2836}
2837.icon-text-height {
2838 background-position: -216px -48px;
2839}
2840.icon-text-width {
2841 background-position: -240px -48px;
2842}
2843.icon-align-left {
2844 background-position: -264px -48px;
2845}
2846.icon-align-center {
2847 background-position: -288px -48px;
2848}
2849.icon-align-right {
2850 background-position: -312px -48px;
2851}
2852.icon-align-justify {
2853 background-position: -336px -48px;
2854}
2855.icon-list {
2856 background-position: -360px -48px;
2857}
2858.icon-indent-left {
2859 background-position: -384px -48px;
2860}
2861.icon-indent-right {
2862 background-position: -408px -48px;
2863}
2864.icon-facetime-video {
2865 background-position: -432px -48px;
2866}
2867.icon-picture {
2868 background-position: -456px -48px;
2869}
2870.icon-pencil {
2871 background-position: 0 -72px;
2872}
2873.icon-map-marker {
2874 background-position: -24px -72px;
2875}
2876.icon-adjust {
2877 background-position: -48px -72px;
2878}
2879.icon-tint {
2880 background-position: -72px -72px;
2881}
2882.icon-edit {
2883 background-position: -96px -72px;
2884}
2885.icon-share {
2886 background-position: -120px -72px;
2887}
2888.icon-check {
2889 background-position: -144px -72px;
2890}
2891.icon-move {
2892 background-position: -168px -72px;
2893}
2894.icon-step-backward {
2895 background-position: -192px -72px;
2896}
2897.icon-fast-backward {
2898 background-position: -216px -72px;
2899}
2900.icon-backward {
2901 background-position: -240px -72px;
2902}
2903.icon-play {
2904 background-position: -264px -72px;
2905}
2906.icon-pause {
2907 background-position: -288px -72px;
2908}
2909.icon-stop {
2910 background-position: -312px -72px;
2911}
2912.icon-forward {
2913 background-position: -336px -72px;
2914}
2915.icon-fast-forward {
2916 background-position: -360px -72px;
2917}
2918.icon-step-forward {
2919 background-position: -384px -72px;
2920}
2921.icon-eject {
2922 background-position: -408px -72px;
2923}
2924.icon-chevron-left {
2925 background-position: -432px -72px;
2926}
2927.icon-chevron-right {
2928 background-position: -456px -72px;
2929}
2930.icon-plus-sign {
2931 background-position: 0 -96px;
2932}
2933.icon-minus-sign {
2934 background-position: -24px -96px;
2935}
2936.icon-remove-sign {
2937 background-position: -48px -96px;
2938}
2939.icon-ok-sign {
2940 background-position: -72px -96px;
2941}
2942.icon-question-sign {
2943 background-position: -96px -96px;
2944}
2945.icon-info-sign {
2946 background-position: -120px -96px;
2947}
2948.icon-screenshot {
2949 background-position: -144px -96px;
2950}
2951.icon-remove-circle {
2952 background-position: -168px -96px;
2953}
2954.icon-ok-circle {
2955 background-position: -192px -96px;
2956}
2957.icon-ban-circle {
2958 background-position: -216px -96px;
2959}
2960.icon-arrow-left {
2961 background-position: -240px -96px;
2962}
2963.icon-arrow-right {
2964 background-position: -264px -96px;
2965}
2966.icon-arrow-up {
2967 background-position: -289px -96px;
2968}
2969.icon-arrow-down {
2970 background-position: -312px -96px;
2971}
2972.icon-share-alt {
2973 background-position: -336px -96px;
2974}
2975.icon-resize-full {
2976 background-position: -360px -96px;
2977}
2978.icon-resize-small {
2979 background-position: -384px -96px;
2980}
2981.icon-plus {
2982 background-position: -408px -96px;
2983}
2984.icon-minus {
2985 background-position: -433px -96px;
2986}
2987.icon-asterisk {
2988 background-position: -456px -96px;
2989}
2990.icon-exclamation-sign {
2991 background-position: 0 -120px;
2992}
2993.icon-gift {
2994 background-position: -24px -120px;
2995}
2996.icon-leaf {
2997 background-position: -48px -120px;
2998}
2999.icon-fire {
3000 background-position: -72px -120px;
3001}
3002.icon-eye-open {
3003 background-position: -96px -120px;
3004}
3005.icon-eye-close {
3006 background-position: -120px -120px;
3007}
3008.icon-warning-sign {
3009 background-position: -144px -120px;
3010}
3011.icon-plane {
3012 background-position: -168px -120px;
3013}
3014.icon-calendar {
3015 background-position: -192px -120px;
3016}
3017.icon-random {
3018 background-position: -216px -120px;
3019}
3020.icon-comment {
3021 background-position: -240px -120px;
3022}
3023.icon-magnet {
3024 background-position: -264px -120px;
3025}
3026.icon-chevron-up {
3027 background-position: -288px -120px;
3028}
3029.icon-chevron-down {
3030 background-position: -313px -119px;
3031}
3032.icon-retweet {
3033 background-position: -336px -120px;
3034}
3035.icon-shopping-cart {
3036 background-position: -360px -120px;
3037}
3038.icon-folder-close {
3039 background-position: -384px -120px;
3040}
3041.icon-folder-open {
3042 background-position: -408px -120px;
3043}
3044.icon-resize-vertical {
3045 background-position: -432px -119px;
3046}
3047.icon-resize-horizontal {
3048 background-position: -456px -118px;
3049}
3050/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303051 * erpnext/startup/startup.css
3052 */h1, h2, h3, h4, h5 {
3053 font-family: Tahoma, Arial, Verdana, sans-serif;
3054 font-weight: bold;
3055}
3056
3057body {
3058 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
3059 font-size: 12px;
3060}
3061
3062span, div, td, input, textarea, button, select {
3063 font-family: inherit;
3064}
3065
3066body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303067}
3068
3069.erpnext-footer {
3070 margin: 3px auto;
3071 color: #888;
3072 text-align: center;
3073}
3074
3075.erpnext-footer a, .erpnext-footer a:hover, .erpnext-footer a:visited {
3076 color: #666;
3077}
3078
3079.module-icons {
3080 background: url(../images/module-icons.png) no-repeat top left;
3081 width:16px;
3082 height:16px;
3083}
3084
3085.module-icons-accounts{ background-position: 0 0; }
3086.module-icons-analysis{ background-position: 0 -66px; }
3087.module-icons-buying{ background-position: 0 -132px; }
3088.module-icons-home{ background-position: 0 -198px; }
3089.module-icons-hr{ background-position: 0 -264px; }
3090.module-icons-people{ background-position: 0 -330px; }
3091.module-icons-production{ background-position: 0 -396px; }
3092.module-icons-projects{ background-position: 0 -462px; }
3093.module-icons-selling{ background-position: 0 -528px; }
3094.module-icons-setup{ background-position: 0 -594px; }
3095.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05303096.module-icons-support{ background-position: 0 -726px; }
3097
3098.topbar-new-comments {
3099 margin: -3px 0px;
3100 padding: 2px;
3101 font-size: 14px;
3102 color: #fff;
3103 background-color: #B00D07;
3104 min-width: 20px;
3105 text-align: center;
3106 display: inline-block;
3107 border-radius: 2px;
3108}