blob: 53b33d2801c2fb73c8814ba479d433bdbc91756c [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 Mehtaafaac602012-02-14 11:44:13 +0530171 -moz-box-shadow: 1px 1px 6px #AAA;
172 -webkit-box-shadow: 1px 1px 6px #AAA;
173 box-shadow: 1px 1px 6px #AAA;
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
215/*
216 * lib/css/legacy/menus.css
217 */
218/******** Menus - menu.js ************/
219
220ul.menu_toolbar {
221 z-index: 30;
222 padding: 0px;
223 margin: 0px;
224 margin-top: 1px;
225}
226
227ul.menu_toolbar li {
228 list-style: none;
229 margin: 0px;
230 float: left;
231}
232
233.top_menu {
234 margin: 0px;
235 padding: 4px;
236 cursor: pointer;
237 color: #FFF;
238 margin-right: 8px;
239}
240
241.top_menu_mo {
242 background-color: #000;
243
244 -moz-border-radius: 5px;
245 -webkit-border-radius: 5px;
246}
247
248div.menu_toolbar_dropdown {
249 position: absolute;
250 margin-top: 4px;
251 margin-left: 8px;
252 width: 140px;
253 background-color: #FFF;
254 color: #000;
255 display: none;
256 border: 2px solid #333;
257 z-index: 31;
258 overflow-y: auto;
259 overflow-x: hidden;
260}
261
262div.dd_item {
263 cursor: pointer;
264 padding: 4px;
265 background-color: #FFF;
266}
267div.dd_item_mo { background-color: #FE8; }
268/*
269 * lib/css/legacy/messages.css
270 */
271/* FLOATING MESSAGE */
272
273.btn-img { cursor: pointer; }
274
275div.fetching { color: #888; text-align:right; }
276
277div.notice {
278 postion: absolute;
279 background-color: #000;
280 -moz-border-radius: 5px; -webkit-border-radius: 5px;
281 opacity: 0.6;
282 right: 0;
283 top: 0;
284 margin-top: 8px;
285 z-index: -1;
286 padding: 8px;
287}
288
289/** help **/
290
291.info-box {
292 background-color: #F8F8F8;
293 border: 1px solid #CCCCCC;
294 border-radius: 3px 3px 3px 3px;
295 line-height: 1.6em;
296 overflow: auto;
297 padding: 6px 10px;
298 margin-bottom: 9px;
299}
300
301.help_box, .help-box {
302 background-color:#FFC;
303 font-size: 13px;
304 color: #864;
305 padding: 7px;
306 margin: 11px 0px;
307 border: 1px solid #EEB;
308}
309
310.help_box_big {
311 background-color:#FFC;
312 color: #864;
313 padding: 7px;
314 margin: 7px 0px;
315 border: 1px solid #EEB;
316 text-align: center;
317 font-size: 14px;
318}
319/*
320 * lib/css/legacy/forms.css
321 *//* FORMS */
322
323
324div.frm_print_wrapper {
325 background-color:#FFF;
326 border:1px solid #444;
327 padding: 40px;
328
329 box-shadow:1px 1px 8px #229;
330 -moz-box-shadow: 1px 1px 8px #229;
331 -webkit-box-shadow: 1px 1px 8px #229;
332}
333
334div.page_break {
335 margin: 24px 0px;
336 border-top: 1px dashed #888;
337}
338
339div.grid_tbarlinks {
340 border-bottom: 0px;
341 background-color: #CCC;
342 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530343 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530344 float: right;
345
346 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
347 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
348}
349
350
351div.frm_tip_box {
352 margin: 0px;
353 padding: 8px;
354 background-color: #FFC;
355 display: none;
356 font-size: 11px;
357 border: 1px solid #FFB;
358}
359
360div.frm_tip_box table {
361 border-collapse: collapse;
362 vertical-align: top;
363}
364
365td.frm_tray_area {
366 width: 122px;
367}
368
369div.dialog_frm {
370 position: relative;
371 margin: 10px;
372}
373
374
375
376/*------------------*/
377
378.top_cell {
379 height: 50px;
380}
381
382div.attach_area {
383 padding: 8px;
384 margin: 8px;
385 background-color: #EEE;
386}
387
388div.attach_area table {
389 width: 100%;
390}
391
392.tablabel_normal {
393 margin: 0 4px 0 0;
394 padding: 3px 5px;
395 line-height: 1.3em;
396 display: inline;
397 cursor: pointer;
398}
399
400.tablabel_selected {
401 margin: 0 4px 0 0;
402 padding: 3px 5px;
403 line-height: 1.3em;
404 font-weight: bold;
405 display: inline;
406 cursor: pointer;
407 color: #000;
408}
409
410.scrollhead_wrapper {
411 position: absolute;
412 z-index: 1;
413 height: 30px;
414}
415
416.treeimg {
417 cursor: pointer;
418 margin-right: 3px;
419}
420
421
422.sectionCell {
423 padding: 5px;
424 vertical-align: top;
425}
426
427.code_area {
428 width: 80%;
429 margin: 8px;
430 padding: 4px;
431 background-color: #F8F8F8;
432 border: 1px solid #CCC;
433 overflow-x: auto;
434}
435
436.code_text {
437 width: 100%;
438 height: 360px;
439 margin-top: 3px;
440 font-family: Courier, Fixed;
441 font-size: 12px;
442}
443
444div.time_field select{
445 display: inline;
446 margin: 2px;
447 width: 45px;
448}
449
450/* Documents */
451
452.frm_field_table {
453 width: 100%;
454 border-collapse: collapse;
455}
456
457.datalabelcell {
458 padding: 2px 0px;
459 width: 160px;
460 vertical-align: top;
461}
462.datainputcell { padding: 2px 0px; }
463
464
465.field_description, .help {
466 margin: 3px 0px 11px 0px;
467 color: #888;
468 font-style: italic;
469}
470
471.field_description_top {
472 margin-bottom: 3px;
473}
474
475.field_label {
476 font-size:11px;
477}
478.input_area input, select, textarea {
479 font-size: 14px;
480 padding: 2px;
481}
482
483.input_area input {
484 width: 80%;
485 margin: 0px;
486}
487.input_area select {
488 width: 80%;
489}
490.input_area textarea {
491 width: 90%;
492}
493
494.disp_area {
495 width: 80%;
496 padding: 2px 0px;
497 font-size: 12px;
498}
499.disp_area_no_val {
500 height: 14px;
501}
502
503.no_img {
504 padding: 40px;
505 width: 100px;
506 height: 20px;
507 color: #888;
508 text-align: center;
509 border: 1px solid #AAA;
510}
511
512.input-mandatory {
513 font-size: 14px !important;
514 font-weight: bold;
515}
516
517.field-to-update {
518 background-color:#FEE;
519}
520
521/* sidebar */
522
523div.sidebar-comment-wrapper input {
524 width: 50%;
525}
526div.sidebar-comment-message {
527 margin-top: 8px;
528 font-size: 11px;
529 color: #777;
530}
531
532div.sidebar-comment-text {
533 font-size: 12px;
534 font-weight: bold;
535 margin-top: 8px;
536 color: #444;
537}
538div.sidebar-comment-info {
539 font-size: 10px;
540 color: #777;
541}
542/*
543 * lib/css/legacy/grid.css
544 */
545
546/* Grid */
547
548
549/* --- Simple --- */
550.grid_wrapper_simple {
551 width: 100%;
552 margin-bottom: 8px;
553 border: 1px solid #AA9;
554}
555
556.grid_head_wrapper_simple {
557 padding: 0px;
558 border-bottom: 2px solid #AAA;
559}
560
561.grid_head_wrapper_simple td {
562 border-right: 1px solid #AA9;
563}
564
565.grid_head_wrapper_simple td div {
566 padding: 2px;
567}
568
569.grid_tab_wrapper_simple {
570}
571
572.grid_cell_simple {
573 padding: 2px;
574 background-color: #fff;
575 border-right: 1px solid #AA9;
576}
577
578
579/* --- Normal --- */
580.grid_wrapper {
581 position: relative;
582 overflow: auto;
583 border: 1px solid #AAA;
584 width: 100%;
585 margin-bottom: 8px;
586 background-color: #fff;
587}
588
589.grid_tab_wrapper {
590 position: absolute;
591 top: 40px;
592 border-bottom: 1px solid #DDD;
593}
594
595.grid_table, .grid_head_table {
596 table-layout: fixed;
597 border-collapse: collapse;
598 /*width: 100%;*/
599}
600
601.grid_cell {
602 border-right: 1px solid #ddd;
603 padding: 0px;
604 background-color: #fff;
605}
606
607.grid_head_wrapper {
608 position: absolute;
609 z-index: 1;
610 height: 40px;
611 padding: 0px;
612 overflow: hidden;
613 /*background-color: #fff;*/
614}
615
616.grid_head_table td {
617 background-color: #EEE;
618 border-right: 1px solid #AAA;
619 border-bottom: 1px solid #AAA;
620 height: 40px;
621 padding: 0px;
622}
623
624.grid_head_table td div {
625 color: #222;
626 font-weight: bold;
627 overflow: hidden;
628 padding: 2px 0px;
629 text-align: center;
630}
631
632.grid_selector {
633 padding: 1px;
634 border-right: 1px solid #DDD;
635 width: 20px;
636 background-color: #fff;
637}
638
639.grid_cell_div {
640 padding: 2px;
641 cursor: pointer;
642 overflow: hidden;
643 border: 2px solid #FFF;
644}
645
646.grid_cell_div_selected {
647 border: 2px solid #88f;
648}
649
650.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
651 margin: 0px;
652 border: 0px;
653 width: 100%;
654 margin: 0px;
655 }
656
657.grid_cell_div textarea {
658 border: 3px solid #abf;
659 height:200px;
660 width: 300px;
661 z-index: 10;
662 position:absolute;
663}
664
665.gridDivSelected option { border: 0px; }
666/*
667 * lib/css/legacy/listing.css
668 *//* listing 2.0 */
669
670div.listing-more {
671 margin: 7px 0px 17px 0px;
672 text-align: center;
673 display: none;
674}
675
676div.listing-toolbar {
677 margin: 7px 0px;
678}
679
680/* SRS */
681
682table.srs_result_tab {
683 border: 2px solid #AAA;
684 border-collapse: collapse;
685}
686
687/* firefox bug fix for disappering borders */
688table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
689 position: static;
690}
691
692table.srs_result_tab td {
693 padding: 3px 2px;
694 position: static;
695}
696
697div.srs_body_area {
698}
699
700div.srs_results_area {
701}
702
703div.srs_filter_wrapper {
704 border: 1px solid #CCF;
705
706 background-color: #EEF;
707 margin:0px 0px 8px 0px;
708
709 -moz-border-radius: 5px;
710 -webkit-border-radius: 5px;
711 border-radius: 5px;
712}
713
714div.srs_filter_area {
715 padding: 8px;
716}
717
718div.srs_filter_area td {
719 vertical-align: middle;
720}
721
722
723
724
725/*
726 * lib/css/legacy/report.css
727 */
728/* Reports */
729
730div.report_grid_area {
731 position: relative;
732 padding: 8px;
733}
734
735
736div.report_tab {
737 border: 1px solid #AAA;
738 position: relative;
739 overflow: auto;
740}
741
742div.report_no_data {
743 padding: 8px;
744 background-color: #EEE;
745 border: 1px solid #DDD;
746 position: absolute;
747 margin-left: 40%;
748 margin-top: 50px;
749 display: none;
750}
751
752div.report_htitle {
753 float: left;
754 padding: 2px;
755 font-size: 14px;
756 font-weight: bold;
757 margin-left: 4px;
758 color: #665;
759 /*font-weight: bold;*/
760}
761
762div.report_tbar {
763 background-color: #EEF;
764 border: 1px solid #CCF;
765 border-bottom: 0px;
766 height: 28px;
767}
768
769div.report_tbar table{
770 width: 100%;
771}
772div.report_tbar table td {
773
774}
775div.report_tbar table td div {
776 position: relative;
777}
778div.report_tbar button, div.report_tbar select, div.report_tbar img {
779 font-size: 11px;
780 margin: 0px;
781}
782
783div.report_head_wrapper {
784 position: absolute;
785 height: 24px;
786 top: 0px;
787 z-index: 1;
788}
789
790div.report_tab_wrapper {
791 position: absolute;
792 border-bottom: 1px solid #AAA;
793 border-top: 1px solid #AAA;
794}
795
796div.report_tab_wrapper table, div.report_head_wrapper table {
797 table-layout: fixed;
798 border-collapse: collapse;
799 /*width: 100%;*/
800}
801
802div.report_tab_wrapper table td, div.report_head_wrapper table td {
803 border-left: 1px solid #AAA;
804 border-right: 1px solid #AAA;
805 border-bottom: 1px solid #AAA;
806 overflow: hidden;
807 padding: 0px;
808}
809
810div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
811 padding: 3px;
812 overflow: hidden;
813}
814
815.report_head_cell {
816 background-color: #EEE;
817 border-bottom: 1px solid #AA9;
818 text-align: center;
819 font-weight: bold;
820}
821.report_head_cell div {
822 color:#222;
823 height: 18px;
824}
825
826
827/* FINDER */
828
829div.finder_wrapper {
830}
831
832div.finder_body_area {
833 margin: 16px;
834}
835
836div.finder_body {
837 display: none;
838}
839
840div.finder_advanced_area table {
841 width: 80%;
842}
843
844div.finder_advanced_area textarea {
845 width: 80%;
846}
847
848div.finder_filter_area {
849 position: relative;
850}
851
852div.filter_head {
853 font-size: 14px;
854 margin-bottom: 2px;
855}
856div.filter_dt_head {
857 font-size: 14px;
858 font-weight: bold;
859 margin-bottom: 2px;
860}
861table.filter_tab {
862 width: 96%;
863 border-collapse: collapse;
864}
865
866table.filter_tab td {
867 width: 50%;
868}
869
870div.finder_picker_area {
871
872}
873div.builder_field {
874 margin: 0px;
875}
876div.builder_dt_head {
877 font-size: 14px;
878 font-weight: bold;
879 margin-bottom: 2px;
880}
881
882div.builder_field table {
883 width: 90%;
884 border-collapse: collapse;
885}
886
887div.builder_label {
888 height: 20px;
889}
890
891div.builder_head {
892 font-size: 16px;
893 font-weight: bold;
894 color: #AB6;
895}
896
897table.builder_tab {
898 width: 96%;
899 border-collapse: collapse;
900}
901
902table.builder_tab td {
903 width: 33%;
904 padding: 2px;
905}
906/*
907 * lib/css/legacy/calendar.css
908 *//**** CALENDAR ****/
909
910.caldiv {
911 position:absolute;
912 visibility:hidden;
913 background-color:white;
914 width: 144px;
915 z-index: 301; /* always on top(?) */
916}
917
918
919
920div.cal_wrapper { }
921div.cal_body {
922 margin: 16px;
923 background-color: #DDD;
924 position: relative;
925 border-radius: 5px;
926 -moz-border-radius: 5px;
927 -webkit-border-radius: 5px;
928}
929
930div.cal_head {
931 margin: 16px;
932 margin-bottom: 0px;
933}
934div.cal_head div {
935 font-size: 18px;
936 color: #666;
937 padding-top: 8px;
938}
939
940div.cal_view_body {
941 margin: 16px;
942}
943
944div.cal_view_body_plain {
945 margin: 16px;
946}
947
948div.cal_month_head {
949}
950
951div.cal_month_body {
952 border-top: 1px solid #888;
953}
954
955.cal_month_headtable {
956 /*table-layout:fixed;*/
957 width: 100%;
958}
959
960.cal_month_name {
961 width: 100%;
962 color: #888;
963 font-size: 14px;
964 font-weight: bold;
965 text-align: center;
966 padding: 4px;
967}
968
969.cal_month_headtable tr td{
970 font-size: 12px;
971 font-weight: bold;
972 text-align: center;
973 padding: 4px;
974}
975
976table.cal_month_table {
977 border-collapse: collapse;
978 /*table-layout:fixed;*/
979 height: 100%;
980 width: 100%;
981}
982
983table.cal_month_table td {
984 width: 14.29%;
985 height: 20%;
986 /*overflow:hidden;*/
987 padding:0px;
988}
989
990div.cal_month_date {
991 width:100%;
992 height:25%;
993 font-size: 10px;
994 overflow:hidden;
995 /*background-color: #EEF;*/
996}
997
998div.cal_month_date_holiday {
999 /*background-color: #FFF;*/
1000}
1001
1002div.cal_month_unit {
1003 width:100%;
1004 height:75%;
1005 overflow:hidden;
1006 cursor:pointer;
1007 /*background-color:#FFF;*/
1008}
1009
1010div.cal_vu_disabled {
1011 background-color:#FFF;
1012 cursor:default;
1013}
1014
1015table.cal_day_table {
1016 border-collapse: collapse;
1017 width: 100%;
1018}
1019
1020table.cal_day_table td {
1021}
1022
1023div.cal_day_body {
1024 width: 100%;
1025 height: 80%;
1026 overflow-y: auto;
1027 overflow-x: hidden;
1028 border-top: 1px solid #AAA;
1029}
1030
1031div.cal_day_unit{
1032 width:100%;
1033 cursor:pointer;
1034}
1035
1036table.cal_week_table {
1037 border-collapse: collapse;
1038 width: 100%;
1039}
1040
1041table.cal_week_table td {
1042 width: 12.5%;
1043}
1044
1045div.cal_week_body {
1046 width: 100%;
1047 height: 80%;
1048 overflow-y: auto;
1049 overflow-x: hidden;
1050 border-top: 1px solid #888;
1051}
1052
1053div.cal_week_unit{
1054 width: 100%;
1055 cursor:pointer;
1056}
1057
1058div.cal_event {
1059 width: 100%;
1060 height: 12px;
1061 overflow: hidden;
1062 font-size: 11px;
1063 color: #00B;
1064 margin-bottom: 2px;
1065 text-decoration: underline;
1066}
1067
1068div.cal_event_Public {
1069 color: GREEN;
1070}
1071
1072div.cal_event_Private {
1073 color: BLUE;
1074}
1075
1076div.cal_event_hover {
1077 text-decoration: underline;
1078}
1079
1080/*
1081 * lib/css/legacy/autosuggest.css
1082 *//*
1083================================================
1084autosuggest, inquisitor style
1085================================================
1086*/
1087
1088div.autosuggest
1089{
1090 position: absolute;
1091 margin-top: 3px;
1092 border: 1px solid #222;
1093}
1094
1095div.autosuggest ul
1096{
1097 list-style: none;
1098 margin: 0px;
1099 padding: 2px;
1100 overflow: hidden;
1101 background-color: #FFF;
1102}
1103
1104div.autosuggest ul li
1105{
1106 color: #444;
1107 padding: 0;
1108 margin: 0;
1109 text-align: left;
1110}
1111
1112div.autosuggest ul li a
1113{
1114 color: #444;
1115 display: block;
1116 text-decoration: none;
1117 position: relative;
1118 padding: 0;
1119 width: 100%;
1120}
1121div.autosuggest ul li a:hover
1122{
1123
1124}
1125div.autosuggest ul li.as_highlight a:hover
1126{
1127 background-color: #45A;
1128 color: #FFF;
1129}
1130
1131div.autosuggest ul li a span
1132{
1133 display: block;
1134 padding: 3px 6px;
1135 color: #444;
1136 border-bottom:1px solid #DDD;
1137}
1138
1139div.autosuggest ul li a span small
1140{
1141 display: block;
1142 font-weight: normal;
1143 color: #444;
1144}
1145
1146div.autosuggest ul li.as_highlight a span small
1147{
1148 color: #FFF;
1149}
1150
1151div.autosuggest ul li.as_highlight a span {
1152 color: #FFF;
1153}
1154
1155div.autosuggest ul li.as_highlight a
1156{
1157 color: #FFF;
1158 background-color: #45A;
1159 cursor: pointer;
1160}
1161
1162div.autosuggest ul li.as_warning
1163{
1164 font-weight: bold;
1165 text-align: center;
1166}
1167
1168div.autosuggest ul em
1169{
1170 font-style: normal;
1171 font-weight: bold;
1172}
1173
1174/*
1175 * lib/css/legacy/dialog.css
1176 *//***** Dialogs *******/
1177
1178div.dialog_wrapper {
1179 position: absolute;
1180 width: 440px;
1181 display: none;
1182 z-index: 90;
1183 background-color: #FFF;
1184 border: 3px solid #222;
1185 box-shadow:1px 1px 5px #777;
1186 -moz-box-shadow: 1px 1px 5px #777;
1187 -webkit-box-shadow: 1px 1px 5px #777;
1188
1189 border-radius: 5px;
1190 -moz-border-radius: 5px;
1191 -webkit-border-radius: 5px;
1192}
1193
1194div.dialog_head {
1195 height: 22px;
1196 padding: 4px;
1197 background-color: #222;
1198 color: #FFF;
1199}
1200
1201div.dialog_body {
1202 padding: 8px 4px 16px 4px;
1203 border-radius: 5px;
1204 -moz-border-radius: 5px;
1205 -webkit-border-radius: 5px;
1206}
1207
1208div.dialog_back {
1209 position: fixed;
1210 display: none;
1211 top: 0px;
1212 left: 0px;
1213 bottom: 0px;
1214 right: 0px;
1215 background-color: #EEE;
1216 opacity: 0.6;
1217 z-index: 50;
1218 text-align: center;
1219}
1220
1221div.dialog_message {
1222 display: none;
1223 position: absolute;
1224 width: 250px;
1225 font-size: 12px;
1226 z-index: 91;
1227 background-color:#FFF;
1228 padding: 12px;
1229 border: 1px solid #444;
1230}
1231
1232div.dialog_row {
1233 padding: 8px 8px 0px 8px;
1234}
1235
1236div.dialog_row table {
1237 width: 100%;
1238}
1239
1240div.dialog_row table td {
1241}
1242
1243div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
1244 width: 80%;
1245 font-size: 14px;
1246}
1247
1248div.dialog_row table td textarea {
1249 width: 80%;
1250 height: 200px;
1251 font-size: 12px;
1252}
1253
1254/*
1255 * lib/css/legacy/tabs.css
1256 */
1257/******* TABS ********/
1258
1259div.box_label_wrapper {
1260 border-bottom: 6px solid #777;
1261}
1262
1263div.box_label_body {
1264 height: 22px;
1265}
1266
1267ul.box_tabs {
1268 margin: 0px;
1269 padding: 0px;
1270 list-style: none;
1271}
1272
1273ul.box_tabs li {
1274 height: 22px;
1275 float:left;
1276 font-size: 12px;
1277 text-decoration: underline;
1278
1279 background-color: #DDD;
1280
1281 margin:0;
1282 margin-left: 4px;
1283 padding:0 0 0 9px;
1284 cursor: pointer;
1285}
1286
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301287ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301288 display:block;
1289 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301290 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301291}
1292
1293ul.box_tabs li.box_tab_mouseover {
1294 background-color: #BBB;
1295}
1296
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301297ul.box_tabs li.box_tab_selected {
1298 background-color: #777;
1299
1300 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1301 background: -moz-linear-gradient(top, #999, #777);
1302
1303 color: #FFF;
1304 font-weight:bold;
1305
1306}
1307ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301308 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301309}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301310/*
1311 * lib/css/legacy/bw-icons.css
1312 */
1313/** general icons **/
1314
1315.wn-icon { background: url('../lib/images/icons/icons.png'); width: 16px; height: 16px; cursor: pointer; }
1316.ic-2x2_grid { background-position: 0 0; }
1317.ic-3x3_grid { background-position: 0 -36px; }
1318.ic-3x3_grid_2 { background-position: 0 -72px; }
1319.ic-air_signal { background-position: 0 -108px; }
1320.ic-align_center { background-position: 0 -144px; }
1321.ic-align_just { background-position: 0 -180px; }
1322.ic-align_left { background-position: 0 -216px; }
1323.ic-align_right { background-position: 0 -252px; }
1324.ic-app_window { background-position: 0 -288px; }
1325.ic-arrow_bottom { background-position: 0 -324px; }
1326.ic-arrow_bottom_left { background-position: 0 -360px; }
1327.ic-arrow_bottom_right { background-position: 0 -396px; }
1328.ic-arrow_l { background-position: 0 -432px; }
1329.ic-arrow_left { background-position: 0 -468px; }
1330.ic-arrow_r { background-position: 0 -504px; }
1331.ic-arrow_right { background-position: 0 -540px; }
1332.ic-arrow_top { background-position: 0 -576px; }
1333.ic-arrow_top_left { background-position: 0 -612px; }
1334.ic-arrow_top_right { background-position: 0 -648px; }
1335.ic-arrow_two_head { background-position: 0 -684px; }
1336.ic-arrow_two_head_2 { background-position: 0 -720px; }
1337.ic-attention { background-position: 0 -756px; }
1338.ic-battery { background-position: 0 -792px; }
1339.ic-bell { background-position: 0 -828px; }
1340.ic-book { background-position: 0 -864px; }
1341.ic-bookmark_1 { background-position: 0 -900px; }
1342.ic-bookmark_2 { background-position: 0 -936px; }
1343.ic-box { background-position: 0 -972px; }
1344.ic-br_down { background-position: 0 -1008px; }
1345.ic-br_next { background-position: 0 -1044px; }
1346.ic-br_prev { background-position: 0 -1080px; }
1347.ic-br_up { background-position: 0 -1116px; }
1348.ic-brackets { background-position: 0 -1152px; }
1349.ic-browser { background-position: 0 -1188px; }
1350.ic-brush { background-position: 0 -1224px; }
1351.ic-bug { background-position: 0 -1260px; }
1352.ic-burst { background-position: 0 -1296px; }
1353.ic-calc { background-position: 0 -1332px; }
1354.ic-calendar_1 { background-position: 0 -1368px; }
1355.ic-calendar_2 { background-position: 0 -1404px; }
1356.ic-cancel { background-position: 0 -1440px; }
1357.ic-case { background-position: 0 -1476px; }
1358.ic-cc { background-position: 0 -1512px; }
1359.ic-cert { background-position: 0 -1548px; }
1360.ic-chart_bar { background-position: 0 -1584px; }
1361.ic-chart_line { background-position: 0 -1620px; }
1362.ic-chart_line_2 { background-position: 0 -1656px; }
1363.ic-chart_pie { background-position: 0 -1692px; }
1364.ic-checkbox_checked { background-position: 0 -1728px; }
1365.ic-checkbox_unchecked { background-position: 0 -1764px; }
1366.ic-checkmark { background-position: 0 -1800px; }
1367.ic-clip { background-position: 0 -1836px; }
1368.ic-clipboard_copy { background-position: 0 -1872px; }
1369.ic-clipboard_cut { background-position: 0 -1908px; }
1370.ic-clipboard_past { background-position: 0 -1944px; }
1371.ic-clock { background-position: -36px 0; }
1372.ic-cloud { background-position: -36px -36px; }
1373.ic-cloud_rain { background-position: -36px -72px; }
1374.ic-cog { background-position: -36px -108px; }
1375.ic-comp { background-position: -36px -144px; }
1376.ic-compass { background-position: -36px -180px; }
1377.ic-contact_card { background-position: -36px -216px; }
1378.ic-cube { background-position: -36px -252px; }
1379.ic-cur_bp { background-position: -36px -288px; }
1380.ic-cur_dollar { background-position: -36px -324px; }
1381.ic-cur_euro { background-position: -36px -360px; }
1382.ic-cur_yen { background-position: -36px -396px; }
1383.ic-cursor_H_split { background-position: -36px -432px; }
1384.ic-cursor_V_split { background-position: -36px -468px; }
1385.ic-cursor_arrow { background-position: -36px -504px; }
1386.ic-cursor_drag_arrow { background-position: -36px -540px; }
1387.ic-cursor_drag_arrow_2 { background-position: -36px -576px; }
1388.ic-cursor_drag_hand { background-position: -36px -612px; }
1389.ic-cursor_hand { background-position: -36px -648px; }
1390.ic-db { background-position: -36px -684px; }
1391.ic-delete { background-position: -36px -720px; }
1392.ic-doc_delete { background-position: -36px -756px; }
1393.ic-doc_edit { background-position: -36px -792px; }
1394.ic-doc_empty { background-position: -36px -828px; }
1395.ic-doc_export { background-position: -36px -864px; }
1396.ic-doc_import { background-position: -36px -900px; }
1397.ic-doc_lines { background-position: -36px -936px; }
1398.ic-doc_lines_stright { background-position: -36px -972px; }
1399.ic-doc_minus { background-position: -36px -1008px; }
1400.ic-doc_new { background-position: -36px -1044px; }
1401.ic-doc_plus { background-position: -36px -1080px; }
1402.ic-document { background-position: -36px -1116px; }
1403.ic-download { background-position: -36px -1152px; }
1404.ic-emotion_sad { background-position: -36px -1188px; }
1405.ic-emotion_smile { background-position: -36px -1224px; }
1406.ic-expand { background-position: -36px -1260px; }
1407.ic-eye { background-position: -36px -1296px; }
1408.ic-eye_inv { background-position: -36px -1332px; }
1409.ic-facebook { background-position: -36px -1368px; }
1410.ic-filter { background-position: -36px -1404px; }
1411.ic-fire { background-position: -36px -1440px; }
1412.ic-flag { background-position: -36px -1476px; }
1413.ic-folder { background-position: -36px -1512px; }
1414.ic-folder_arrow { background-position: -36px -1548px; }
1415.ic-folder_delete { background-position: -36px -1584px; }
1416.ic-folder_minus { background-position: -36px -1620px; }
1417.ic-folder_open { background-position: -36px -1656px; }
1418.ic-folder_plus { background-position: -36px -1692px; }
1419.ic-font_bold { background-position: -36px -1728px; }
1420.ic-font_italic { background-position: -36px -1764px; }
1421.ic-font_size { background-position: -36px -1800px; }
1422.ic-font_strokethrough { background-position: -36px -1836px; }
1423.ic-font_underline { background-position: -36px -1872px; }
1424.ic-game_pad { background-position: -36px -1908px; }
1425.ic-globe_1 { background-position: -36px -1944px; }
1426.ic-globe_2 { background-position: -72px 0; }
1427.ic-globe_3 { background-position: -72px -36px; }
1428.ic-google { background-position: -72px -72px; }
1429.ic-hand_1 { background-position: -72px -108px; }
1430.ic-hand_2 { background-position: -72px -144px; }
1431.ic-hand_contra { background-position: -72px -180px; }
1432.ic-hand_pro { background-position: -72px -216px; }
1433.ic-headphones { background-position: -72px -252px; }
1434.ic-heart { background-position: -72px -288px; }
1435.ic-heart_empty { background-position: -72px -324px; }
1436.ic-home { background-position: -72px -360px; }
1437.ic-image_text { background-position: -72px -396px; }
1438.ic-inbox { background-position: -72px -432px; }
1439.ic-indent_decrease { background-position: -72px -468px; }
1440.ic-indent_increase { background-position: -72px -504px; }
1441.ic-info { background-position: -72px -540px; }
1442.ic-iphone { background-position: -72px -576px; }
1443.ic-key { background-position: -72px -612px; }
1444.ic-layers_1 { background-position: -72px -648px; }
1445.ic-layers_2 { background-position: -72px -684px; }
1446.ic-lightbulb { background-position: -72px -720px; }
1447.ic-lighting { background-position: -72px -756px; }
1448.ic-link { background-position: -72px -792px; }
1449.ic-list_bullets { background-position: -72px -828px; }
1450.ic-list_num { background-position: -72px -864px; }
1451.ic-magic_wand { background-position: -72px -900px; }
1452.ic-mail { background-position: -72px -936px; }
1453.ic-mail_2 { background-position: -72px -972px; }
1454.ic-mic { background-position: -72px -1008px; }
1455.ic-monitor { background-position: -72px -1044px; }
1456.ic-movie { background-position: -72px -1080px; }
1457.ic-music { background-position: -72px -1116px; }
1458.ic-net_comp { background-position: -72px -1152px; }
1459.ic-network { background-position: -72px -1188px; }
1460.ic-notepad { background-position: -72px -1224px; }
1461.ic-notepad_2 { background-position: -72px -1260px; }
1462.ic-on-off { background-position: -72px -1296px; }
1463.ic-openid { background-position: -72px -1332px; }
1464.ic-padlock_closed { background-position: -72px -1368px; }
1465.ic-padlock_open { background-position: -72px -1404px; }
1466.ic-page_layout { background-position: -72px -1440px; }
1467.ic-paragraph { background-position: -72px -1476px; }
1468.ic-pencil { background-position: -72px -1512px; }
1469.ic-phone { background-position: -72px -1548px; }
1470.ic-phone_1 { background-position: -72px -1584px; }
1471.ic-phone_2 { background-position: -72px -1620px; }
1472.ic-phone_touch { background-position: -72px -1656px; }
1473.ic-photo { background-position: -72px -1692px; }
1474.ic-picture { background-position: -72px -1728px; }
1475.ic-pin { background-position: -72px -1764px; }
1476.ic-pin_2 { background-position: -72px -1800px; }
1477.ic-pin_map { background-position: -72px -1836px; }
1478.ic-pin_map_down { background-position: -72px -1872px; }
1479.ic-pin_map_left { background-position: -72px -1908px; }
1480.ic-pin_map_right { background-position: -72px -1944px; }
1481.ic-pin_map_top { background-position: -108px 0; }
1482.ic-pin_sq_down { background-position: -108px -36px; }
1483.ic-pin_sq_left { background-position: -108px -72px; }
1484.ic-pin_sq_right { background-position: -108px -108px; }
1485.ic-pin_sq_top { background-position: -108px -144px; }
1486.ic-playback_ff { background-position: -108px -180px; }
1487.ic-playback_next { background-position: -108px -216px; }
1488.ic-playback_pause { background-position: -108px -252px; }
1489.ic-playback_play { background-position: -108px -288px; }
1490.ic-playback_prev { background-position: -108px -324px; }
1491.ic-playback_rec { background-position: -108px -360px; }
1492.ic-playback_reload { background-position: -108px -396px; }
1493.ic-playback_rew { background-position: -108px -432px; }
1494.ic-playback_stop { background-position: -108px -468px; }
1495.ic-preso { background-position: -108px -504px; }
1496.ic-print { background-position: -108px -540px; }
1497.ic-question { background-position: -108px -576px; }
1498.ic-redo { background-position: -108px -612px; }
1499.ic-rnd_br_down { background-position: -108px -648px; }
1500.ic-rnd_br_first { background-position: -108px -684px; }
1501.ic-rnd_br_last { background-position: -108px -720px; }
1502.ic-rnd_br_next { background-position: -108px -756px; }
1503.ic-rnd_br_prev { background-position: -108px -792px; }
1504.ic-rnd_br_up { background-position: -108px -828px; }
1505.ic-round { background-position: -108px -864px; }
1506.ic-round_and_up { background-position: -108px -900px; }
1507.ic-round_arrow_left { background-position: -108px -936px; }
1508.ic-round_arrow_right { background-position: -108px -972px; }
1509.ic-round_checkmark { background-position: -108px -1008px; }
1510.ic-round_delete { background-position: -108px -1044px; }
1511.ic-round_minus { background-position: -108px -1080px; }
1512.ic-round_plus { background-position: -108px -1116px; }
1513.ic-rss { background-position: -108px -1152px; }
1514.ic-rss_sq { background-position: -108px -1188px; }
1515.ic-sand { background-position: -108px -1224px; }
1516.ic-sat_dish { background-position: -108px -1260px; }
1517.ic-save { background-position: -108px -1296px; }
1518.ic-server { background-position: -108px -1332px; }
1519.ic-share { background-position: -108px -1368px; }
1520.ic-shop_cart { background-position: -108px -1404px; }
1521.ic-sound_high { background-position: -108px -1440px; }
1522.ic-sound_low { background-position: -108px -1476px; }
1523.ic-sound_mute { background-position: -108px -1512px; }
1524.ic-spechbubble { background-position: -108px -1548px; }
1525.ic-spechbubble_2 { background-position: -108px -1584px; }
1526.ic-spechbubble_sq { background-position: -108px -1620px; }
1527.ic-spechbubble_sq_line { background-position: -108px -1656px; }
1528.ic-sq_br_down { background-position: -108px -1692px; }
1529.ic-sq_br_first { background-position: -108px -1728px; }
1530.ic-sq_br_last { background-position: -108px -1764px; }
1531.ic-sq_br_next { background-position: -108px -1800px; }
1532.ic-sq_br_prev { background-position: -108px -1836px; }
1533.ic-sq_br_up { background-position: -108px -1872px; }
1534.ic-sq_down { background-position: -108px -1908px; }
1535.ic-sq_minus { background-position: -108px -1944px; }
1536.ic-sq_next { background-position: -144px 0; }
1537.ic-sq_plus { background-position: -144px -36px; }
1538.ic-sq_prev { background-position: -144px -72px; }
1539.ic-sq_up { background-position: -144px -108px; }
1540.ic-square_shape { background-position: -144px -144px; }
1541.ic-star { background-position: -144px -180px; }
1542.ic-star_fav { background-position: -144px -216px; }
1543.ic-star_fav_empty { background-position: -144px -252px; }
1544.ic-sun { background-position: -144px -288px; }
1545.ic-tag { background-position: -144px -324px; }
1546.ic-tape { background-position: -144px -360px; }
1547.ic-target { background-position: -144px -396px; }
1548.ic-text_curstor { background-position: -144px -432px; }
1549.ic-text_letter_t { background-position: -144px -468px; }
1550.ic-top_right_expand { background-position: -144px -504px; }
1551.ic-trash { background-position: -144px -540px; }
1552.ic-twitter { background-position: -144px -576px; }
1553.ic-twitter_2 { background-position: -144px -612px; }
1554.ic-undo { background-position: -144px -648px; }
1555.ic-user { background-position: -144px -684px; }
1556.ic-users { background-position: -144px -720px; }
1557.ic-wrench { background-position: -144px -756px; }
1558.ic-wrench_plus { background-position: -144px -792px; }
1559.ic-wrench_plus_2 { background-position: -144px -828px; }
1560.ic-zoom { background-position: -144px -864px; }
1561
1562
1563/*
1564 * lib/css/legacy/sidebar.css
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301565 */div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301566}
1567
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301568div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301569 font-size: 14px;
1570 font-weight: bold;
1571 color: #555;
1572 margin-bottom: 12px;
1573}
1574
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301575div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301576 margin-bottom: 11px;
1577 overflow: hidden;
1578}
1579
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301580div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301581 font-size: 12px;
1582 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301583 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301584}
1585
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301586div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301587 margin: 7px 11px 11px 11px;
1588}
1589
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301590div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301591 margin-bottom: 7px;
1592}
1593
Rushabh Mehtad0251332012-02-21 17:26:50 +05301594div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301595 font-size: 11px;
1596 color: #666;
1597}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301598/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301599 * lib/css/bootstrap/headings.css
1600 *//* heading from bootstrap */
1601
1602h1,
1603h2,
1604h3,
1605h4,
1606h5,
1607h6 {
1608 margin: 0;
1609 font-weight: bold;
1610 color: #333333;
1611 text-rendering: optimizelegibility;
1612 margin-bottom: 0.3em;
1613}
1614h1 small,
1615h2 small,
1616h3 small,
1617h4 small,
1618h5 small,
1619h6 small {
1620 font-weight: normal;
1621 color: #999999;
1622}
1623h1 {
1624 font-size: 30px;
1625 line-height: 36px;
1626}
1627h1 small {
1628 font-size: 18px;
1629}
1630h2 {
1631 font-size: 24px;
1632 line-height: 36px;
1633}
1634h2 small {
1635 font-size: 18px;
1636}
1637h3 {
1638 line-height: 27px;
1639 font-size: 18px;
1640}
1641h3 small {
1642 font-size: 14px;
1643}
1644h4, h5, h6 {
1645 line-height: 18px;
1646}
1647h4 {
1648 font-size: 14px;
1649}
1650h4 small {
1651 font-size: 12px;
1652}
1653h5 {
1654 font-size: 12px;
1655}
1656h6 {
1657 font-size: 11px;
1658 color: #999999;
1659 text-transform: uppercase;
1660}
1661/*
1662 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301663 */.close {
1664 float: right;
1665 font-size: 20px;
1666 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301667 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301668 color: #000000;
1669 text-shadow: 0 1px 0 #ffffff;
1670 opacity: 0.2;
1671 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301672}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301673.close:hover {
1674 color: #000000;
1675 text-decoration: none;
1676 opacity: 0.4;
1677 filter: alpha(opacity=40);
1678 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301679}
1680.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301681 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301682 padding: 4px 10px 4px;
1683 font-size: 13px;
1684 line-height: 18px;
1685 color: #333333;
1686 text-align: center;
1687 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1688 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301689 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1690 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1691 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1692 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1693 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1694 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301695 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301696 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301697 border: 1px solid #ccc;
1698 border-bottom-color: #bbb;
1699 -webkit-border-radius: 4px;
1700 -moz-border-radius: 4px;
1701 border-radius: 4px;
1702 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1703 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1704 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 +05301705 cursor: pointer;
1706 *margin-left: .3em;
1707}
1708.btn:first-child {
1709 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301710}
1711.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301712 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301713 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301714 background-color: #e6e6e6;
1715 background-position: 0 -15px;
1716 -webkit-transition: background-position 0.1s linear;
1717 -moz-transition: background-position 0.1s linear;
1718 -ms-transition: background-position 0.1s linear;
1719 -o-transition: background-position 0.1s linear;
1720 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301721}
1722.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301723 outline: thin dotted;
1724 outline: 5px auto -webkit-focus-ring-color;
1725 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301726}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301727.btn.active, .btn:active {
1728 background-image: none;
1729 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1730 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1731 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1732 background-color: #e6e6e6;
1733 background-color: #d9d9d9 \9;
1734 color: rgba(0, 0, 0, 0.5);
1735 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301736}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301737.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301738 cursor: default;
1739 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301740 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301741 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301742 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301743 -webkit-box-shadow: none;
1744 -moz-box-shadow: none;
1745 box-shadow: none;
1746}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301747.btn-large {
1748 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301749 font-size: 15px;
1750 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301751 -webkit-border-radius: 5px;
1752 -moz-border-radius: 5px;
1753 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301754}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301755.btn-large .icon {
1756 margin-top: 1px;
1757}
1758.btn-small {
1759 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301760 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301761 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301762}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301763.btn-small .icon {
1764 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301765}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301766.btn-primary,
1767.btn-primary:hover,
1768.btn-warning,
1769.btn-warning:hover,
1770.btn-danger,
1771.btn-danger:hover,
1772.btn-success,
1773.btn-success:hover,
1774.btn-info,
1775.btn-info:hover {
1776 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1777 color: #ffffff;
1778}
1779.btn-primary.active,
1780.btn-warning.active,
1781.btn-danger.active,
1782.btn-success.active,
1783.btn-info.active {
1784 color: rgba(255, 255, 255, 0.75);
1785}
1786.btn-primary {
1787 background-color: #006dcc;
1788 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1789 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1790 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1791 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1792 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1793 background-image: linear-gradient(top, #0088cc, #0044cc);
1794 background-repeat: repeat-x;
1795 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1796 border-color: #0044cc #0044cc #002a80;
1797 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1798 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1799}
1800.btn-primary:hover,
1801.btn-primary:active,
1802.btn-primary.active,
1803.btn-primary.disabled,
1804.btn-primary[disabled] {
1805 background-color: #0044cc;
1806}
1807.btn-primary:active, .btn-primary.active {
1808 background-color: #003399 \9;
1809}
1810.btn-warning {
1811 background-color: #faa732;
1812 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1813 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1814 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1815 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1816 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1817 background-image: linear-gradient(top, #fbb450, #f89406);
1818 background-repeat: repeat-x;
1819 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1820 border-color: #f89406 #f89406 #ad6704;
1821 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1822 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1823}
1824.btn-warning:hover,
1825.btn-warning:active,
1826.btn-warning.active,
1827.btn-warning.disabled,
1828.btn-warning[disabled] {
1829 background-color: #f89406;
1830}
1831.btn-warning:active, .btn-warning.active {
1832 background-color: #c67605 \9;
1833}
1834.btn-danger {
1835 background-color: #da4f49;
1836 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1837 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1838 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1839 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1840 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1841 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1842 background-repeat: repeat-x;
1843 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1844 border-color: #bd362f #bd362f #802420;
1845 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1846 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1847}
1848.btn-danger:hover,
1849.btn-danger:active,
1850.btn-danger.active,
1851.btn-danger.disabled,
1852.btn-danger[disabled] {
1853 background-color: #bd362f;
1854}
1855.btn-danger:active, .btn-danger.active {
1856 background-color: #942a25 \9;
1857}
1858.btn-success {
1859 background-color: #5bb75b;
1860 background-image: -moz-linear-gradient(top, #62c462, #51a351);
1861 background-image: -ms-linear-gradient(top, #62c462, #51a351);
1862 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1863 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1864 background-image: -o-linear-gradient(top, #62c462, #51a351);
1865 background-image: linear-gradient(top, #62c462, #51a351);
1866 background-repeat: repeat-x;
1867 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1868 border-color: #51a351 #51a351 #387038;
1869 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1870 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1871}
1872.btn-success:hover,
1873.btn-success:active,
1874.btn-success.active,
1875.btn-success.disabled,
1876.btn-success[disabled] {
1877 background-color: #51a351;
1878}
1879.btn-success:active, .btn-success.active {
1880 background-color: #408140 \9;
1881}
1882.btn-info {
1883 background-color: #49afcd;
1884 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1885 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1886 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1887 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1888 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1889 background-image: linear-gradient(top, #5bc0de, #2f96b4);
1890 background-repeat: repeat-x;
1891 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1892 border-color: #2f96b4 #2f96b4 #1f6377;
1893 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1894 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1895}
1896.btn-info:hover,
1897.btn-info:active,
1898.btn-info.active,
1899.btn-info.disabled,
1900.btn-info[disabled] {
1901 background-color: #2f96b4;
1902}
1903.btn-info:active, .btn-info.active {
1904 background-color: #24748c \9;
1905}
1906button.btn, input[type="submit"].btn {
1907 *padding-top: 2px;
1908 *padding-bottom: 2px;
1909}
1910button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301911 padding: 0;
1912 border: 0;
1913}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301914button.btn.large, input[type="submit"].btn.large {
1915 *padding-top: 7px;
1916 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301917}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301918button.btn.small, input[type="submit"].btn.small {
1919 *padding-top: 3px;
1920 *padding-bottom: 3px;
1921}
1922.btn-group {
1923 position: relative;
1924 *zoom: 1;
1925 *margin-left: .3em;
1926}
1927.btn-group:before, .btn-group:after {
1928 display: table;
1929 content: "";
1930}
1931.btn-group:after {
1932 clear: both;
1933}
1934.btn-group:first-child {
1935 *margin-left: 0;
1936}
1937.btn-group + .btn-group {
1938 margin-left: 5px;
1939}
1940.btn-toolbar {
1941 margin-top: 9px;
1942 margin-bottom: 9px;
1943}
1944.btn-toolbar .btn-group {
1945 display: inline-block;
1946 *display: inline;
1947 /* IE7 inline-block hack */
1948
1949 *zoom: 1;
1950}
1951.btn-group .btn {
1952 position: relative;
1953 float: left;
1954 margin-left: -1px;
1955 -webkit-border-radius: 0;
1956 -moz-border-radius: 0;
1957 border-radius: 0;
1958}
1959.btn-group .btn:first-child {
1960 margin-left: 0;
1961 -webkit-border-top-left-radius: 4px;
1962 -moz-border-radius-topleft: 4px;
1963 border-top-left-radius: 4px;
1964 -webkit-border-bottom-left-radius: 4px;
1965 -moz-border-radius-bottomleft: 4px;
1966 border-bottom-left-radius: 4px;
1967}
1968.btn-group .btn:last-child, .btn-group .dropdown-toggle {
1969 -webkit-border-top-right-radius: 4px;
1970 -moz-border-radius-topright: 4px;
1971 border-top-right-radius: 4px;
1972 -webkit-border-bottom-right-radius: 4px;
1973 -moz-border-radius-bottomright: 4px;
1974 border-bottom-right-radius: 4px;
1975}
1976.btn-group .btn.large:first-child {
1977 margin-left: 0;
1978 -webkit-border-top-left-radius: 6px;
1979 -moz-border-radius-topleft: 6px;
1980 border-top-left-radius: 6px;
1981 -webkit-border-bottom-left-radius: 6px;
1982 -moz-border-radius-bottomleft: 6px;
1983 border-bottom-left-radius: 6px;
1984}
1985.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
1986 -webkit-border-top-right-radius: 6px;
1987 -moz-border-radius-topright: 6px;
1988 border-top-right-radius: 6px;
1989 -webkit-border-bottom-right-radius: 6px;
1990 -moz-border-radius-bottomright: 6px;
1991 border-bottom-right-radius: 6px;
1992}
1993.btn-group .btn:hover,
1994.btn-group .btn:focus,
1995.btn-group .btn:active,
1996.btn-group .btn.active {
1997 z-index: 2;
1998}
1999.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2000 outline: 0;
2001}
2002.btn-group .dropdown-toggle {
2003 padding-left: 8px;
2004 padding-right: 8px;
2005 -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);
2006 -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);
2007 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);
2008 *padding-top: 5px;
2009 *padding-bottom: 5px;
2010}
2011.btn-group.open {
2012 *z-index: 1000;
2013}
2014.btn-group.open .dropdown-menu {
2015 display: block;
2016 margin-top: 1px;
2017 -webkit-border-radius: 5px;
2018 -moz-border-radius: 5px;
2019 border-radius: 5px;
2020}
2021.btn-group.open .dropdown-toggle {
2022 background-image: none;
2023 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2024 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2025 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2026}
2027.btn .caret {
2028 margin-top: 7px;
2029 margin-left: 0;
2030}
2031.btn:hover .caret, .open.btn-group .caret {
2032 opacity: 1;
2033 filter: alpha(opacity=100);
2034}
2035.btn-primary .caret,
2036.btn-danger .caret,
2037.btn-info .caret,
2038.btn-success .caret {
2039 border-top-color: #ffffff;
2040 opacity: 0.75;
2041 filter: alpha(opacity=75);
2042}
2043.btn-small .caret {
2044 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302045}
2046/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302047 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302048 */.nav {
2049 margin-left: 0;
2050 margin-bottom: 18px;
2051 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302052}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302053.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302054 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302055}
2056.nav > li > a:hover {
2057 text-decoration: none;
2058 background-color: #eeeeee;
2059}
2060.nav-list {
2061 padding-left: 14px;
2062 padding-right: 14px;
2063 margin-bottom: 0;
2064}
2065.nav-list > li > a, .nav-list .nav-header {
2066 display: block;
2067 padding: 3px 15px;
2068 margin-left: -15px;
2069 margin-right: -15px;
2070 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2071}
2072.nav-list .nav-header {
2073 font-size: 11px;
2074 font-weight: bold;
2075 line-height: 18px;
2076 color: #999999;
2077 text-transform: uppercase;
2078}
2079.nav-list > li + .nav-header {
2080 margin-top: 9px;
2081}
2082.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302083 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302084 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2085 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302086}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302087.nav-list [class^="icon-"] {
2088 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302089}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302090.nav-tabs, .nav-pills {
2091 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302092}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302093.nav-tabs:before,
2094.nav-pills:before,
2095.nav-tabs:after,
2096.nav-pills:after {
2097 display: table;
2098 content: "";
2099}
2100.nav-tabs:after, .nav-pills:after {
2101 clear: both;
2102}
2103.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302104 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302105}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302106.nav-tabs > li > a, .nav-pills > li > a {
2107 padding-right: 12px;
2108 padding-left: 12px;
2109 margin-right: 2px;
2110 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302111}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302112.nav-tabs {
2113 border-bottom: 1px solid #ddd;
2114}
2115.nav-tabs > li {
2116 margin-bottom: -1px;
2117}
2118.nav-tabs > li > a {
2119 padding-top: 9px;
2120 padding-bottom: 9px;
2121 border: 1px solid transparent;
2122 -webkit-border-radius: 4px 4px 0 0;
2123 -moz-border-radius: 4px 4px 0 0;
2124 border-radius: 4px 4px 0 0;
2125}
2126.nav-tabs > li > a:hover {
2127 border-color: #eeeeee #eeeeee #dddddd;
2128}
2129.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2130 color: #555555;
2131 background-color: #ffffff;
2132 border: 1px solid #ddd;
2133 border-bottom-color: transparent;
2134 cursor: default;
2135}
2136.nav-pills > li > a {
2137 padding-top: 8px;
2138 padding-bottom: 8px;
2139 margin-top: 2px;
2140 margin-bottom: 2px;
2141 -webkit-border-radius: 5px;
2142 -moz-border-radius: 5px;
2143 border-radius: 5px;
2144}
2145.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302146 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302147 background-color: #0088cc;
2148}
2149.nav-stacked > li {
2150 float: none;
2151}
2152.nav-stacked > li > a {
2153 margin-right: 0;
2154}
2155.nav-tabs.nav-stacked {
2156 border-bottom: 0;
2157}
2158.nav-tabs.nav-stacked > li > a {
2159 border: 1px solid #ddd;
2160 -webkit-border-radius: 0;
2161 -moz-border-radius: 0;
2162 border-radius: 0;
2163}
2164.nav-tabs.nav-stacked > li:first-child > a {
2165 -webkit-border-radius: 4px 4px 0 0;
2166 -moz-border-radius: 4px 4px 0 0;
2167 border-radius: 4px 4px 0 0;
2168}
2169.nav-tabs.nav-stacked > li:last-child > a {
2170 -webkit-border-radius: 0 0 4px 4px;
2171 -moz-border-radius: 0 0 4px 4px;
2172 border-radius: 0 0 4px 4px;
2173}
2174.nav-tabs.nav-stacked > li > a:hover {
2175 border-color: #ddd;
2176 z-index: 2;
2177}
2178.nav-pills.nav-stacked > li > a {
2179 margin-bottom: 3px;
2180}
2181.nav-pills.nav-stacked > li:last-child > a {
2182 margin-bottom: 1px;
2183}
2184.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2185 margin-top: 1px;
2186 border-width: 1px;
2187}
2188.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302189 -webkit-border-radius: 4px;
2190 -moz-border-radius: 4px;
2191 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302192}
2193.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2194 border-top-color: #0088cc;
2195 margin-top: 6px;
2196}
2197.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2198 border-top-color: #005580;
2199}
2200.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2201 border-top-color: #333333;
2202}
2203.nav > .dropdown.active > a:hover {
2204 color: #000000;
2205 cursor: pointer;
2206}
2207.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2208 color: #ffffff;
2209 background-color: #999999;
2210 border-color: #999999;
2211}
2212.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2213 border-top-color: #ffffff;
2214 opacity: 1;
2215 filter: alpha(opacity=100);
2216}
2217
2218.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302219 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302220 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302221}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302222.navbar-inner {
2223 padding-left: 20px;
2224 padding-right: 20px;
2225 background-color: #2c2c2c;
2226 background-image: -moz-linear-gradient(top, #333333, #222222);
2227 background-image: -ms-linear-gradient(top, #333333, #222222);
2228 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2229 background-image: -webkit-linear-gradient(top, #333333, #222222);
2230 background-image: -o-linear-gradient(top, #333333, #222222);
2231 background-image: linear-gradient(top, #333333, #222222);
2232 background-repeat: repeat-x;
2233 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2234 -webkit-border-radius: 4px;
2235 -moz-border-radius: 4px;
2236 border-radius: 4px;
2237 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2238 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2239 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2240}
2241.btn-navbar {
2242 display: none;
2243 float: right;
2244 padding: 7px 10px;
2245 margin-left: 5px;
2246 margin-right: 5px;
2247 background-color: #2c2c2c;
2248 background-image: -moz-linear-gradient(top, #333333, #222222);
2249 background-image: -ms-linear-gradient(top, #333333, #222222);
2250 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2251 background-image: -webkit-linear-gradient(top, #333333, #222222);
2252 background-image: -o-linear-gradient(top, #333333, #222222);
2253 background-image: linear-gradient(top, #333333, #222222);
2254 background-repeat: repeat-x;
2255 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2256 border-color: #222222 #222222 #000000;
2257 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2258 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2259 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2260 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2261 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2262}
2263.btn-navbar:hover,
2264.btn-navbar:active,
2265.btn-navbar.active,
2266.btn-navbar.disabled,
2267.btn-navbar[disabled] {
2268 background-color: #222222;
2269}
2270.btn-navbar:active, .btn-navbar.active {
2271 background-color: #080808 \9;
2272}
2273.btn-navbar .icon-bar {
2274 display: block;
2275 width: 18px;
2276 height: 2px;
2277 background-color: #f5f5f5;
2278 -webkit-border-radius: 1px;
2279 -moz-border-radius: 1px;
2280 border-radius: 1px;
2281 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2282 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2283 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2284}
2285.btn-navbar .icon-bar + .icon-bar {
2286 margin-top: 3px;
2287}
2288.nav-collapse.collapse {
2289 height: auto;
2290}
2291.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302292 text-decoration: none;
2293}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302294.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302295 float: left;
2296 display: block;
2297 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302298 font-size: 20px;
2299 font-weight: 200;
2300 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302301 color: #ffffff;
2302}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302303.navbar .navbar-text {
2304 margin-bottom: 0;
2305 line-height: 40px;
2306 color: #999999;
2307}
2308.navbar .navbar-text a:hover {
2309 color: #ffffff;
2310 background-color: transparent;
2311}
2312.navbar .btn, .navbar .btn-group {
2313 margin-top: 5px;
2314}
2315.navbar .btn-group .btn {
2316 margin-top: 0;
2317}
2318.navbar-form {
2319 margin-bottom: 0;
2320 *zoom: 1;
2321}
2322.navbar-form:before, .navbar-form:after {
2323 display: table;
2324 content: "";
2325}
2326.navbar-form:after {
2327 clear: both;
2328}
2329.navbar-form input, .navbar-form select {
2330 display: inline-block;
2331 margin-top: 5px;
2332 margin-bottom: 0;
2333}
2334.navbar-form .radio, .navbar-form .checkbox {
2335 margin-top: 5px;
2336}
2337.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2338 margin-top: 3px;
2339}
2340.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302341 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302342 float: left;
2343 margin-top: 6px;
2344 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302345}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302346.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302347 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302348 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2349 font-size: 13px;
2350 font-weight: normal;
2351 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302352 color: #ffffff;
2353 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302354 background: #666;
2355 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302356 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302357 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2358 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2359 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 +05302360 -webkit-transition: none;
2361 -moz-transition: none;
2362 -ms-transition: none;
2363 -o-transition: none;
2364 transition: none;
2365}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302366.navbar-search .search-query :-moz-placeholder {
2367 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302368}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302369.navbar-search .search-query::-webkit-input-placeholder {
2370 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302371}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302372.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302373 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302374 background-color: #999999;
2375 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302376}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302377.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302378 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302379 color: #333333;
2380 text-shadow: 0 1px 0 #ffffff;
2381 background-color: #ffffff;
2382 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302383 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2384 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2385 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302386 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302387}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302388.navbar-fixed-top {
2389 position: fixed;
2390 top: 0;
2391 right: 0;
2392 left: 0;
2393 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302394}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302395.navbar-fixed-top .navbar-inner {
2396 padding-left: 0;
2397 padding-right: 0;
2398 -webkit-border-radius: 0;
2399 -moz-border-radius: 0;
2400 border-radius: 0;
2401}
2402.navbar .nav {
2403 position: relative;
2404 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302405 display: block;
2406 float: left;
2407 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302408}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302409.navbar .nav.pull-right {
2410 float: right;
2411}
2412.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302413 display: block;
2414 float: left;
2415}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302416.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302417 float: none;
2418 padding: 10px 10px 11px;
2419 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302420 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302421 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302422 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302423}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302424.navbar .nav > li > a:hover {
2425 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302426 color: #ffffff;
2427 text-decoration: none;
2428}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302429.navbar .nav .active > a, .navbar .nav .active > a:hover {
2430 color: #ffffff;
2431 text-decoration: none;
2432 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302433 background-color: rgba(0, 0, 0, 0.5);
2434}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302435.navbar .divider-vertical {
2436 height: 40px;
2437 width: 1px;
2438 margin: 0 9px;
2439 overflow: hidden;
2440 background-color: #222222;
2441 border-right: 1px solid #333333;
2442}
2443.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302444 margin-left: 10px;
2445 margin-right: 0;
2446}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302447.navbar .dropdown-menu {
2448 margin-top: 1px;
2449 -webkit-border-radius: 4px;
2450 -moz-border-radius: 4px;
2451 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302452}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302453.navbar .dropdown-menu:before {
2454 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302455 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302456 border-left: 7px solid transparent;
2457 border-right: 7px solid transparent;
2458 border-bottom: 7px solid #ccc;
2459 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302460 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302461 top: -7px;
2462 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302463}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302464.navbar .dropdown-menu:after {
2465 content: '';
2466 display: inline-block;
2467 border-left: 6px solid transparent;
2468 border-right: 6px solid transparent;
2469 border-bottom: 6px solid #ffffff;
2470 position: absolute;
2471 top: -6px;
2472 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302473}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302474.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2475 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302476}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302477.navbar .nav .active .caret {
2478 opacity: 1;
2479 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302480}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302481.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2482 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302483}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302484.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302485 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302486}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302487.navbar .nav.pull-right .dropdown-menu {
2488 left: auto;
2489 right: 0;
2490}
2491.navbar .nav.pull-right .dropdown-menu:before {
2492 left: auto;
2493 right: 12px;
2494}
2495.navbar .nav.pull-right .dropdown-menu:after {
2496 left: auto;
2497 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302498}
2499
2500/*extra size menus for recent*/
2501.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2502 width: 260px !important;
2503 max-width: 260px !important;
2504}
2505
2506/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302507.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302508 display: block;
2509 float: right;
2510 width: 20px;
2511 margin-bottom: -5px;
2512 margin-top: 10px;
2513 visibility: hidden;
2514}
2515
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302516.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302517 padding: 0px 20px;
2518}
2519/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302520 * lib/css/bootstrap/dropdown.css
2521 */.dropdown {
2522 position: relative;
2523}
2524.dropdown-toggle {
2525 *margin-bottom: -3px;
2526}
2527.dropdown-toggle:active, .open .dropdown-toggle {
2528 outline: 0;
2529}
2530.caret {
2531 display: inline-block;
2532 width: 0;
2533 height: 0;
2534 text-indent: -99999px;
2535 *text-indent: 0;
2536 vertical-align: top;
2537 border-left: 4px solid transparent;
2538 border-right: 4px solid transparent;
2539 border-top: 4px solid #000000;
2540 opacity: 0.3;
2541 filter: alpha(opacity=30);
2542 content: "\2193";
2543}
2544.dropdown .caret {
2545 margin-top: 8px;
2546 margin-left: 2px;
2547}
2548.dropdown:hover .caret, .open.dropdown .caret {
2549 opacity: 1;
2550 filter: alpha(opacity=100);
2551}
2552.dropdown-menu {
2553 position: absolute;
2554 top: 100%;
2555 left: 0;
2556 z-index: 1000;
2557 float: left;
2558 display: none;
2559 min-width: 160px;
2560 max-width: 220px;
2561 _width: 160px;
2562 padding: 4px 0;
2563 margin: 0;
2564 list-style: none;
2565 background-color: #ffffff;
2566 border-color: #ccc;
2567 border-color: rgba(0, 0, 0, 0.2);
2568 border-style: solid;
2569 border-width: 1px;
2570 -webkit-border-radius: 0 0 5px 5px;
2571 -moz-border-radius: 0 0 5px 5px;
2572 border-radius: 0 0 5px 5px;
2573 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2574 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2575 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2576 -webkit-background-clip: padding-box;
2577 -moz-background-clip: padding;
2578 background-clip: padding-box;
2579 *border-right-width: 2px;
2580 *border-bottom-width: 2px;
2581}
2582.dropdown-menu.bottom-up {
2583 top: auto;
2584 bottom: 100%;
2585 margin-bottom: 2px;
2586}
2587.dropdown-menu .divider {
2588 height: 1px;
2589 margin: 5px 1px;
2590 overflow: hidden;
2591 background-color: #e5e5e5;
2592 border-bottom: 1px solid #ffffff;
2593 *width: 100%;
2594 *margin: -5px 0 5px;
2595}
2596.dropdown-menu a {
2597 display: block;
2598 padding: 3px 15px;
2599 clear: both;
2600 font-weight: normal;
2601 line-height: 18px;
2602 color: #555555;
2603 white-space: nowrap;
2604}
2605.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2606 color: #ffffff;
2607 text-decoration: none;
2608 background-color: #0088cc;
2609}
2610.dropdown.open {
2611 *z-index: 1000;
2612}
2613.dropdown.open .dropdown-toggle {
2614 color: #ffffff;
2615 background: #ccc;
2616 background: rgba(0, 0, 0, 0.3);
2617}
2618.dropdown.open .dropdown-menu {
2619 display: block;
2620}
2621/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302622 * lib/css/bootstrap/tooltip.css
2623 */.tooltip {
2624 position: absolute;
2625 z-index: 1020;
2626 display: block;
2627 visibility: visible;
2628 padding: 5px;
2629 font-size: 11px;
2630 opacity: 0;
2631 filter: alpha(opacity=0);
2632}
2633.tooltip.in {
2634 opacity: 0.8;
2635 filter: alpha(opacity=80);
2636}
2637.tooltip.top {
2638 margin-top: -2px;
2639}
2640.tooltip.right {
2641 margin-left: 2px;
2642}
2643.tooltip.bottom {
2644 margin-top: 2px;
2645}
2646.tooltip.left {
2647 margin-left: -2px;
2648}
2649.tooltip.top .tooltip-arrow {
2650 bottom: 0;
2651 left: 50%;
2652 margin-left: -5px;
2653 border-left: 5px solid transparent;
2654 border-right: 5px solid transparent;
2655 border-top: 5px solid #000000;
2656}
2657.tooltip.left .tooltip-arrow {
2658 top: 50%;
2659 right: 0;
2660 margin-top: -5px;
2661 border-top: 5px solid transparent;
2662 border-bottom: 5px solid transparent;
2663 border-left: 5px solid #000000;
2664}
2665.tooltip.bottom .tooltip-arrow {
2666 top: 0;
2667 left: 50%;
2668 margin-left: -5px;
2669 border-left: 5px solid transparent;
2670 border-right: 5px solid transparent;
2671 border-bottom: 5px solid #000000;
2672}
2673.tooltip.right .tooltip-arrow {
2674 top: 50%;
2675 left: 0;
2676 margin-top: -5px;
2677 border-top: 5px solid transparent;
2678 border-bottom: 5px solid transparent;
2679 border-right: 5px solid #000000;
2680}
2681.tooltip-inner {
2682 max-width: 200px;
2683 padding: 3px 8px;
2684 color: #ffffff;
2685 text-align: center;
2686 text-decoration: none;
2687 background-color: #000000;
2688 -webkit-border-radius: 4px;
2689 -moz-border-radius: 4px;
2690 border-radius: 4px;
2691}
2692.tooltip-arrow {
2693 position: absolute;
2694 width: 0;
2695 height: 0;
2696}
2697.popover {
2698 position: absolute;
2699 top: 0;
2700 left: 0;
2701 z-index: 1010;
2702 display: none;
2703 padding: 5px;
2704}
2705.popover.top {
2706 margin-top: -5px;
2707}
2708.popover.right {
2709 margin-left: 5px;
2710}
2711.popover.bottom {
2712 margin-top: 5px;
2713}
2714.popover.left {
2715 margin-left: -5px;
2716}
2717.popover.top .arrow {
2718 bottom: 0;
2719 left: 50%;
2720 margin-left: -5px;
2721 border-left: 5px solid transparent;
2722 border-right: 5px solid transparent;
2723 border-top: 5px solid #000000;
2724}
2725.popover.right .arrow {
2726 top: 50%;
2727 left: 0;
2728 margin-top: -5px;
2729 border-top: 5px solid transparent;
2730 border-bottom: 5px solid transparent;
2731 border-right: 5px solid #000000;
2732}
2733.popover.bottom .arrow {
2734 top: 0;
2735 left: 50%;
2736 margin-left: -5px;
2737 border-left: 5px solid transparent;
2738 border-right: 5px solid transparent;
2739 border-bottom: 5px solid #000000;
2740}
2741.popover.left .arrow {
2742 top: 50%;
2743 right: 0;
2744 margin-top: -5px;
2745 border-top: 5px solid transparent;
2746 border-bottom: 5px solid transparent;
2747 border-left: 5px solid #000000;
2748}
2749.popover .arrow {
2750 position: absolute;
2751 width: 0;
2752 height: 0;
2753}
2754.popover-inner {
2755 padding: 3px;
2756 width: 280px;
2757 overflow: hidden;
2758 background: #000000;
2759 background: rgba(0, 0, 0, 0.8);
2760 -webkit-border-radius: 6px;
2761 -moz-border-radius: 6px;
2762 border-radius: 6px;
2763 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2764 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2765 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2766}
2767.popover-title {
2768 padding: 9px 15px;
2769 line-height: 1;
2770 background-color: #f5f5f5;
2771 border-bottom: 1px solid #eee;
2772 -webkit-border-radius: 3px 3px 0 0;
2773 -moz-border-radius: 3px 3px 0 0;
2774 border-radius: 3px 3px 0 0;
2775}
2776.popover-content {
2777 padding: 14px;
2778 background-color: #ffffff;
2779 -webkit-border-radius: 0 0 3px 3px;
2780 -moz-border-radius: 0 0 3px 3px;
2781 border-radius: 0 0 3px 3px;
2782 -webkit-background-clip: padding-box;
2783 -moz-background-clip: padding-box;
2784 background-clip: padding-box;
2785}
2786.popover-content p, .popover-content ul, .popover-content ol {
2787 margin-bottom: 0;
2788}
2789/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302790 * erpnext/startup/startup.css
2791 */h1, h2, h3, h4, h5 {
2792 font-family: Tahoma, Arial, Verdana, sans-serif;
2793 font-weight: bold;
2794}
2795
2796body {
2797 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
2798 font-size: 12px;
2799}
2800
2801span, div, td, input, textarea, button, select {
2802 font-family: inherit;
2803}
2804
2805body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302806}
2807
2808.erpnext-footer {
2809 margin: 3px auto;
2810 color: #888;
2811 text-align: center;
2812}
2813
2814.erpnext-footer a, .erpnext-footer a:hover, .erpnext-footer a:visited {
2815 color: #666;
2816}
2817
2818.module-icons {
2819 background: url(../images/module-icons.png) no-repeat top left;
2820 width:16px;
2821 height:16px;
2822}
2823
2824.module-icons-accounts{ background-position: 0 0; }
2825.module-icons-analysis{ background-position: 0 -66px; }
2826.module-icons-buying{ background-position: 0 -132px; }
2827.module-icons-home{ background-position: 0 -198px; }
2828.module-icons-hr{ background-position: 0 -264px; }
2829.module-icons-people{ background-position: 0 -330px; }
2830.module-icons-production{ background-position: 0 -396px; }
2831.module-icons-projects{ background-position: 0 -462px; }
2832.module-icons-selling{ background-position: 0 -528px; }
2833.module-icons-setup{ background-position: 0 -594px; }
2834.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05302835.module-icons-support{ background-position: 0 -726px; }
2836
2837.topbar-new-comments {
2838 margin: -3px 0px;
2839 padding: 2px;
2840 font-size: 14px;
2841 color: #fff;
2842 background-color: #B00D07;
2843 min-width: 20px;
2844 text-align: center;
2845 display: inline-block;
2846 border-radius: 2px;
2847}