blob: ca0f6a76c649205f441a3a1c384310295a8494dd [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 {
Anand Doshi40ee8d62012-02-24 19:21:47 +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 {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530184 width: 71%;
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%;
Anand Doshi40ee8d62012-02-24 19:21:47 +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
Anand Doshi40ee8d62012-02-24 19:21:47 +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/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301152 * lib/css/legacy/sidebar.css
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301153 */div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301154}
1155
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301156div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301157 font-size: 14px;
1158 font-weight: bold;
1159 color: #555;
1160 margin-bottom: 12px;
1161}
1162
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301163div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301164 margin-bottom: 11px;
1165 overflow: hidden;
1166}
1167
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301168div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301169 font-size: 12px;
1170 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301171 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301172}
1173
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301174div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301175 margin: 7px 11px 11px 11px;
1176}
1177
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301178div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301179 margin-bottom: 7px;
1180}
1181
Rushabh Mehtad0251332012-02-21 17:26:50 +05301182div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301183 font-size: 11px;
1184 color: #666;
1185}
Anand Doshi40ee8d62012-02-24 19:21:47 +05301186
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301187/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301188 * lib/css/bootstrap/headings.css
1189 *//* heading from bootstrap */
1190
1191h1,
1192h2,
1193h3,
1194h4,
1195h5,
1196h6 {
1197 margin: 0;
1198 font-weight: bold;
1199 color: #333333;
1200 text-rendering: optimizelegibility;
1201 margin-bottom: 0.3em;
1202}
1203h1 small,
1204h2 small,
1205h3 small,
1206h4 small,
1207h5 small,
1208h6 small {
1209 font-weight: normal;
1210 color: #999999;
1211}
1212h1 {
1213 font-size: 30px;
1214 line-height: 36px;
1215}
1216h1 small {
1217 font-size: 18px;
1218}
1219h2 {
1220 font-size: 24px;
1221 line-height: 36px;
1222}
1223h2 small {
1224 font-size: 18px;
1225}
1226h3 {
1227 line-height: 27px;
1228 font-size: 18px;
1229}
1230h3 small {
1231 font-size: 14px;
1232}
1233h4, h5, h6 {
1234 line-height: 18px;
1235}
1236h4 {
1237 font-size: 14px;
1238}
1239h4 small {
1240 font-size: 12px;
1241}
1242h5 {
1243 font-size: 12px;
1244}
1245h6 {
1246 font-size: 11px;
1247 color: #999999;
1248 text-transform: uppercase;
1249}
1250/*
1251 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301252 */.close {
1253 float: right;
1254 font-size: 20px;
1255 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301256 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301257 color: #000000;
1258 text-shadow: 0 1px 0 #ffffff;
1259 opacity: 0.2;
1260 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301261}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301262.close:hover {
1263 color: #000000;
1264 text-decoration: none;
1265 opacity: 0.4;
1266 filter: alpha(opacity=40);
1267 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301268}
1269.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301270 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301271 padding: 4px 10px 4px;
1272 font-size: 13px;
1273 line-height: 18px;
1274 color: #333333;
1275 text-align: center;
1276 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1277 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301278 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1279 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1280 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1281 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1282 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1283 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301284 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301285 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301286 border: 1px solid #ccc;
1287 border-bottom-color: #bbb;
1288 -webkit-border-radius: 4px;
1289 -moz-border-radius: 4px;
1290 border-radius: 4px;
1291 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1292 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1293 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 +05301294 cursor: pointer;
1295 *margin-left: .3em;
1296}
1297.btn:first-child {
1298 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301299}
1300.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301301 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301302 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301303 background-color: #e6e6e6;
1304 background-position: 0 -15px;
1305 -webkit-transition: background-position 0.1s linear;
1306 -moz-transition: background-position 0.1s linear;
1307 -ms-transition: background-position 0.1s linear;
1308 -o-transition: background-position 0.1s linear;
1309 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301310}
1311.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301312 outline: thin dotted;
1313 outline: 5px auto -webkit-focus-ring-color;
1314 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301315}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301316.btn.active, .btn:active {
1317 background-image: none;
1318 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1319 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1320 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1321 background-color: #e6e6e6;
1322 background-color: #d9d9d9 \9;
1323 color: rgba(0, 0, 0, 0.5);
1324 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301325}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301326.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301327 cursor: default;
1328 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301329 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301330 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301331 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301332 -webkit-box-shadow: none;
1333 -moz-box-shadow: none;
1334 box-shadow: none;
1335}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301336.btn-large {
1337 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301338 font-size: 15px;
1339 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301340 -webkit-border-radius: 5px;
1341 -moz-border-radius: 5px;
1342 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301343}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301344.btn-large .icon {
1345 margin-top: 1px;
1346}
1347.btn-small {
1348 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301349 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301350 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301351}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301352.btn-small .icon {
1353 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301354}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301355.btn-primary,
1356.btn-primary:hover,
1357.btn-warning,
1358.btn-warning:hover,
1359.btn-danger,
1360.btn-danger:hover,
1361.btn-success,
1362.btn-success:hover,
1363.btn-info,
1364.btn-info:hover {
1365 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1366 color: #ffffff;
1367}
1368.btn-primary.active,
1369.btn-warning.active,
1370.btn-danger.active,
1371.btn-success.active,
1372.btn-info.active {
1373 color: rgba(255, 255, 255, 0.75);
1374}
1375.btn-primary {
1376 background-color: #006dcc;
1377 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1378 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1379 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1380 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1381 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1382 background-image: linear-gradient(top, #0088cc, #0044cc);
1383 background-repeat: repeat-x;
1384 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1385 border-color: #0044cc #0044cc #002a80;
1386 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1387 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1388}
1389.btn-primary:hover,
1390.btn-primary:active,
1391.btn-primary.active,
1392.btn-primary.disabled,
1393.btn-primary[disabled] {
1394 background-color: #0044cc;
1395}
1396.btn-primary:active, .btn-primary.active {
1397 background-color: #003399 \9;
1398}
1399.btn-warning {
1400 background-color: #faa732;
1401 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1402 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1403 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1404 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1405 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1406 background-image: linear-gradient(top, #fbb450, #f89406);
1407 background-repeat: repeat-x;
1408 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1409 border-color: #f89406 #f89406 #ad6704;
1410 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1411 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1412}
1413.btn-warning:hover,
1414.btn-warning:active,
1415.btn-warning.active,
1416.btn-warning.disabled,
1417.btn-warning[disabled] {
1418 background-color: #f89406;
1419}
1420.btn-warning:active, .btn-warning.active {
1421 background-color: #c67605 \9;
1422}
1423.btn-danger {
1424 background-color: #da4f49;
1425 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1426 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1427 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1428 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1429 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1430 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1431 background-repeat: repeat-x;
1432 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1433 border-color: #bd362f #bd362f #802420;
1434 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1435 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1436}
1437.btn-danger:hover,
1438.btn-danger:active,
1439.btn-danger.active,
1440.btn-danger.disabled,
1441.btn-danger[disabled] {
1442 background-color: #bd362f;
1443}
1444.btn-danger:active, .btn-danger.active {
1445 background-color: #942a25 \9;
1446}
1447.btn-success {
1448 background-color: #5bb75b;
1449 background-image: -moz-linear-gradient(top, #62c462, #51a351);
1450 background-image: -ms-linear-gradient(top, #62c462, #51a351);
1451 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1452 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1453 background-image: -o-linear-gradient(top, #62c462, #51a351);
1454 background-image: linear-gradient(top, #62c462, #51a351);
1455 background-repeat: repeat-x;
1456 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1457 border-color: #51a351 #51a351 #387038;
1458 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1459 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1460}
1461.btn-success:hover,
1462.btn-success:active,
1463.btn-success.active,
1464.btn-success.disabled,
1465.btn-success[disabled] {
1466 background-color: #51a351;
1467}
1468.btn-success:active, .btn-success.active {
1469 background-color: #408140 \9;
1470}
1471.btn-info {
1472 background-color: #49afcd;
1473 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1474 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1475 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1476 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1477 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1478 background-image: linear-gradient(top, #5bc0de, #2f96b4);
1479 background-repeat: repeat-x;
1480 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1481 border-color: #2f96b4 #2f96b4 #1f6377;
1482 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1483 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1484}
1485.btn-info:hover,
1486.btn-info:active,
1487.btn-info.active,
1488.btn-info.disabled,
1489.btn-info[disabled] {
1490 background-color: #2f96b4;
1491}
1492.btn-info:active, .btn-info.active {
1493 background-color: #24748c \9;
1494}
1495button.btn, input[type="submit"].btn {
1496 *padding-top: 2px;
1497 *padding-bottom: 2px;
1498}
1499button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301500 padding: 0;
1501 border: 0;
1502}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301503button.btn.large, input[type="submit"].btn.large {
1504 *padding-top: 7px;
1505 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301506}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301507button.btn.small, input[type="submit"].btn.small {
1508 *padding-top: 3px;
1509 *padding-bottom: 3px;
1510}
1511.btn-group {
1512 position: relative;
1513 *zoom: 1;
1514 *margin-left: .3em;
1515}
1516.btn-group:before, .btn-group:after {
1517 display: table;
1518 content: "";
1519}
1520.btn-group:after {
1521 clear: both;
1522}
1523.btn-group:first-child {
1524 *margin-left: 0;
1525}
1526.btn-group + .btn-group {
1527 margin-left: 5px;
1528}
1529.btn-toolbar {
1530 margin-top: 9px;
1531 margin-bottom: 9px;
1532}
1533.btn-toolbar .btn-group {
1534 display: inline-block;
1535 *display: inline;
1536 /* IE7 inline-block hack */
1537
1538 *zoom: 1;
1539}
1540.btn-group .btn {
1541 position: relative;
1542 float: left;
1543 margin-left: -1px;
1544 -webkit-border-radius: 0;
1545 -moz-border-radius: 0;
1546 border-radius: 0;
1547}
1548.btn-group .btn:first-child {
1549 margin-left: 0;
1550 -webkit-border-top-left-radius: 4px;
1551 -moz-border-radius-topleft: 4px;
1552 border-top-left-radius: 4px;
1553 -webkit-border-bottom-left-radius: 4px;
1554 -moz-border-radius-bottomleft: 4px;
1555 border-bottom-left-radius: 4px;
1556}
1557.btn-group .btn:last-child, .btn-group .dropdown-toggle {
1558 -webkit-border-top-right-radius: 4px;
1559 -moz-border-radius-topright: 4px;
1560 border-top-right-radius: 4px;
1561 -webkit-border-bottom-right-radius: 4px;
1562 -moz-border-radius-bottomright: 4px;
1563 border-bottom-right-radius: 4px;
1564}
1565.btn-group .btn.large:first-child {
1566 margin-left: 0;
1567 -webkit-border-top-left-radius: 6px;
1568 -moz-border-radius-topleft: 6px;
1569 border-top-left-radius: 6px;
1570 -webkit-border-bottom-left-radius: 6px;
1571 -moz-border-radius-bottomleft: 6px;
1572 border-bottom-left-radius: 6px;
1573}
1574.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
1575 -webkit-border-top-right-radius: 6px;
1576 -moz-border-radius-topright: 6px;
1577 border-top-right-radius: 6px;
1578 -webkit-border-bottom-right-radius: 6px;
1579 -moz-border-radius-bottomright: 6px;
1580 border-bottom-right-radius: 6px;
1581}
1582.btn-group .btn:hover,
1583.btn-group .btn:focus,
1584.btn-group .btn:active,
1585.btn-group .btn.active {
1586 z-index: 2;
1587}
1588.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
1589 outline: 0;
1590}
1591.btn-group .dropdown-toggle {
1592 padding-left: 8px;
1593 padding-right: 8px;
1594 -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);
1595 -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);
1596 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);
1597 *padding-top: 5px;
1598 *padding-bottom: 5px;
1599}
1600.btn-group.open {
1601 *z-index: 1000;
1602}
1603.btn-group.open .dropdown-menu {
1604 display: block;
1605 margin-top: 1px;
1606 -webkit-border-radius: 5px;
1607 -moz-border-radius: 5px;
1608 border-radius: 5px;
1609}
1610.btn-group.open .dropdown-toggle {
1611 background-image: none;
1612 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1613 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1614 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1615}
1616.btn .caret {
1617 margin-top: 7px;
1618 margin-left: 0;
1619}
1620.btn:hover .caret, .open.btn-group .caret {
1621 opacity: 1;
1622 filter: alpha(opacity=100);
1623}
1624.btn-primary .caret,
1625.btn-danger .caret,
1626.btn-info .caret,
1627.btn-success .caret {
1628 border-top-color: #ffffff;
1629 opacity: 0.75;
1630 filter: alpha(opacity=75);
1631}
1632.btn-small .caret {
1633 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301634}
1635/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301636 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301637 */.nav {
1638 margin-left: 0;
1639 margin-bottom: 18px;
1640 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301641}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301642.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301643 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301644}
1645.nav > li > a:hover {
1646 text-decoration: none;
1647 background-color: #eeeeee;
1648}
1649.nav-list {
1650 padding-left: 14px;
1651 padding-right: 14px;
1652 margin-bottom: 0;
1653}
1654.nav-list > li > a, .nav-list .nav-header {
1655 display: block;
1656 padding: 3px 15px;
1657 margin-left: -15px;
1658 margin-right: -15px;
1659 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1660}
1661.nav-list .nav-header {
1662 font-size: 11px;
1663 font-weight: bold;
1664 line-height: 18px;
1665 color: #999999;
1666 text-transform: uppercase;
1667}
1668.nav-list > li + .nav-header {
1669 margin-top: 9px;
1670}
1671.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301672 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301673 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
1674 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301675}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301676.nav-list [class^="icon-"] {
1677 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301678}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301679.nav-tabs, .nav-pills {
1680 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301681}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301682.nav-tabs:before,
1683.nav-pills:before,
1684.nav-tabs:after,
1685.nav-pills:after {
1686 display: table;
1687 content: "";
1688}
1689.nav-tabs:after, .nav-pills:after {
1690 clear: both;
1691}
1692.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301693 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301694}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301695.nav-tabs > li > a, .nav-pills > li > a {
1696 padding-right: 12px;
1697 padding-left: 12px;
1698 margin-right: 2px;
1699 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301700}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301701.nav-tabs {
1702 border-bottom: 1px solid #ddd;
1703}
1704.nav-tabs > li {
1705 margin-bottom: -1px;
1706}
1707.nav-tabs > li > a {
1708 padding-top: 9px;
1709 padding-bottom: 9px;
1710 border: 1px solid transparent;
1711 -webkit-border-radius: 4px 4px 0 0;
1712 -moz-border-radius: 4px 4px 0 0;
1713 border-radius: 4px 4px 0 0;
1714}
1715.nav-tabs > li > a:hover {
1716 border-color: #eeeeee #eeeeee #dddddd;
1717}
1718.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
1719 color: #555555;
1720 background-color: #ffffff;
1721 border: 1px solid #ddd;
1722 border-bottom-color: transparent;
1723 cursor: default;
1724}
1725.nav-pills > li > a {
1726 padding-top: 8px;
1727 padding-bottom: 8px;
1728 margin-top: 2px;
1729 margin-bottom: 2px;
1730 -webkit-border-radius: 5px;
1731 -moz-border-radius: 5px;
1732 border-radius: 5px;
1733}
1734.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301735 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301736 background-color: #0088cc;
1737}
1738.nav-stacked > li {
1739 float: none;
1740}
1741.nav-stacked > li > a {
1742 margin-right: 0;
1743}
1744.nav-tabs.nav-stacked {
1745 border-bottom: 0;
1746}
1747.nav-tabs.nav-stacked > li > a {
1748 border: 1px solid #ddd;
1749 -webkit-border-radius: 0;
1750 -moz-border-radius: 0;
1751 border-radius: 0;
1752}
1753.nav-tabs.nav-stacked > li:first-child > a {
1754 -webkit-border-radius: 4px 4px 0 0;
1755 -moz-border-radius: 4px 4px 0 0;
1756 border-radius: 4px 4px 0 0;
1757}
1758.nav-tabs.nav-stacked > li:last-child > a {
1759 -webkit-border-radius: 0 0 4px 4px;
1760 -moz-border-radius: 0 0 4px 4px;
1761 border-radius: 0 0 4px 4px;
1762}
1763.nav-tabs.nav-stacked > li > a:hover {
1764 border-color: #ddd;
1765 z-index: 2;
1766}
1767.nav-pills.nav-stacked > li > a {
1768 margin-bottom: 3px;
1769}
1770.nav-pills.nav-stacked > li:last-child > a {
1771 margin-bottom: 1px;
1772}
1773.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1774 margin-top: 1px;
1775 border-width: 1px;
1776}
1777.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301778 -webkit-border-radius: 4px;
1779 -moz-border-radius: 4px;
1780 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301781}
1782.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1783 border-top-color: #0088cc;
1784 margin-top: 6px;
1785}
1786.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1787 border-top-color: #005580;
1788}
1789.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1790 border-top-color: #333333;
1791}
1792.nav > .dropdown.active > a:hover {
1793 color: #000000;
1794 cursor: pointer;
1795}
1796.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1797 color: #ffffff;
1798 background-color: #999999;
1799 border-color: #999999;
1800}
1801.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1802 border-top-color: #ffffff;
1803 opacity: 1;
1804 filter: alpha(opacity=100);
1805}
1806
1807.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301808 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301809 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301810}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301811.navbar-inner {
1812 padding-left: 20px;
1813 padding-right: 20px;
1814 background-color: #2c2c2c;
1815 background-image: -moz-linear-gradient(top, #333333, #222222);
1816 background-image: -ms-linear-gradient(top, #333333, #222222);
1817 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1818 background-image: -webkit-linear-gradient(top, #333333, #222222);
1819 background-image: -o-linear-gradient(top, #333333, #222222);
1820 background-image: linear-gradient(top, #333333, #222222);
1821 background-repeat: repeat-x;
1822 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1823 -webkit-border-radius: 4px;
1824 -moz-border-radius: 4px;
1825 border-radius: 4px;
1826 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1827 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1828 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1829}
1830.btn-navbar {
1831 display: none;
1832 float: right;
1833 padding: 7px 10px;
1834 margin-left: 5px;
1835 margin-right: 5px;
1836 background-color: #2c2c2c;
1837 background-image: -moz-linear-gradient(top, #333333, #222222);
1838 background-image: -ms-linear-gradient(top, #333333, #222222);
1839 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1840 background-image: -webkit-linear-gradient(top, #333333, #222222);
1841 background-image: -o-linear-gradient(top, #333333, #222222);
1842 background-image: linear-gradient(top, #333333, #222222);
1843 background-repeat: repeat-x;
1844 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1845 border-color: #222222 #222222 #000000;
1846 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1847 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1848 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1849 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1850 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1851}
1852.btn-navbar:hover,
1853.btn-navbar:active,
1854.btn-navbar.active,
1855.btn-navbar.disabled,
1856.btn-navbar[disabled] {
1857 background-color: #222222;
1858}
1859.btn-navbar:active, .btn-navbar.active {
1860 background-color: #080808 \9;
1861}
1862.btn-navbar .icon-bar {
1863 display: block;
1864 width: 18px;
1865 height: 2px;
1866 background-color: #f5f5f5;
1867 -webkit-border-radius: 1px;
1868 -moz-border-radius: 1px;
1869 border-radius: 1px;
1870 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1871 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1872 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1873}
1874.btn-navbar .icon-bar + .icon-bar {
1875 margin-top: 3px;
1876}
1877.nav-collapse.collapse {
1878 height: auto;
1879}
1880.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301881 text-decoration: none;
1882}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301883.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301884 float: left;
1885 display: block;
1886 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301887 font-size: 20px;
1888 font-weight: 200;
1889 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301890 color: #ffffff;
1891}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301892.navbar .navbar-text {
1893 margin-bottom: 0;
1894 line-height: 40px;
1895 color: #999999;
1896}
1897.navbar .navbar-text a:hover {
1898 color: #ffffff;
1899 background-color: transparent;
1900}
1901.navbar .btn, .navbar .btn-group {
1902 margin-top: 5px;
1903}
1904.navbar .btn-group .btn {
1905 margin-top: 0;
1906}
1907.navbar-form {
1908 margin-bottom: 0;
1909 *zoom: 1;
1910}
1911.navbar-form:before, .navbar-form:after {
1912 display: table;
1913 content: "";
1914}
1915.navbar-form:after {
1916 clear: both;
1917}
1918.navbar-form input, .navbar-form select {
1919 display: inline-block;
1920 margin-top: 5px;
1921 margin-bottom: 0;
1922}
1923.navbar-form .radio, .navbar-form .checkbox {
1924 margin-top: 5px;
1925}
1926.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1927 margin-top: 3px;
1928}
1929.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301930 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301931 float: left;
1932 margin-top: 6px;
1933 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301934}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301935.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301936 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301937 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1938 font-size: 13px;
1939 font-weight: normal;
1940 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301941 color: #ffffff;
1942 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301943 background: #666;
1944 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301945 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301946 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1947 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1948 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 +05301949 -webkit-transition: none;
1950 -moz-transition: none;
1951 -ms-transition: none;
1952 -o-transition: none;
1953 transition: none;
1954}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301955.navbar-search .search-query :-moz-placeholder {
1956 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301957}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301958.navbar-search .search-query::-webkit-input-placeholder {
1959 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301960}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301961.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301962 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301963 background-color: #999999;
1964 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301965}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301966.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301967 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301968 color: #333333;
1969 text-shadow: 0 1px 0 #ffffff;
1970 background-color: #ffffff;
1971 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301972 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1973 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1974 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301975 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301976}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301977.navbar-fixed-top {
1978 position: fixed;
1979 top: 0;
1980 right: 0;
1981 left: 0;
1982 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301983}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301984.navbar-fixed-top .navbar-inner {
1985 padding-left: 0;
1986 padding-right: 0;
1987 -webkit-border-radius: 0;
1988 -moz-border-radius: 0;
1989 border-radius: 0;
1990}
1991.navbar .nav {
1992 position: relative;
1993 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301994 display: block;
1995 float: left;
1996 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301997}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301998.navbar .nav.pull-right {
1999 float: right;
2000}
2001.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302002 display: block;
2003 float: left;
2004}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302005.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302006 float: none;
2007 padding: 10px 10px 11px;
2008 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302009 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302010 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302011 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302012}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302013.navbar .nav > li > a:hover {
2014 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302015 color: #ffffff;
2016 text-decoration: none;
2017}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302018.navbar .nav .active > a, .navbar .nav .active > a:hover {
2019 color: #ffffff;
2020 text-decoration: none;
2021 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302022 background-color: rgba(0, 0, 0, 0.5);
2023}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302024.navbar .divider-vertical {
2025 height: 40px;
2026 width: 1px;
2027 margin: 0 9px;
2028 overflow: hidden;
2029 background-color: #222222;
2030 border-right: 1px solid #333333;
2031}
2032.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302033 margin-left: 10px;
2034 margin-right: 0;
2035}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302036.navbar .dropdown-menu {
2037 margin-top: 1px;
2038 -webkit-border-radius: 4px;
2039 -moz-border-radius: 4px;
2040 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302041}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302042.navbar .dropdown-menu:before {
2043 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302044 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302045 border-left: 7px solid transparent;
2046 border-right: 7px solid transparent;
2047 border-bottom: 7px solid #ccc;
2048 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302049 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302050 top: -7px;
2051 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302052}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302053.navbar .dropdown-menu:after {
2054 content: '';
2055 display: inline-block;
2056 border-left: 6px solid transparent;
2057 border-right: 6px solid transparent;
2058 border-bottom: 6px solid #ffffff;
2059 position: absolute;
2060 top: -6px;
2061 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302062}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302063.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2064 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302065}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302066.navbar .nav .active .caret {
2067 opacity: 1;
2068 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302069}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302070.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2071 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302072}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302073.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302074 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302075}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302076.navbar .nav.pull-right .dropdown-menu {
2077 left: auto;
2078 right: 0;
2079}
2080.navbar .nav.pull-right .dropdown-menu:before {
2081 left: auto;
2082 right: 12px;
2083}
2084.navbar .nav.pull-right .dropdown-menu:after {
2085 left: auto;
2086 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302087}
2088
2089/*extra size menus for recent*/
2090.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2091 width: 260px !important;
2092 max-width: 260px !important;
2093}
2094
2095/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302096.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302097 display: block;
2098 float: right;
2099 width: 20px;
2100 margin-bottom: -5px;
2101 margin-top: 10px;
2102 visibility: hidden;
2103}
2104
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302105.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302106 padding: 0px 20px;
2107}
2108/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302109 * lib/css/bootstrap/dropdown.css
2110 */.dropdown {
2111 position: relative;
2112}
2113.dropdown-toggle {
2114 *margin-bottom: -3px;
2115}
2116.dropdown-toggle:active, .open .dropdown-toggle {
2117 outline: 0;
2118}
2119.caret {
2120 display: inline-block;
2121 width: 0;
2122 height: 0;
2123 text-indent: -99999px;
2124 *text-indent: 0;
2125 vertical-align: top;
2126 border-left: 4px solid transparent;
2127 border-right: 4px solid transparent;
2128 border-top: 4px solid #000000;
2129 opacity: 0.3;
2130 filter: alpha(opacity=30);
2131 content: "\2193";
2132}
2133.dropdown .caret {
2134 margin-top: 8px;
2135 margin-left: 2px;
2136}
2137.dropdown:hover .caret, .open.dropdown .caret {
2138 opacity: 1;
2139 filter: alpha(opacity=100);
2140}
2141.dropdown-menu {
2142 position: absolute;
2143 top: 100%;
2144 left: 0;
2145 z-index: 1000;
2146 float: left;
2147 display: none;
2148 min-width: 160px;
2149 max-width: 220px;
2150 _width: 160px;
2151 padding: 4px 0;
2152 margin: 0;
2153 list-style: none;
2154 background-color: #ffffff;
2155 border-color: #ccc;
2156 border-color: rgba(0, 0, 0, 0.2);
2157 border-style: solid;
2158 border-width: 1px;
2159 -webkit-border-radius: 0 0 5px 5px;
2160 -moz-border-radius: 0 0 5px 5px;
2161 border-radius: 0 0 5px 5px;
2162 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2163 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2164 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2165 -webkit-background-clip: padding-box;
2166 -moz-background-clip: padding;
2167 background-clip: padding-box;
2168 *border-right-width: 2px;
2169 *border-bottom-width: 2px;
2170}
2171.dropdown-menu.bottom-up {
2172 top: auto;
2173 bottom: 100%;
2174 margin-bottom: 2px;
2175}
2176.dropdown-menu .divider {
2177 height: 1px;
2178 margin: 5px 1px;
2179 overflow: hidden;
2180 background-color: #e5e5e5;
2181 border-bottom: 1px solid #ffffff;
2182 *width: 100%;
2183 *margin: -5px 0 5px;
2184}
2185.dropdown-menu a {
2186 display: block;
2187 padding: 3px 15px;
2188 clear: both;
2189 font-weight: normal;
2190 line-height: 18px;
2191 color: #555555;
2192 white-space: nowrap;
2193}
2194.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2195 color: #ffffff;
2196 text-decoration: none;
2197 background-color: #0088cc;
2198}
2199.dropdown.open {
2200 *z-index: 1000;
2201}
2202.dropdown.open .dropdown-toggle {
2203 color: #ffffff;
2204 background: #ccc;
2205 background: rgba(0, 0, 0, 0.3);
2206}
2207.dropdown.open .dropdown-menu {
2208 display: block;
2209}
2210/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302211 * lib/css/bootstrap/tooltip.css
2212 */.tooltip {
2213 position: absolute;
2214 z-index: 1020;
2215 display: block;
2216 visibility: visible;
2217 padding: 5px;
2218 font-size: 11px;
2219 opacity: 0;
2220 filter: alpha(opacity=0);
2221}
2222.tooltip.in {
2223 opacity: 0.8;
2224 filter: alpha(opacity=80);
2225}
2226.tooltip.top {
2227 margin-top: -2px;
2228}
2229.tooltip.right {
2230 margin-left: 2px;
2231}
2232.tooltip.bottom {
2233 margin-top: 2px;
2234}
2235.tooltip.left {
2236 margin-left: -2px;
2237}
2238.tooltip.top .tooltip-arrow {
2239 bottom: 0;
2240 left: 50%;
2241 margin-left: -5px;
2242 border-left: 5px solid transparent;
2243 border-right: 5px solid transparent;
2244 border-top: 5px solid #000000;
2245}
2246.tooltip.left .tooltip-arrow {
2247 top: 50%;
2248 right: 0;
2249 margin-top: -5px;
2250 border-top: 5px solid transparent;
2251 border-bottom: 5px solid transparent;
2252 border-left: 5px solid #000000;
2253}
2254.tooltip.bottom .tooltip-arrow {
2255 top: 0;
2256 left: 50%;
2257 margin-left: -5px;
2258 border-left: 5px solid transparent;
2259 border-right: 5px solid transparent;
2260 border-bottom: 5px solid #000000;
2261}
2262.tooltip.right .tooltip-arrow {
2263 top: 50%;
2264 left: 0;
2265 margin-top: -5px;
2266 border-top: 5px solid transparent;
2267 border-bottom: 5px solid transparent;
2268 border-right: 5px solid #000000;
2269}
2270.tooltip-inner {
2271 max-width: 200px;
2272 padding: 3px 8px;
2273 color: #ffffff;
2274 text-align: center;
2275 text-decoration: none;
2276 background-color: #000000;
2277 -webkit-border-radius: 4px;
2278 -moz-border-radius: 4px;
2279 border-radius: 4px;
2280}
2281.tooltip-arrow {
2282 position: absolute;
2283 width: 0;
2284 height: 0;
2285}
2286.popover {
2287 position: absolute;
2288 top: 0;
2289 left: 0;
2290 z-index: 1010;
2291 display: none;
2292 padding: 5px;
2293}
2294.popover.top {
2295 margin-top: -5px;
2296}
2297.popover.right {
2298 margin-left: 5px;
2299}
2300.popover.bottom {
2301 margin-top: 5px;
2302}
2303.popover.left {
2304 margin-left: -5px;
2305}
2306.popover.top .arrow {
2307 bottom: 0;
2308 left: 50%;
2309 margin-left: -5px;
2310 border-left: 5px solid transparent;
2311 border-right: 5px solid transparent;
2312 border-top: 5px solid #000000;
2313}
2314.popover.right .arrow {
2315 top: 50%;
2316 left: 0;
2317 margin-top: -5px;
2318 border-top: 5px solid transparent;
2319 border-bottom: 5px solid transparent;
2320 border-right: 5px solid #000000;
2321}
2322.popover.bottom .arrow {
2323 top: 0;
2324 left: 50%;
2325 margin-left: -5px;
2326 border-left: 5px solid transparent;
2327 border-right: 5px solid transparent;
2328 border-bottom: 5px solid #000000;
2329}
2330.popover.left .arrow {
2331 top: 50%;
2332 right: 0;
2333 margin-top: -5px;
2334 border-top: 5px solid transparent;
2335 border-bottom: 5px solid transparent;
2336 border-left: 5px solid #000000;
2337}
2338.popover .arrow {
2339 position: absolute;
2340 width: 0;
2341 height: 0;
2342}
2343.popover-inner {
2344 padding: 3px;
2345 width: 280px;
2346 overflow: hidden;
2347 background: #000000;
2348 background: rgba(0, 0, 0, 0.8);
2349 -webkit-border-radius: 6px;
2350 -moz-border-radius: 6px;
2351 border-radius: 6px;
2352 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2353 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2354 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2355}
2356.popover-title {
2357 padding: 9px 15px;
2358 line-height: 1;
2359 background-color: #f5f5f5;
2360 border-bottom: 1px solid #eee;
2361 -webkit-border-radius: 3px 3px 0 0;
2362 -moz-border-radius: 3px 3px 0 0;
2363 border-radius: 3px 3px 0 0;
2364}
2365.popover-content {
2366 padding: 14px;
2367 background-color: #ffffff;
2368 -webkit-border-radius: 0 0 3px 3px;
2369 -moz-border-radius: 0 0 3px 3px;
2370 border-radius: 0 0 3px 3px;
2371 -webkit-background-clip: padding-box;
2372 -moz-background-clip: padding-box;
2373 background-clip: padding-box;
2374}
2375.popover-content p, .popover-content ul, .popover-content ol {
2376 margin-bottom: 0;
2377}
2378/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302379 * lib/css/bootstrap/label.css
2380 */.label {
2381 padding: 2px 4px 3px;
2382 font-size: 11.049999999999999px;
2383 font-weight: bold;
2384 color: #ffffff;
2385 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2386 background-color: #999999;
2387 -webkit-border-radius: 3px;
2388 -moz-border-radius: 3px;
2389 border-radius: 3px;
2390}
2391.label:hover {
2392 color: #ffffff;
2393 text-decoration: none;
2394}
2395.label-important {
2396 background-color: #b94a48;
2397}
2398.label-important:hover {
2399 background-color: #953b39;
2400}
2401.label-warning {
2402 background-color: #f89406;
2403}
2404.label-warning:hover {
2405 background-color: #c67605;
2406}
2407.label-success {
2408 background-color: #468847;
2409}
2410.label-success:hover {
2411 background-color: #356635;
2412}
2413.label-info {
2414 background-color: #3a87ad;
2415}
2416.label-info:hover {
2417 background-color: #2d6987;
2418}
2419/*
2420 * lib/css/bootstrap/icons.css
2421 */[class^="icon-"], [class*=" icon-"] {
2422 display: inline-block;
2423 width: 14px;
2424 height: 14px;
2425 line-height: 14px;
2426 vertical-align: text-top;
2427 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2428 background-position: 14px 14px;
2429 background-repeat: no-repeat;
2430 *margin-right: .3em;
2431}
2432[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
2433 *margin-left: 0;
2434}
2435.icon-white {
2436 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
2437}
2438.icon-glass {
2439 background-position: 0 0;
2440}
2441.icon-music {
2442 background-position: -24px 0;
2443}
2444.icon-search {
2445 background-position: -48px 0;
2446}
2447.icon-envelope {
2448 background-position: -72px 0;
2449}
2450.icon-heart {
2451 background-position: -96px 0;
2452}
2453.icon-star {
2454 background-position: -120px 0;
2455}
2456.icon-star-empty {
2457 background-position: -144px 0;
2458}
2459.icon-user {
2460 background-position: -168px 0;
2461}
2462.icon-film {
2463 background-position: -192px 0;
2464}
2465.icon-th-large {
2466 background-position: -216px 0;
2467}
2468.icon-th {
2469 background-position: -240px 0;
2470}
2471.icon-th-list {
2472 background-position: -264px 0;
2473}
2474.icon-ok {
2475 background-position: -288px 0;
2476}
2477.icon-remove {
2478 background-position: -312px 0;
2479}
2480.icon-zoom-in {
2481 background-position: -336px 0;
2482}
2483.icon-zoom-out {
2484 background-position: -360px 0;
2485}
2486.icon-off {
2487 background-position: -384px 0;
2488}
2489.icon-signal {
2490 background-position: -408px 0;
2491}
2492.icon-cog {
2493 background-position: -432px 0;
2494}
2495.icon-trash {
2496 background-position: -456px 0;
2497}
2498.icon-home {
2499 background-position: 0 -24px;
2500}
2501.icon-file {
2502 background-position: -24px -24px;
2503}
2504.icon-time {
2505 background-position: -48px -24px;
2506}
2507.icon-road {
2508 background-position: -72px -24px;
2509}
2510.icon-download-alt {
2511 background-position: -96px -24px;
2512}
2513.icon-download {
2514 background-position: -120px -24px;
2515}
2516.icon-upload {
2517 background-position: -144px -24px;
2518}
2519.icon-inbox {
2520 background-position: -168px -24px;
2521}
2522.icon-play-circle {
2523 background-position: -192px -24px;
2524}
2525.icon-repeat {
2526 background-position: -216px -24px;
2527}
2528.icon-refresh {
2529 background-position: -240px -24px;
2530}
2531.icon-list-alt {
2532 background-position: -264px -24px;
2533}
2534.icon-lock {
2535 background-position: -287px -24px;
2536}
2537.icon-flag {
2538 background-position: -312px -24px;
2539}
2540.icon-headphones {
2541 background-position: -336px -24px;
2542}
2543.icon-volume-off {
2544 background-position: -360px -24px;
2545}
2546.icon-volume-down {
2547 background-position: -384px -24px;
2548}
2549.icon-volume-up {
2550 background-position: -408px -24px;
2551}
2552.icon-qrcode {
2553 background-position: -432px -24px;
2554}
2555.icon-barcode {
2556 background-position: -456px -24px;
2557}
2558.icon-tag {
2559 background-position: 0 -48px;
2560}
2561.icon-tags {
2562 background-position: -25px -48px;
2563}
2564.icon-book {
2565 background-position: -48px -48px;
2566}
2567.icon-bookmark {
2568 background-position: -72px -48px;
2569}
2570.icon-print {
2571 background-position: -96px -48px;
2572}
2573.icon-camera {
2574 background-position: -120px -48px;
2575}
2576.icon-font {
2577 background-position: -144px -48px;
2578}
2579.icon-bold {
2580 background-position: -167px -48px;
2581}
2582.icon-italic {
2583 background-position: -192px -48px;
2584}
2585.icon-text-height {
2586 background-position: -216px -48px;
2587}
2588.icon-text-width {
2589 background-position: -240px -48px;
2590}
2591.icon-align-left {
2592 background-position: -264px -48px;
2593}
2594.icon-align-center {
2595 background-position: -288px -48px;
2596}
2597.icon-align-right {
2598 background-position: -312px -48px;
2599}
2600.icon-align-justify {
2601 background-position: -336px -48px;
2602}
2603.icon-list {
2604 background-position: -360px -48px;
2605}
2606.icon-indent-left {
2607 background-position: -384px -48px;
2608}
2609.icon-indent-right {
2610 background-position: -408px -48px;
2611}
2612.icon-facetime-video {
2613 background-position: -432px -48px;
2614}
2615.icon-picture {
2616 background-position: -456px -48px;
2617}
2618.icon-pencil {
2619 background-position: 0 -72px;
2620}
2621.icon-map-marker {
2622 background-position: -24px -72px;
2623}
2624.icon-adjust {
2625 background-position: -48px -72px;
2626}
2627.icon-tint {
2628 background-position: -72px -72px;
2629}
2630.icon-edit {
2631 background-position: -96px -72px;
2632}
2633.icon-share {
2634 background-position: -120px -72px;
2635}
2636.icon-check {
2637 background-position: -144px -72px;
2638}
2639.icon-move {
2640 background-position: -168px -72px;
2641}
2642.icon-step-backward {
2643 background-position: -192px -72px;
2644}
2645.icon-fast-backward {
2646 background-position: -216px -72px;
2647}
2648.icon-backward {
2649 background-position: -240px -72px;
2650}
2651.icon-play {
2652 background-position: -264px -72px;
2653}
2654.icon-pause {
2655 background-position: -288px -72px;
2656}
2657.icon-stop {
2658 background-position: -312px -72px;
2659}
2660.icon-forward {
2661 background-position: -336px -72px;
2662}
2663.icon-fast-forward {
2664 background-position: -360px -72px;
2665}
2666.icon-step-forward {
2667 background-position: -384px -72px;
2668}
2669.icon-eject {
2670 background-position: -408px -72px;
2671}
2672.icon-chevron-left {
2673 background-position: -432px -72px;
2674}
2675.icon-chevron-right {
2676 background-position: -456px -72px;
2677}
2678.icon-plus-sign {
2679 background-position: 0 -96px;
2680}
2681.icon-minus-sign {
2682 background-position: -24px -96px;
2683}
2684.icon-remove-sign {
2685 background-position: -48px -96px;
2686}
2687.icon-ok-sign {
2688 background-position: -72px -96px;
2689}
2690.icon-question-sign {
2691 background-position: -96px -96px;
2692}
2693.icon-info-sign {
2694 background-position: -120px -96px;
2695}
2696.icon-screenshot {
2697 background-position: -144px -96px;
2698}
2699.icon-remove-circle {
2700 background-position: -168px -96px;
2701}
2702.icon-ok-circle {
2703 background-position: -192px -96px;
2704}
2705.icon-ban-circle {
2706 background-position: -216px -96px;
2707}
2708.icon-arrow-left {
2709 background-position: -240px -96px;
2710}
2711.icon-arrow-right {
2712 background-position: -264px -96px;
2713}
2714.icon-arrow-up {
2715 background-position: -289px -96px;
2716}
2717.icon-arrow-down {
2718 background-position: -312px -96px;
2719}
2720.icon-share-alt {
2721 background-position: -336px -96px;
2722}
2723.icon-resize-full {
2724 background-position: -360px -96px;
2725}
2726.icon-resize-small {
2727 background-position: -384px -96px;
2728}
2729.icon-plus {
2730 background-position: -408px -96px;
2731}
2732.icon-minus {
2733 background-position: -433px -96px;
2734}
2735.icon-asterisk {
2736 background-position: -456px -96px;
2737}
2738.icon-exclamation-sign {
2739 background-position: 0 -120px;
2740}
2741.icon-gift {
2742 background-position: -24px -120px;
2743}
2744.icon-leaf {
2745 background-position: -48px -120px;
2746}
2747.icon-fire {
2748 background-position: -72px -120px;
2749}
2750.icon-eye-open {
2751 background-position: -96px -120px;
2752}
2753.icon-eye-close {
2754 background-position: -120px -120px;
2755}
2756.icon-warning-sign {
2757 background-position: -144px -120px;
2758}
2759.icon-plane {
2760 background-position: -168px -120px;
2761}
2762.icon-calendar {
2763 background-position: -192px -120px;
2764}
2765.icon-random {
2766 background-position: -216px -120px;
2767}
2768.icon-comment {
2769 background-position: -240px -120px;
2770}
2771.icon-magnet {
2772 background-position: -264px -120px;
2773}
2774.icon-chevron-up {
2775 background-position: -288px -120px;
2776}
2777.icon-chevron-down {
2778 background-position: -313px -119px;
2779}
2780.icon-retweet {
2781 background-position: -336px -120px;
2782}
2783.icon-shopping-cart {
2784 background-position: -360px -120px;
2785}
2786.icon-folder-close {
2787 background-position: -384px -120px;
2788}
2789.icon-folder-open {
2790 background-position: -408px -120px;
2791}
2792.icon-resize-vertical {
2793 background-position: -432px -119px;
2794}
2795.icon-resize-horizontal {
2796 background-position: -456px -118px;
2797}
2798/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302799 * erpnext/startup/startup.css
2800 */h1, h2, h3, h4, h5 {
2801 font-family: Tahoma, Arial, Verdana, sans-serif;
2802 font-weight: bold;
2803}
2804
2805body {
2806 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
2807 font-size: 12px;
2808}
2809
2810span, div, td, input, textarea, button, select {
2811 font-family: inherit;
2812}
2813
2814body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302815}
2816
2817.erpnext-footer {
2818 margin: 3px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302819 text-align: center;
2820}
2821
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302822.module-icons {
2823 background: url(../images/module-icons.png) no-repeat top left;
2824 width:16px;
2825 height:16px;
2826}
2827
2828.module-icons-accounts{ background-position: 0 0; }
2829.module-icons-analysis{ background-position: 0 -66px; }
2830.module-icons-buying{ background-position: 0 -132px; }
2831.module-icons-home{ background-position: 0 -198px; }
2832.module-icons-hr{ background-position: 0 -264px; }
2833.module-icons-people{ background-position: 0 -330px; }
2834.module-icons-production{ background-position: 0 -396px; }
2835.module-icons-projects{ background-position: 0 -462px; }
2836.module-icons-selling{ background-position: 0 -528px; }
2837.module-icons-setup{ background-position: 0 -594px; }
2838.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05302839.module-icons-support{ background-position: 0 -726px; }
2840
Anand Doshidb628762012-02-24 17:56:00 +05302841.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05302842 margin: -3px 0px;
2843 padding: 2px;
2844 font-size: 14px;
2845 color: #fff;
2846 background-color: #B00D07;
2847 min-width: 20px;
2848 text-align: center;
2849 display: inline-block;
2850 border-radius: 2px;
2851}