blob: f457e960c745a3e99d876b5deed001611a15d972 [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 Doshidb628762012-02-24 17:56:00 +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/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530907 * lib/css/legacy/autosuggest.css
908 *//*
909================================================
910autosuggest, inquisitor style
911================================================
912*/
913
914div.autosuggest
915{
916 position: absolute;
917 margin-top: 3px;
918 border: 1px solid #222;
919}
920
921div.autosuggest ul
922{
923 list-style: none;
924 margin: 0px;
925 padding: 2px;
926 overflow: hidden;
927 background-color: #FFF;
928}
929
930div.autosuggest ul li
931{
932 color: #444;
933 padding: 0;
934 margin: 0;
935 text-align: left;
936}
937
938div.autosuggest ul li a
939{
940 color: #444;
941 display: block;
942 text-decoration: none;
943 position: relative;
944 padding: 0;
945 width: 100%;
946}
947div.autosuggest ul li a:hover
948{
949
950}
951div.autosuggest ul li.as_highlight a:hover
952{
953 background-color: #45A;
954 color: #FFF;
955}
956
957div.autosuggest ul li a span
958{
959 display: block;
960 padding: 3px 6px;
961 color: #444;
962 border-bottom:1px solid #DDD;
963}
964
965div.autosuggest ul li a span small
966{
967 display: block;
968 font-weight: normal;
969 color: #444;
970}
971
972div.autosuggest ul li.as_highlight a span small
973{
974 color: #FFF;
975}
976
977div.autosuggest ul li.as_highlight a span {
978 color: #FFF;
979}
980
981div.autosuggest ul li.as_highlight a
982{
983 color: #FFF;
984 background-color: #45A;
985 cursor: pointer;
986}
987
988div.autosuggest ul li.as_warning
989{
990 font-weight: bold;
991 text-align: center;
992}
993
994div.autosuggest ul em
995{
996 font-style: normal;
997 font-weight: bold;
998}
999
1000/*
1001 * lib/css/legacy/dialog.css
1002 *//***** Dialogs *******/
1003
1004div.dialog_wrapper {
1005 position: absolute;
1006 width: 440px;
1007 display: none;
1008 z-index: 90;
1009 background-color: #FFF;
1010 border: 3px solid #222;
1011 box-shadow:1px 1px 5px #777;
1012 -moz-box-shadow: 1px 1px 5px #777;
1013 -webkit-box-shadow: 1px 1px 5px #777;
1014
1015 border-radius: 5px;
1016 -moz-border-radius: 5px;
1017 -webkit-border-radius: 5px;
1018}
1019
1020div.dialog_head {
1021 height: 22px;
1022 padding: 4px;
1023 background-color: #222;
1024 color: #FFF;
1025}
1026
1027div.dialog_body {
1028 padding: 8px 4px 16px 4px;
1029 border-radius: 5px;
1030 -moz-border-radius: 5px;
1031 -webkit-border-radius: 5px;
1032}
1033
1034div.dialog_back {
1035 position: fixed;
1036 display: none;
1037 top: 0px;
1038 left: 0px;
1039 bottom: 0px;
1040 right: 0px;
1041 background-color: #EEE;
1042 opacity: 0.6;
1043 z-index: 50;
1044 text-align: center;
1045}
1046
1047div.dialog_message {
1048 display: none;
1049 position: absolute;
1050 width: 250px;
1051 font-size: 12px;
1052 z-index: 91;
1053 background-color:#FFF;
1054 padding: 12px;
1055 border: 1px solid #444;
1056}
1057
1058div.dialog_row {
1059 padding: 8px 8px 0px 8px;
1060}
1061
1062div.dialog_row table {
1063 width: 100%;
1064}
1065
1066div.dialog_row table td {
1067}
1068
1069div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
1070 width: 80%;
1071 font-size: 14px;
1072}
1073
1074div.dialog_row table td textarea {
1075 width: 80%;
1076 height: 200px;
1077 font-size: 12px;
1078}
1079
1080/*
1081 * lib/css/legacy/tabs.css
1082 */
1083/******* TABS ********/
1084
1085div.box_label_wrapper {
1086 border-bottom: 6px solid #777;
1087}
1088
1089div.box_label_body {
1090 height: 22px;
1091}
1092
1093ul.box_tabs {
1094 margin: 0px;
1095 padding: 0px;
1096 list-style: none;
1097}
1098
1099ul.box_tabs li {
1100 height: 22px;
1101 float:left;
1102 font-size: 12px;
1103 text-decoration: underline;
1104
1105 background-color: #DDD;
1106
1107 margin:0;
1108 margin-left: 4px;
1109 padding:0 0 0 9px;
1110 cursor: pointer;
1111}
1112
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301113ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301114 display:block;
1115 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301116 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301117}
1118
1119ul.box_tabs li.box_tab_mouseover {
1120 background-color: #BBB;
1121}
1122
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301123ul.box_tabs li.box_tab_selected {
1124 background-color: #777;
1125
1126 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1127 background: -moz-linear-gradient(top, #999, #777);
1128
1129 color: #FFF;
1130 font-weight:bold;
1131
1132}
1133ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301134 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301135}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301136/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301137 * lib/css/legacy/sidebar.css
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301138 */div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301139}
1140
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301141div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301142 font-size: 14px;
1143 font-weight: bold;
1144 color: #555;
1145 margin-bottom: 12px;
1146}
1147
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301148div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301149 margin-bottom: 11px;
1150 overflow: hidden;
1151}
1152
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301153div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301154 font-size: 12px;
1155 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301156 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301157}
1158
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301159div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301160 margin: 7px 11px 11px 11px;
1161}
1162
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301163div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301164 margin-bottom: 7px;
1165}
1166
Rushabh Mehtad0251332012-02-21 17:26:50 +05301167div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301168 font-size: 11px;
1169 color: #666;
1170}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301171/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301172 * lib/css/bootstrap/headings.css
1173 *//* heading from bootstrap */
1174
1175h1,
1176h2,
1177h3,
1178h4,
1179h5,
1180h6 {
1181 margin: 0;
1182 font-weight: bold;
1183 color: #333333;
1184 text-rendering: optimizelegibility;
1185 margin-bottom: 0.3em;
1186}
1187h1 small,
1188h2 small,
1189h3 small,
1190h4 small,
1191h5 small,
1192h6 small {
1193 font-weight: normal;
1194 color: #999999;
1195}
1196h1 {
1197 font-size: 30px;
1198 line-height: 36px;
1199}
1200h1 small {
1201 font-size: 18px;
1202}
1203h2 {
1204 font-size: 24px;
1205 line-height: 36px;
1206}
1207h2 small {
1208 font-size: 18px;
1209}
1210h3 {
1211 line-height: 27px;
1212 font-size: 18px;
1213}
1214h3 small {
1215 font-size: 14px;
1216}
1217h4, h5, h6 {
1218 line-height: 18px;
1219}
1220h4 {
1221 font-size: 14px;
1222}
1223h4 small {
1224 font-size: 12px;
1225}
1226h5 {
1227 font-size: 12px;
1228}
1229h6 {
1230 font-size: 11px;
1231 color: #999999;
1232 text-transform: uppercase;
1233}
1234/*
1235 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301236 */.close {
1237 float: right;
1238 font-size: 20px;
1239 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301240 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301241 color: #000000;
1242 text-shadow: 0 1px 0 #ffffff;
1243 opacity: 0.2;
1244 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301245}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301246.close:hover {
1247 color: #000000;
1248 text-decoration: none;
1249 opacity: 0.4;
1250 filter: alpha(opacity=40);
1251 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301252}
1253.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301254 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301255 padding: 4px 10px 4px;
1256 font-size: 13px;
1257 line-height: 18px;
1258 color: #333333;
1259 text-align: center;
1260 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1261 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301262 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1263 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1264 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1265 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1266 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1267 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301268 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301269 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301270 border: 1px solid #ccc;
1271 border-bottom-color: #bbb;
1272 -webkit-border-radius: 4px;
1273 -moz-border-radius: 4px;
1274 border-radius: 4px;
1275 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1276 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1277 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 +05301278 cursor: pointer;
1279 *margin-left: .3em;
1280}
1281.btn:first-child {
1282 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301283}
1284.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301285 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301286 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301287 background-color: #e6e6e6;
1288 background-position: 0 -15px;
1289 -webkit-transition: background-position 0.1s linear;
1290 -moz-transition: background-position 0.1s linear;
1291 -ms-transition: background-position 0.1s linear;
1292 -o-transition: background-position 0.1s linear;
1293 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301294}
1295.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301296 outline: thin dotted;
1297 outline: 5px auto -webkit-focus-ring-color;
1298 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301299}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301300.btn.active, .btn:active {
1301 background-image: none;
1302 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1303 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1304 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1305 background-color: #e6e6e6;
1306 background-color: #d9d9d9 \9;
1307 color: rgba(0, 0, 0, 0.5);
1308 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301309}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301310.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301311 cursor: default;
1312 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301313 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301314 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301315 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301316 -webkit-box-shadow: none;
1317 -moz-box-shadow: none;
1318 box-shadow: none;
1319}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301320.btn-large {
1321 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301322 font-size: 15px;
1323 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301324 -webkit-border-radius: 5px;
1325 -moz-border-radius: 5px;
1326 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301327}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301328.btn-large .icon {
1329 margin-top: 1px;
1330}
1331.btn-small {
1332 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301333 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301334 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301335}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301336.btn-small .icon {
1337 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301338}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301339.btn-primary,
1340.btn-primary:hover,
1341.btn-warning,
1342.btn-warning:hover,
1343.btn-danger,
1344.btn-danger:hover,
1345.btn-success,
1346.btn-success:hover,
1347.btn-info,
1348.btn-info:hover {
1349 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1350 color: #ffffff;
1351}
1352.btn-primary.active,
1353.btn-warning.active,
1354.btn-danger.active,
1355.btn-success.active,
1356.btn-info.active {
1357 color: rgba(255, 255, 255, 0.75);
1358}
1359.btn-primary {
1360 background-color: #006dcc;
1361 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1362 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1363 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1364 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1365 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1366 background-image: linear-gradient(top, #0088cc, #0044cc);
1367 background-repeat: repeat-x;
1368 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1369 border-color: #0044cc #0044cc #002a80;
1370 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1371 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1372}
1373.btn-primary:hover,
1374.btn-primary:active,
1375.btn-primary.active,
1376.btn-primary.disabled,
1377.btn-primary[disabled] {
1378 background-color: #0044cc;
1379}
1380.btn-primary:active, .btn-primary.active {
1381 background-color: #003399 \9;
1382}
1383.btn-warning {
1384 background-color: #faa732;
1385 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1386 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1387 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1388 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1389 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1390 background-image: linear-gradient(top, #fbb450, #f89406);
1391 background-repeat: repeat-x;
1392 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1393 border-color: #f89406 #f89406 #ad6704;
1394 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1395 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1396}
1397.btn-warning:hover,
1398.btn-warning:active,
1399.btn-warning.active,
1400.btn-warning.disabled,
1401.btn-warning[disabled] {
1402 background-color: #f89406;
1403}
1404.btn-warning:active, .btn-warning.active {
1405 background-color: #c67605 \9;
1406}
1407.btn-danger {
1408 background-color: #da4f49;
1409 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1410 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1411 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1412 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1413 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1414 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1415 background-repeat: repeat-x;
1416 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1417 border-color: #bd362f #bd362f #802420;
1418 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1419 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1420}
1421.btn-danger:hover,
1422.btn-danger:active,
1423.btn-danger.active,
1424.btn-danger.disabled,
1425.btn-danger[disabled] {
1426 background-color: #bd362f;
1427}
1428.btn-danger:active, .btn-danger.active {
1429 background-color: #942a25 \9;
1430}
1431.btn-success {
1432 background-color: #5bb75b;
1433 background-image: -moz-linear-gradient(top, #62c462, #51a351);
1434 background-image: -ms-linear-gradient(top, #62c462, #51a351);
1435 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1436 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1437 background-image: -o-linear-gradient(top, #62c462, #51a351);
1438 background-image: linear-gradient(top, #62c462, #51a351);
1439 background-repeat: repeat-x;
1440 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1441 border-color: #51a351 #51a351 #387038;
1442 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1443 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1444}
1445.btn-success:hover,
1446.btn-success:active,
1447.btn-success.active,
1448.btn-success.disabled,
1449.btn-success[disabled] {
1450 background-color: #51a351;
1451}
1452.btn-success:active, .btn-success.active {
1453 background-color: #408140 \9;
1454}
1455.btn-info {
1456 background-color: #49afcd;
1457 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1458 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1459 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1460 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1461 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1462 background-image: linear-gradient(top, #5bc0de, #2f96b4);
1463 background-repeat: repeat-x;
1464 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1465 border-color: #2f96b4 #2f96b4 #1f6377;
1466 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1467 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1468}
1469.btn-info:hover,
1470.btn-info:active,
1471.btn-info.active,
1472.btn-info.disabled,
1473.btn-info[disabled] {
1474 background-color: #2f96b4;
1475}
1476.btn-info:active, .btn-info.active {
1477 background-color: #24748c \9;
1478}
1479button.btn, input[type="submit"].btn {
1480 *padding-top: 2px;
1481 *padding-bottom: 2px;
1482}
1483button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301484 padding: 0;
1485 border: 0;
1486}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301487button.btn.large, input[type="submit"].btn.large {
1488 *padding-top: 7px;
1489 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301490}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301491button.btn.small, input[type="submit"].btn.small {
1492 *padding-top: 3px;
1493 *padding-bottom: 3px;
1494}
1495.btn-group {
1496 position: relative;
1497 *zoom: 1;
1498 *margin-left: .3em;
1499}
1500.btn-group:before, .btn-group:after {
1501 display: table;
1502 content: "";
1503}
1504.btn-group:after {
1505 clear: both;
1506}
1507.btn-group:first-child {
1508 *margin-left: 0;
1509}
1510.btn-group + .btn-group {
1511 margin-left: 5px;
1512}
1513.btn-toolbar {
1514 margin-top: 9px;
1515 margin-bottom: 9px;
1516}
1517.btn-toolbar .btn-group {
1518 display: inline-block;
1519 *display: inline;
1520 /* IE7 inline-block hack */
1521
1522 *zoom: 1;
1523}
1524.btn-group .btn {
1525 position: relative;
1526 float: left;
1527 margin-left: -1px;
1528 -webkit-border-radius: 0;
1529 -moz-border-radius: 0;
1530 border-radius: 0;
1531}
1532.btn-group .btn:first-child {
1533 margin-left: 0;
1534 -webkit-border-top-left-radius: 4px;
1535 -moz-border-radius-topleft: 4px;
1536 border-top-left-radius: 4px;
1537 -webkit-border-bottom-left-radius: 4px;
1538 -moz-border-radius-bottomleft: 4px;
1539 border-bottom-left-radius: 4px;
1540}
1541.btn-group .btn:last-child, .btn-group .dropdown-toggle {
1542 -webkit-border-top-right-radius: 4px;
1543 -moz-border-radius-topright: 4px;
1544 border-top-right-radius: 4px;
1545 -webkit-border-bottom-right-radius: 4px;
1546 -moz-border-radius-bottomright: 4px;
1547 border-bottom-right-radius: 4px;
1548}
1549.btn-group .btn.large:first-child {
1550 margin-left: 0;
1551 -webkit-border-top-left-radius: 6px;
1552 -moz-border-radius-topleft: 6px;
1553 border-top-left-radius: 6px;
1554 -webkit-border-bottom-left-radius: 6px;
1555 -moz-border-radius-bottomleft: 6px;
1556 border-bottom-left-radius: 6px;
1557}
1558.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
1559 -webkit-border-top-right-radius: 6px;
1560 -moz-border-radius-topright: 6px;
1561 border-top-right-radius: 6px;
1562 -webkit-border-bottom-right-radius: 6px;
1563 -moz-border-radius-bottomright: 6px;
1564 border-bottom-right-radius: 6px;
1565}
1566.btn-group .btn:hover,
1567.btn-group .btn:focus,
1568.btn-group .btn:active,
1569.btn-group .btn.active {
1570 z-index: 2;
1571}
1572.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
1573 outline: 0;
1574}
1575.btn-group .dropdown-toggle {
1576 padding-left: 8px;
1577 padding-right: 8px;
1578 -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);
1579 -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);
1580 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);
1581 *padding-top: 5px;
1582 *padding-bottom: 5px;
1583}
1584.btn-group.open {
1585 *z-index: 1000;
1586}
1587.btn-group.open .dropdown-menu {
1588 display: block;
1589 margin-top: 1px;
1590 -webkit-border-radius: 5px;
1591 -moz-border-radius: 5px;
1592 border-radius: 5px;
1593}
1594.btn-group.open .dropdown-toggle {
1595 background-image: none;
1596 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1597 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1598 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1599}
1600.btn .caret {
1601 margin-top: 7px;
1602 margin-left: 0;
1603}
1604.btn:hover .caret, .open.btn-group .caret {
1605 opacity: 1;
1606 filter: alpha(opacity=100);
1607}
1608.btn-primary .caret,
1609.btn-danger .caret,
1610.btn-info .caret,
1611.btn-success .caret {
1612 border-top-color: #ffffff;
1613 opacity: 0.75;
1614 filter: alpha(opacity=75);
1615}
1616.btn-small .caret {
1617 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301618}
1619/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301620 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301621 */.nav {
1622 margin-left: 0;
1623 margin-bottom: 18px;
1624 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301625}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301626.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301627 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301628}
1629.nav > li > a:hover {
1630 text-decoration: none;
1631 background-color: #eeeeee;
1632}
1633.nav-list {
1634 padding-left: 14px;
1635 padding-right: 14px;
1636 margin-bottom: 0;
1637}
1638.nav-list > li > a, .nav-list .nav-header {
1639 display: block;
1640 padding: 3px 15px;
1641 margin-left: -15px;
1642 margin-right: -15px;
1643 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1644}
1645.nav-list .nav-header {
1646 font-size: 11px;
1647 font-weight: bold;
1648 line-height: 18px;
1649 color: #999999;
1650 text-transform: uppercase;
1651}
1652.nav-list > li + .nav-header {
1653 margin-top: 9px;
1654}
1655.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301656 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301657 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
1658 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301659}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301660.nav-list [class^="icon-"] {
1661 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301662}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301663.nav-tabs, .nav-pills {
1664 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301665}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301666.nav-tabs:before,
1667.nav-pills:before,
1668.nav-tabs:after,
1669.nav-pills:after {
1670 display: table;
1671 content: "";
1672}
1673.nav-tabs:after, .nav-pills:after {
1674 clear: both;
1675}
1676.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301677 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301678}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301679.nav-tabs > li > a, .nav-pills > li > a {
1680 padding-right: 12px;
1681 padding-left: 12px;
1682 margin-right: 2px;
1683 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301684}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301685.nav-tabs {
1686 border-bottom: 1px solid #ddd;
1687}
1688.nav-tabs > li {
1689 margin-bottom: -1px;
1690}
1691.nav-tabs > li > a {
1692 padding-top: 9px;
1693 padding-bottom: 9px;
1694 border: 1px solid transparent;
1695 -webkit-border-radius: 4px 4px 0 0;
1696 -moz-border-radius: 4px 4px 0 0;
1697 border-radius: 4px 4px 0 0;
1698}
1699.nav-tabs > li > a:hover {
1700 border-color: #eeeeee #eeeeee #dddddd;
1701}
1702.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
1703 color: #555555;
1704 background-color: #ffffff;
1705 border: 1px solid #ddd;
1706 border-bottom-color: transparent;
1707 cursor: default;
1708}
1709.nav-pills > li > a {
1710 padding-top: 8px;
1711 padding-bottom: 8px;
1712 margin-top: 2px;
1713 margin-bottom: 2px;
1714 -webkit-border-radius: 5px;
1715 -moz-border-radius: 5px;
1716 border-radius: 5px;
1717}
1718.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301719 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301720 background-color: #0088cc;
1721}
1722.nav-stacked > li {
1723 float: none;
1724}
1725.nav-stacked > li > a {
1726 margin-right: 0;
1727}
1728.nav-tabs.nav-stacked {
1729 border-bottom: 0;
1730}
1731.nav-tabs.nav-stacked > li > a {
1732 border: 1px solid #ddd;
1733 -webkit-border-radius: 0;
1734 -moz-border-radius: 0;
1735 border-radius: 0;
1736}
1737.nav-tabs.nav-stacked > li:first-child > a {
1738 -webkit-border-radius: 4px 4px 0 0;
1739 -moz-border-radius: 4px 4px 0 0;
1740 border-radius: 4px 4px 0 0;
1741}
1742.nav-tabs.nav-stacked > li:last-child > a {
1743 -webkit-border-radius: 0 0 4px 4px;
1744 -moz-border-radius: 0 0 4px 4px;
1745 border-radius: 0 0 4px 4px;
1746}
1747.nav-tabs.nav-stacked > li > a:hover {
1748 border-color: #ddd;
1749 z-index: 2;
1750}
1751.nav-pills.nav-stacked > li > a {
1752 margin-bottom: 3px;
1753}
1754.nav-pills.nav-stacked > li:last-child > a {
1755 margin-bottom: 1px;
1756}
1757.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1758 margin-top: 1px;
1759 border-width: 1px;
1760}
1761.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301762 -webkit-border-radius: 4px;
1763 -moz-border-radius: 4px;
1764 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301765}
1766.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1767 border-top-color: #0088cc;
1768 margin-top: 6px;
1769}
1770.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1771 border-top-color: #005580;
1772}
1773.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1774 border-top-color: #333333;
1775}
1776.nav > .dropdown.active > a:hover {
1777 color: #000000;
1778 cursor: pointer;
1779}
1780.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1781 color: #ffffff;
1782 background-color: #999999;
1783 border-color: #999999;
1784}
1785.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1786 border-top-color: #ffffff;
1787 opacity: 1;
1788 filter: alpha(opacity=100);
1789}
1790
1791.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301792 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301793 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301794}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301795.navbar-inner {
1796 padding-left: 20px;
1797 padding-right: 20px;
1798 background-color: #2c2c2c;
1799 background-image: -moz-linear-gradient(top, #333333, #222222);
1800 background-image: -ms-linear-gradient(top, #333333, #222222);
1801 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1802 background-image: -webkit-linear-gradient(top, #333333, #222222);
1803 background-image: -o-linear-gradient(top, #333333, #222222);
1804 background-image: linear-gradient(top, #333333, #222222);
1805 background-repeat: repeat-x;
1806 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1807 -webkit-border-radius: 4px;
1808 -moz-border-radius: 4px;
1809 border-radius: 4px;
1810 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1811 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1812 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1813}
1814.btn-navbar {
1815 display: none;
1816 float: right;
1817 padding: 7px 10px;
1818 margin-left: 5px;
1819 margin-right: 5px;
1820 background-color: #2c2c2c;
1821 background-image: -moz-linear-gradient(top, #333333, #222222);
1822 background-image: -ms-linear-gradient(top, #333333, #222222);
1823 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1824 background-image: -webkit-linear-gradient(top, #333333, #222222);
1825 background-image: -o-linear-gradient(top, #333333, #222222);
1826 background-image: linear-gradient(top, #333333, #222222);
1827 background-repeat: repeat-x;
1828 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1829 border-color: #222222 #222222 #000000;
1830 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1831 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1832 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1833 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1834 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1835}
1836.btn-navbar:hover,
1837.btn-navbar:active,
1838.btn-navbar.active,
1839.btn-navbar.disabled,
1840.btn-navbar[disabled] {
1841 background-color: #222222;
1842}
1843.btn-navbar:active, .btn-navbar.active {
1844 background-color: #080808 \9;
1845}
1846.btn-navbar .icon-bar {
1847 display: block;
1848 width: 18px;
1849 height: 2px;
1850 background-color: #f5f5f5;
1851 -webkit-border-radius: 1px;
1852 -moz-border-radius: 1px;
1853 border-radius: 1px;
1854 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1855 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1856 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1857}
1858.btn-navbar .icon-bar + .icon-bar {
1859 margin-top: 3px;
1860}
1861.nav-collapse.collapse {
1862 height: auto;
1863}
1864.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301865 text-decoration: none;
1866}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301867.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301868 float: left;
1869 display: block;
1870 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301871 font-size: 20px;
1872 font-weight: 200;
1873 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301874 color: #ffffff;
1875}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301876.navbar .navbar-text {
1877 margin-bottom: 0;
1878 line-height: 40px;
1879 color: #999999;
1880}
1881.navbar .navbar-text a:hover {
1882 color: #ffffff;
1883 background-color: transparent;
1884}
1885.navbar .btn, .navbar .btn-group {
1886 margin-top: 5px;
1887}
1888.navbar .btn-group .btn {
1889 margin-top: 0;
1890}
1891.navbar-form {
1892 margin-bottom: 0;
1893 *zoom: 1;
1894}
1895.navbar-form:before, .navbar-form:after {
1896 display: table;
1897 content: "";
1898}
1899.navbar-form:after {
1900 clear: both;
1901}
1902.navbar-form input, .navbar-form select {
1903 display: inline-block;
1904 margin-top: 5px;
1905 margin-bottom: 0;
1906}
1907.navbar-form .radio, .navbar-form .checkbox {
1908 margin-top: 5px;
1909}
1910.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1911 margin-top: 3px;
1912}
1913.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301914 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301915 float: left;
1916 margin-top: 6px;
1917 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301918}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301919.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301920 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301921 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1922 font-size: 13px;
1923 font-weight: normal;
1924 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301925 color: #ffffff;
1926 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301927 background: #666;
1928 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301929 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301930 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1931 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1932 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 +05301933 -webkit-transition: none;
1934 -moz-transition: none;
1935 -ms-transition: none;
1936 -o-transition: none;
1937 transition: none;
1938}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301939.navbar-search .search-query :-moz-placeholder {
1940 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301941}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301942.navbar-search .search-query::-webkit-input-placeholder {
1943 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301944}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301945.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301946 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301947 background-color: #999999;
1948 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301949}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301950.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301951 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301952 color: #333333;
1953 text-shadow: 0 1px 0 #ffffff;
1954 background-color: #ffffff;
1955 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301956 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1957 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1958 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301959 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301960}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301961.navbar-fixed-top {
1962 position: fixed;
1963 top: 0;
1964 right: 0;
1965 left: 0;
1966 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301967}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301968.navbar-fixed-top .navbar-inner {
1969 padding-left: 0;
1970 padding-right: 0;
1971 -webkit-border-radius: 0;
1972 -moz-border-radius: 0;
1973 border-radius: 0;
1974}
1975.navbar .nav {
1976 position: relative;
1977 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301978 display: block;
1979 float: left;
1980 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301981}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301982.navbar .nav.pull-right {
1983 float: right;
1984}
1985.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301986 display: block;
1987 float: left;
1988}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301989.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301990 float: none;
1991 padding: 10px 10px 11px;
1992 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301993 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301994 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301995 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301996}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301997.navbar .nav > li > a:hover {
1998 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301999 color: #ffffff;
2000 text-decoration: none;
2001}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302002.navbar .nav .active > a, .navbar .nav .active > a:hover {
2003 color: #ffffff;
2004 text-decoration: none;
2005 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302006 background-color: rgba(0, 0, 0, 0.5);
2007}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302008.navbar .divider-vertical {
2009 height: 40px;
2010 width: 1px;
2011 margin: 0 9px;
2012 overflow: hidden;
2013 background-color: #222222;
2014 border-right: 1px solid #333333;
2015}
2016.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302017 margin-left: 10px;
2018 margin-right: 0;
2019}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302020.navbar .dropdown-menu {
2021 margin-top: 1px;
2022 -webkit-border-radius: 4px;
2023 -moz-border-radius: 4px;
2024 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302025}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302026.navbar .dropdown-menu:before {
2027 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302028 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302029 border-left: 7px solid transparent;
2030 border-right: 7px solid transparent;
2031 border-bottom: 7px solid #ccc;
2032 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302033 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302034 top: -7px;
2035 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302036}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302037.navbar .dropdown-menu:after {
2038 content: '';
2039 display: inline-block;
2040 border-left: 6px solid transparent;
2041 border-right: 6px solid transparent;
2042 border-bottom: 6px solid #ffffff;
2043 position: absolute;
2044 top: -6px;
2045 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302046}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302047.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2048 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302049}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302050.navbar .nav .active .caret {
2051 opacity: 1;
2052 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302053}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302054.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2055 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302056}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302057.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302058 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302059}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302060.navbar .nav.pull-right .dropdown-menu {
2061 left: auto;
2062 right: 0;
2063}
2064.navbar .nav.pull-right .dropdown-menu:before {
2065 left: auto;
2066 right: 12px;
2067}
2068.navbar .nav.pull-right .dropdown-menu:after {
2069 left: auto;
2070 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302071}
2072
2073/*extra size menus for recent*/
2074.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2075 width: 260px !important;
2076 max-width: 260px !important;
2077}
2078
2079/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302080.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302081 display: block;
2082 float: right;
2083 width: 20px;
2084 margin-bottom: -5px;
2085 margin-top: 10px;
2086 visibility: hidden;
2087}
2088
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302089.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302090 padding: 0px 20px;
2091}
2092/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302093 * lib/css/bootstrap/dropdown.css
2094 */.dropdown {
2095 position: relative;
2096}
2097.dropdown-toggle {
2098 *margin-bottom: -3px;
2099}
2100.dropdown-toggle:active, .open .dropdown-toggle {
2101 outline: 0;
2102}
2103.caret {
2104 display: inline-block;
2105 width: 0;
2106 height: 0;
2107 text-indent: -99999px;
2108 *text-indent: 0;
2109 vertical-align: top;
2110 border-left: 4px solid transparent;
2111 border-right: 4px solid transparent;
2112 border-top: 4px solid #000000;
2113 opacity: 0.3;
2114 filter: alpha(opacity=30);
2115 content: "\2193";
2116}
2117.dropdown .caret {
2118 margin-top: 8px;
2119 margin-left: 2px;
2120}
2121.dropdown:hover .caret, .open.dropdown .caret {
2122 opacity: 1;
2123 filter: alpha(opacity=100);
2124}
2125.dropdown-menu {
2126 position: absolute;
2127 top: 100%;
2128 left: 0;
2129 z-index: 1000;
2130 float: left;
2131 display: none;
2132 min-width: 160px;
2133 max-width: 220px;
2134 _width: 160px;
2135 padding: 4px 0;
2136 margin: 0;
2137 list-style: none;
2138 background-color: #ffffff;
2139 border-color: #ccc;
2140 border-color: rgba(0, 0, 0, 0.2);
2141 border-style: solid;
2142 border-width: 1px;
2143 -webkit-border-radius: 0 0 5px 5px;
2144 -moz-border-radius: 0 0 5px 5px;
2145 border-radius: 0 0 5px 5px;
2146 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2147 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2148 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2149 -webkit-background-clip: padding-box;
2150 -moz-background-clip: padding;
2151 background-clip: padding-box;
2152 *border-right-width: 2px;
2153 *border-bottom-width: 2px;
2154}
2155.dropdown-menu.bottom-up {
2156 top: auto;
2157 bottom: 100%;
2158 margin-bottom: 2px;
2159}
2160.dropdown-menu .divider {
2161 height: 1px;
2162 margin: 5px 1px;
2163 overflow: hidden;
2164 background-color: #e5e5e5;
2165 border-bottom: 1px solid #ffffff;
2166 *width: 100%;
2167 *margin: -5px 0 5px;
2168}
2169.dropdown-menu a {
2170 display: block;
2171 padding: 3px 15px;
2172 clear: both;
2173 font-weight: normal;
2174 line-height: 18px;
2175 color: #555555;
2176 white-space: nowrap;
2177}
2178.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2179 color: #ffffff;
2180 text-decoration: none;
2181 background-color: #0088cc;
2182}
2183.dropdown.open {
2184 *z-index: 1000;
2185}
2186.dropdown.open .dropdown-toggle {
2187 color: #ffffff;
2188 background: #ccc;
2189 background: rgba(0, 0, 0, 0.3);
2190}
2191.dropdown.open .dropdown-menu {
2192 display: block;
2193}
2194/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302195 * lib/css/bootstrap/tooltip.css
2196 */.tooltip {
2197 position: absolute;
2198 z-index: 1020;
2199 display: block;
2200 visibility: visible;
2201 padding: 5px;
2202 font-size: 11px;
2203 opacity: 0;
2204 filter: alpha(opacity=0);
2205}
2206.tooltip.in {
2207 opacity: 0.8;
2208 filter: alpha(opacity=80);
2209}
2210.tooltip.top {
2211 margin-top: -2px;
2212}
2213.tooltip.right {
2214 margin-left: 2px;
2215}
2216.tooltip.bottom {
2217 margin-top: 2px;
2218}
2219.tooltip.left {
2220 margin-left: -2px;
2221}
2222.tooltip.top .tooltip-arrow {
2223 bottom: 0;
2224 left: 50%;
2225 margin-left: -5px;
2226 border-left: 5px solid transparent;
2227 border-right: 5px solid transparent;
2228 border-top: 5px solid #000000;
2229}
2230.tooltip.left .tooltip-arrow {
2231 top: 50%;
2232 right: 0;
2233 margin-top: -5px;
2234 border-top: 5px solid transparent;
2235 border-bottom: 5px solid transparent;
2236 border-left: 5px solid #000000;
2237}
2238.tooltip.bottom .tooltip-arrow {
2239 top: 0;
2240 left: 50%;
2241 margin-left: -5px;
2242 border-left: 5px solid transparent;
2243 border-right: 5px solid transparent;
2244 border-bottom: 5px solid #000000;
2245}
2246.tooltip.right .tooltip-arrow {
2247 top: 50%;
2248 left: 0;
2249 margin-top: -5px;
2250 border-top: 5px solid transparent;
2251 border-bottom: 5px solid transparent;
2252 border-right: 5px solid #000000;
2253}
2254.tooltip-inner {
2255 max-width: 200px;
2256 padding: 3px 8px;
2257 color: #ffffff;
2258 text-align: center;
2259 text-decoration: none;
2260 background-color: #000000;
2261 -webkit-border-radius: 4px;
2262 -moz-border-radius: 4px;
2263 border-radius: 4px;
2264}
2265.tooltip-arrow {
2266 position: absolute;
2267 width: 0;
2268 height: 0;
2269}
2270.popover {
2271 position: absolute;
2272 top: 0;
2273 left: 0;
2274 z-index: 1010;
2275 display: none;
2276 padding: 5px;
2277}
2278.popover.top {
2279 margin-top: -5px;
2280}
2281.popover.right {
2282 margin-left: 5px;
2283}
2284.popover.bottom {
2285 margin-top: 5px;
2286}
2287.popover.left {
2288 margin-left: -5px;
2289}
2290.popover.top .arrow {
2291 bottom: 0;
2292 left: 50%;
2293 margin-left: -5px;
2294 border-left: 5px solid transparent;
2295 border-right: 5px solid transparent;
2296 border-top: 5px solid #000000;
2297}
2298.popover.right .arrow {
2299 top: 50%;
2300 left: 0;
2301 margin-top: -5px;
2302 border-top: 5px solid transparent;
2303 border-bottom: 5px solid transparent;
2304 border-right: 5px solid #000000;
2305}
2306.popover.bottom .arrow {
2307 top: 0;
2308 left: 50%;
2309 margin-left: -5px;
2310 border-left: 5px solid transparent;
2311 border-right: 5px solid transparent;
2312 border-bottom: 5px solid #000000;
2313}
2314.popover.left .arrow {
2315 top: 50%;
2316 right: 0;
2317 margin-top: -5px;
2318 border-top: 5px solid transparent;
2319 border-bottom: 5px solid transparent;
2320 border-left: 5px solid #000000;
2321}
2322.popover .arrow {
2323 position: absolute;
2324 width: 0;
2325 height: 0;
2326}
2327.popover-inner {
2328 padding: 3px;
2329 width: 280px;
2330 overflow: hidden;
2331 background: #000000;
2332 background: rgba(0, 0, 0, 0.8);
2333 -webkit-border-radius: 6px;
2334 -moz-border-radius: 6px;
2335 border-radius: 6px;
2336 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2337 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2338 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2339}
2340.popover-title {
2341 padding: 9px 15px;
2342 line-height: 1;
2343 background-color: #f5f5f5;
2344 border-bottom: 1px solid #eee;
2345 -webkit-border-radius: 3px 3px 0 0;
2346 -moz-border-radius: 3px 3px 0 0;
2347 border-radius: 3px 3px 0 0;
2348}
2349.popover-content {
2350 padding: 14px;
2351 background-color: #ffffff;
2352 -webkit-border-radius: 0 0 3px 3px;
2353 -moz-border-radius: 0 0 3px 3px;
2354 border-radius: 0 0 3px 3px;
2355 -webkit-background-clip: padding-box;
2356 -moz-background-clip: padding-box;
2357 background-clip: padding-box;
2358}
2359.popover-content p, .popover-content ul, .popover-content ol {
2360 margin-bottom: 0;
2361}
2362/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302363 * lib/css/bootstrap/label.css
2364 */.label {
2365 padding: 2px 4px 3px;
2366 font-size: 11.049999999999999px;
2367 font-weight: bold;
2368 color: #ffffff;
2369 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2370 background-color: #999999;
2371 -webkit-border-radius: 3px;
2372 -moz-border-radius: 3px;
2373 border-radius: 3px;
2374}
2375.label:hover {
2376 color: #ffffff;
2377 text-decoration: none;
2378}
2379.label-important {
2380 background-color: #b94a48;
2381}
2382.label-important:hover {
2383 background-color: #953b39;
2384}
2385.label-warning {
2386 background-color: #f89406;
2387}
2388.label-warning:hover {
2389 background-color: #c67605;
2390}
2391.label-success {
2392 background-color: #468847;
2393}
2394.label-success:hover {
2395 background-color: #356635;
2396}
2397.label-info {
2398 background-color: #3a87ad;
2399}
2400.label-info:hover {
2401 background-color: #2d6987;
2402}
2403/*
2404 * lib/css/bootstrap/icons.css
2405 */[class^="icon-"], [class*=" icon-"] {
2406 display: inline-block;
2407 width: 14px;
2408 height: 14px;
2409 line-height: 14px;
2410 vertical-align: text-top;
2411 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2412 background-position: 14px 14px;
2413 background-repeat: no-repeat;
2414 *margin-right: .3em;
2415}
2416[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
2417 *margin-left: 0;
2418}
2419.icon-white {
2420 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
2421}
2422.icon-glass {
2423 background-position: 0 0;
2424}
2425.icon-music {
2426 background-position: -24px 0;
2427}
2428.icon-search {
2429 background-position: -48px 0;
2430}
2431.icon-envelope {
2432 background-position: -72px 0;
2433}
2434.icon-heart {
2435 background-position: -96px 0;
2436}
2437.icon-star {
2438 background-position: -120px 0;
2439}
2440.icon-star-empty {
2441 background-position: -144px 0;
2442}
2443.icon-user {
2444 background-position: -168px 0;
2445}
2446.icon-film {
2447 background-position: -192px 0;
2448}
2449.icon-th-large {
2450 background-position: -216px 0;
2451}
2452.icon-th {
2453 background-position: -240px 0;
2454}
2455.icon-th-list {
2456 background-position: -264px 0;
2457}
2458.icon-ok {
2459 background-position: -288px 0;
2460}
2461.icon-remove {
2462 background-position: -312px 0;
2463}
2464.icon-zoom-in {
2465 background-position: -336px 0;
2466}
2467.icon-zoom-out {
2468 background-position: -360px 0;
2469}
2470.icon-off {
2471 background-position: -384px 0;
2472}
2473.icon-signal {
2474 background-position: -408px 0;
2475}
2476.icon-cog {
2477 background-position: -432px 0;
2478}
2479.icon-trash {
2480 background-position: -456px 0;
2481}
2482.icon-home {
2483 background-position: 0 -24px;
2484}
2485.icon-file {
2486 background-position: -24px -24px;
2487}
2488.icon-time {
2489 background-position: -48px -24px;
2490}
2491.icon-road {
2492 background-position: -72px -24px;
2493}
2494.icon-download-alt {
2495 background-position: -96px -24px;
2496}
2497.icon-download {
2498 background-position: -120px -24px;
2499}
2500.icon-upload {
2501 background-position: -144px -24px;
2502}
2503.icon-inbox {
2504 background-position: -168px -24px;
2505}
2506.icon-play-circle {
2507 background-position: -192px -24px;
2508}
2509.icon-repeat {
2510 background-position: -216px -24px;
2511}
2512.icon-refresh {
2513 background-position: -240px -24px;
2514}
2515.icon-list-alt {
2516 background-position: -264px -24px;
2517}
2518.icon-lock {
2519 background-position: -287px -24px;
2520}
2521.icon-flag {
2522 background-position: -312px -24px;
2523}
2524.icon-headphones {
2525 background-position: -336px -24px;
2526}
2527.icon-volume-off {
2528 background-position: -360px -24px;
2529}
2530.icon-volume-down {
2531 background-position: -384px -24px;
2532}
2533.icon-volume-up {
2534 background-position: -408px -24px;
2535}
2536.icon-qrcode {
2537 background-position: -432px -24px;
2538}
2539.icon-barcode {
2540 background-position: -456px -24px;
2541}
2542.icon-tag {
2543 background-position: 0 -48px;
2544}
2545.icon-tags {
2546 background-position: -25px -48px;
2547}
2548.icon-book {
2549 background-position: -48px -48px;
2550}
2551.icon-bookmark {
2552 background-position: -72px -48px;
2553}
2554.icon-print {
2555 background-position: -96px -48px;
2556}
2557.icon-camera {
2558 background-position: -120px -48px;
2559}
2560.icon-font {
2561 background-position: -144px -48px;
2562}
2563.icon-bold {
2564 background-position: -167px -48px;
2565}
2566.icon-italic {
2567 background-position: -192px -48px;
2568}
2569.icon-text-height {
2570 background-position: -216px -48px;
2571}
2572.icon-text-width {
2573 background-position: -240px -48px;
2574}
2575.icon-align-left {
2576 background-position: -264px -48px;
2577}
2578.icon-align-center {
2579 background-position: -288px -48px;
2580}
2581.icon-align-right {
2582 background-position: -312px -48px;
2583}
2584.icon-align-justify {
2585 background-position: -336px -48px;
2586}
2587.icon-list {
2588 background-position: -360px -48px;
2589}
2590.icon-indent-left {
2591 background-position: -384px -48px;
2592}
2593.icon-indent-right {
2594 background-position: -408px -48px;
2595}
2596.icon-facetime-video {
2597 background-position: -432px -48px;
2598}
2599.icon-picture {
2600 background-position: -456px -48px;
2601}
2602.icon-pencil {
2603 background-position: 0 -72px;
2604}
2605.icon-map-marker {
2606 background-position: -24px -72px;
2607}
2608.icon-adjust {
2609 background-position: -48px -72px;
2610}
2611.icon-tint {
2612 background-position: -72px -72px;
2613}
2614.icon-edit {
2615 background-position: -96px -72px;
2616}
2617.icon-share {
2618 background-position: -120px -72px;
2619}
2620.icon-check {
2621 background-position: -144px -72px;
2622}
2623.icon-move {
2624 background-position: -168px -72px;
2625}
2626.icon-step-backward {
2627 background-position: -192px -72px;
2628}
2629.icon-fast-backward {
2630 background-position: -216px -72px;
2631}
2632.icon-backward {
2633 background-position: -240px -72px;
2634}
2635.icon-play {
2636 background-position: -264px -72px;
2637}
2638.icon-pause {
2639 background-position: -288px -72px;
2640}
2641.icon-stop {
2642 background-position: -312px -72px;
2643}
2644.icon-forward {
2645 background-position: -336px -72px;
2646}
2647.icon-fast-forward {
2648 background-position: -360px -72px;
2649}
2650.icon-step-forward {
2651 background-position: -384px -72px;
2652}
2653.icon-eject {
2654 background-position: -408px -72px;
2655}
2656.icon-chevron-left {
2657 background-position: -432px -72px;
2658}
2659.icon-chevron-right {
2660 background-position: -456px -72px;
2661}
2662.icon-plus-sign {
2663 background-position: 0 -96px;
2664}
2665.icon-minus-sign {
2666 background-position: -24px -96px;
2667}
2668.icon-remove-sign {
2669 background-position: -48px -96px;
2670}
2671.icon-ok-sign {
2672 background-position: -72px -96px;
2673}
2674.icon-question-sign {
2675 background-position: -96px -96px;
2676}
2677.icon-info-sign {
2678 background-position: -120px -96px;
2679}
2680.icon-screenshot {
2681 background-position: -144px -96px;
2682}
2683.icon-remove-circle {
2684 background-position: -168px -96px;
2685}
2686.icon-ok-circle {
2687 background-position: -192px -96px;
2688}
2689.icon-ban-circle {
2690 background-position: -216px -96px;
2691}
2692.icon-arrow-left {
2693 background-position: -240px -96px;
2694}
2695.icon-arrow-right {
2696 background-position: -264px -96px;
2697}
2698.icon-arrow-up {
2699 background-position: -289px -96px;
2700}
2701.icon-arrow-down {
2702 background-position: -312px -96px;
2703}
2704.icon-share-alt {
2705 background-position: -336px -96px;
2706}
2707.icon-resize-full {
2708 background-position: -360px -96px;
2709}
2710.icon-resize-small {
2711 background-position: -384px -96px;
2712}
2713.icon-plus {
2714 background-position: -408px -96px;
2715}
2716.icon-minus {
2717 background-position: -433px -96px;
2718}
2719.icon-asterisk {
2720 background-position: -456px -96px;
2721}
2722.icon-exclamation-sign {
2723 background-position: 0 -120px;
2724}
2725.icon-gift {
2726 background-position: -24px -120px;
2727}
2728.icon-leaf {
2729 background-position: -48px -120px;
2730}
2731.icon-fire {
2732 background-position: -72px -120px;
2733}
2734.icon-eye-open {
2735 background-position: -96px -120px;
2736}
2737.icon-eye-close {
2738 background-position: -120px -120px;
2739}
2740.icon-warning-sign {
2741 background-position: -144px -120px;
2742}
2743.icon-plane {
2744 background-position: -168px -120px;
2745}
2746.icon-calendar {
2747 background-position: -192px -120px;
2748}
2749.icon-random {
2750 background-position: -216px -120px;
2751}
2752.icon-comment {
2753 background-position: -240px -120px;
2754}
2755.icon-magnet {
2756 background-position: -264px -120px;
2757}
2758.icon-chevron-up {
2759 background-position: -288px -120px;
2760}
2761.icon-chevron-down {
2762 background-position: -313px -119px;
2763}
2764.icon-retweet {
2765 background-position: -336px -120px;
2766}
2767.icon-shopping-cart {
2768 background-position: -360px -120px;
2769}
2770.icon-folder-close {
2771 background-position: -384px -120px;
2772}
2773.icon-folder-open {
2774 background-position: -408px -120px;
2775}
2776.icon-resize-vertical {
2777 background-position: -432px -119px;
2778}
2779.icon-resize-horizontal {
2780 background-position: -456px -118px;
2781}
2782/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302783 * erpnext/startup/startup.css
2784 */h1, h2, h3, h4, h5 {
2785 font-family: Tahoma, Arial, Verdana, sans-serif;
2786 font-weight: bold;
2787}
2788
2789body {
2790 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
2791 font-size: 12px;
2792}
2793
2794span, div, td, input, textarea, button, select {
2795 font-family: inherit;
2796}
2797
2798body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302799}
2800
2801.erpnext-footer {
2802 margin: 3px auto;
2803 color: #888;
2804 text-align: center;
2805}
2806
2807.erpnext-footer a, .erpnext-footer a:hover, .erpnext-footer a:visited {
2808 color: #666;
2809}
2810
2811.module-icons {
2812 background: url(../images/module-icons.png) no-repeat top left;
2813 width:16px;
2814 height:16px;
2815}
2816
2817.module-icons-accounts{ background-position: 0 0; }
2818.module-icons-analysis{ background-position: 0 -66px; }
2819.module-icons-buying{ background-position: 0 -132px; }
2820.module-icons-home{ background-position: 0 -198px; }
2821.module-icons-hr{ background-position: 0 -264px; }
2822.module-icons-people{ background-position: 0 -330px; }
2823.module-icons-production{ background-position: 0 -396px; }
2824.module-icons-projects{ background-position: 0 -462px; }
2825.module-icons-selling{ background-position: 0 -528px; }
2826.module-icons-setup{ background-position: 0 -594px; }
2827.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05302828.module-icons-support{ background-position: 0 -726px; }
2829
Anand Doshidb628762012-02-24 17:56:00 +05302830.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05302831 margin: -3px 0px;
2832 padding: 2px;
2833 font-size: 14px;
2834 color: #fff;
2835 background-color: #B00D07;
2836 min-width: 20px;
2837 text-align: center;
2838 display: inline-block;
2839 border-radius: 2px;
2840}