blob: 77fea0b84a4ddbd565ce78e85273f81c431fae13 [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;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530189 -moz-box-shadow: 7px 0px 6px -2px #ddd;
190 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
191 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530192}
193
194.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530195 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530196 /*float: right;*/
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530197 color: #606060;
198 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530199 padding: 15px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530200 min-height: 450px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530201}
202
203/* from bootstrap */
204.container {
205 margin-left: auto;
206 margin-right: auto;
207 zoom: 1;
208}
209.container:before, .container:after {
210 display: table;
211 content: "";
212 zoom: 1;
213}
214.container:after {
215 clear: both;
216}
217
Anand Doshi40ee8d62012-02-24 19:21:47 +0530218.well {
219 min-height: 20px;
220 padding: 19px;
221 margin-bottom: 20px;
222 background-color: #f5f5f5;
223 border: 1px solid #eee;
224 border: 1px solid rgba(0, 0, 0, 0.05);
225 -webkit-border-radius: 4px;
226 -moz-border-radius: 4px;
227 border-radius: 4px;
228 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
229 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
230 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
231}
232
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530233/*
234 * lib/css/legacy/menus.css
235 */
236/******** Menus - menu.js ************/
237
238ul.menu_toolbar {
239 z-index: 30;
240 padding: 0px;
241 margin: 0px;
242 margin-top: 1px;
243}
244
245ul.menu_toolbar li {
246 list-style: none;
247 margin: 0px;
248 float: left;
249}
250
251.top_menu {
252 margin: 0px;
253 padding: 4px;
254 cursor: pointer;
255 color: #FFF;
256 margin-right: 8px;
257}
258
259.top_menu_mo {
260 background-color: #000;
261
262 -moz-border-radius: 5px;
263 -webkit-border-radius: 5px;
264}
265
266div.menu_toolbar_dropdown {
267 position: absolute;
268 margin-top: 4px;
269 margin-left: 8px;
270 width: 140px;
271 background-color: #FFF;
272 color: #000;
273 display: none;
274 border: 2px solid #333;
275 z-index: 31;
276 overflow-y: auto;
277 overflow-x: hidden;
278}
279
280div.dd_item {
281 cursor: pointer;
282 padding: 4px;
283 background-color: #FFF;
284}
285div.dd_item_mo { background-color: #FE8; }
286/*
287 * lib/css/legacy/messages.css
288 */
289/* FLOATING MESSAGE */
290
291.btn-img { cursor: pointer; }
292
293div.fetching { color: #888; text-align:right; }
294
295div.notice {
296 postion: absolute;
297 background-color: #000;
298 -moz-border-radius: 5px; -webkit-border-radius: 5px;
299 opacity: 0.6;
300 right: 0;
301 top: 0;
302 margin-top: 8px;
303 z-index: -1;
304 padding: 8px;
305}
306
307/** help **/
308
309.info-box {
310 background-color: #F8F8F8;
311 border: 1px solid #CCCCCC;
312 border-radius: 3px 3px 3px 3px;
313 line-height: 1.6em;
314 overflow: auto;
315 padding: 6px 10px;
316 margin-bottom: 9px;
317}
318
319.help_box, .help-box {
320 background-color:#FFC;
321 font-size: 13px;
322 color: #864;
323 padding: 7px;
324 margin: 11px 0px;
325 border: 1px solid #EEB;
326}
327
328.help_box_big {
329 background-color:#FFC;
330 color: #864;
331 padding: 7px;
332 margin: 7px 0px;
333 border: 1px solid #EEB;
334 text-align: center;
335 font-size: 14px;
336}
337/*
338 * lib/css/legacy/forms.css
339 *//* FORMS */
340
341
342div.frm_print_wrapper {
343 background-color:#FFF;
344 border:1px solid #444;
345 padding: 40px;
346
347 box-shadow:1px 1px 8px #229;
348 -moz-box-shadow: 1px 1px 8px #229;
349 -webkit-box-shadow: 1px 1px 8px #229;
350}
351
352div.page_break {
353 margin: 24px 0px;
354 border-top: 1px dashed #888;
355}
356
357div.grid_tbarlinks {
358 border-bottom: 0px;
359 background-color: #CCC;
360 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530361 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530362 float: right;
363
364 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
365 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
366}
367
368
369div.frm_tip_box {
370 margin: 0px;
371 padding: 8px;
372 background-color: #FFC;
373 display: none;
374 font-size: 11px;
375 border: 1px solid #FFB;
376}
377
378div.frm_tip_box table {
379 border-collapse: collapse;
380 vertical-align: top;
381}
382
383td.frm_tray_area {
384 width: 122px;
385}
386
387div.dialog_frm {
388 position: relative;
389 margin: 10px;
390}
391
392
393
394/*------------------*/
395
396.top_cell {
397 height: 50px;
398}
399
400div.attach_area {
401 padding: 8px;
402 margin: 8px;
403 background-color: #EEE;
404}
405
406div.attach_area table {
407 width: 100%;
408}
409
410.tablabel_normal {
411 margin: 0 4px 0 0;
412 padding: 3px 5px;
413 line-height: 1.3em;
414 display: inline;
415 cursor: pointer;
416}
417
418.tablabel_selected {
419 margin: 0 4px 0 0;
420 padding: 3px 5px;
421 line-height: 1.3em;
422 font-weight: bold;
423 display: inline;
424 cursor: pointer;
425 color: #000;
426}
427
428.scrollhead_wrapper {
429 position: absolute;
430 z-index: 1;
431 height: 30px;
432}
433
434.treeimg {
435 cursor: pointer;
436 margin-right: 3px;
437}
438
439
440.sectionCell {
441 padding: 5px;
442 vertical-align: top;
443}
444
445.code_area {
446 width: 80%;
447 margin: 8px;
448 padding: 4px;
449 background-color: #F8F8F8;
450 border: 1px solid #CCC;
451 overflow-x: auto;
452}
453
454.code_text {
455 width: 100%;
456 height: 360px;
457 margin-top: 3px;
458 font-family: Courier, Fixed;
459 font-size: 12px;
460}
461
462div.time_field select{
463 display: inline;
464 margin: 2px;
465 width: 45px;
466}
467
468/* Documents */
469
470.frm_field_table {
471 width: 100%;
472 border-collapse: collapse;
473}
474
475.datalabelcell {
476 padding: 2px 0px;
477 width: 160px;
478 vertical-align: top;
479}
480.datainputcell { padding: 2px 0px; }
481
482
483.field_description, .help {
484 margin: 3px 0px 11px 0px;
485 color: #888;
486 font-style: italic;
487}
488
489.field_description_top {
490 margin-bottom: 3px;
491}
492
493.field_label {
494 font-size:11px;
495}
496.input_area input, select, textarea {
497 font-size: 14px;
498 padding: 2px;
499}
500
501.input_area input {
502 width: 80%;
503 margin: 0px;
504}
505.input_area select {
506 width: 80%;
507}
508.input_area textarea {
509 width: 90%;
510}
511
512.disp_area {
513 width: 80%;
514 padding: 2px 0px;
515 font-size: 12px;
516}
517.disp_area_no_val {
518 height: 14px;
519}
520
521.no_img {
522 padding: 40px;
523 width: 100px;
524 height: 20px;
525 color: #888;
526 text-align: center;
527 border: 1px solid #AAA;
528}
529
530.input-mandatory {
531 font-size: 14px !important;
532 font-weight: bold;
533}
534
535.field-to-update {
536 background-color:#FEE;
537}
538
539/* sidebar */
540
541div.sidebar-comment-wrapper input {
542 width: 50%;
543}
544div.sidebar-comment-message {
545 margin-top: 8px;
546 font-size: 11px;
547 color: #777;
548}
549
550div.sidebar-comment-text {
551 font-size: 12px;
552 font-weight: bold;
553 margin-top: 8px;
554 color: #444;
555}
556div.sidebar-comment-info {
557 font-size: 10px;
558 color: #777;
559}
560/*
561 * lib/css/legacy/grid.css
562 */
563
564/* Grid */
565
566
567/* --- Simple --- */
568.grid_wrapper_simple {
569 width: 100%;
570 margin-bottom: 8px;
571 border: 1px solid #AA9;
572}
573
574.grid_head_wrapper_simple {
575 padding: 0px;
576 border-bottom: 2px solid #AAA;
577}
578
579.grid_head_wrapper_simple td {
580 border-right: 1px solid #AA9;
581}
582
583.grid_head_wrapper_simple td div {
584 padding: 2px;
585}
586
587.grid_tab_wrapper_simple {
588}
589
590.grid_cell_simple {
591 padding: 2px;
592 background-color: #fff;
593 border-right: 1px solid #AA9;
594}
595
596
597/* --- Normal --- */
598.grid_wrapper {
599 position: relative;
600 overflow: auto;
601 border: 1px solid #AAA;
602 width: 100%;
603 margin-bottom: 8px;
604 background-color: #fff;
605}
606
607.grid_tab_wrapper {
608 position: absolute;
609 top: 40px;
610 border-bottom: 1px solid #DDD;
611}
612
613.grid_table, .grid_head_table {
614 table-layout: fixed;
615 border-collapse: collapse;
616 /*width: 100%;*/
617}
618
619.grid_cell {
620 border-right: 1px solid #ddd;
621 padding: 0px;
622 background-color: #fff;
623}
624
625.grid_head_wrapper {
626 position: absolute;
627 z-index: 1;
628 height: 40px;
629 padding: 0px;
630 overflow: hidden;
631 /*background-color: #fff;*/
632}
633
634.grid_head_table td {
635 background-color: #EEE;
636 border-right: 1px solid #AAA;
637 border-bottom: 1px solid #AAA;
638 height: 40px;
639 padding: 0px;
640}
641
642.grid_head_table td div {
643 color: #222;
644 font-weight: bold;
645 overflow: hidden;
646 padding: 2px 0px;
647 text-align: center;
648}
649
650.grid_selector {
651 padding: 1px;
652 border-right: 1px solid #DDD;
653 width: 20px;
654 background-color: #fff;
655}
656
657.grid_cell_div {
658 padding: 2px;
659 cursor: pointer;
660 overflow: hidden;
661 border: 2px solid #FFF;
662}
663
664.grid_cell_div_selected {
665 border: 2px solid #88f;
666}
667
668.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
669 margin: 0px;
670 border: 0px;
671 width: 100%;
672 margin: 0px;
673 }
674
675.grid_cell_div textarea {
676 border: 3px solid #abf;
677 height:200px;
678 width: 300px;
679 z-index: 10;
680 position:absolute;
681}
682
683.gridDivSelected option { border: 0px; }
684/*
685 * lib/css/legacy/listing.css
686 *//* listing 2.0 */
687
688div.listing-more {
689 margin: 7px 0px 17px 0px;
690 text-align: center;
691 display: none;
692}
693
694div.listing-toolbar {
695 margin: 7px 0px;
696}
697
698/* SRS */
699
700table.srs_result_tab {
701 border: 2px solid #AAA;
702 border-collapse: collapse;
703}
704
705/* firefox bug fix for disappering borders */
706table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
707 position: static;
708}
709
710table.srs_result_tab td {
711 padding: 3px 2px;
712 position: static;
713}
714
715div.srs_body_area {
716}
717
718div.srs_results_area {
719}
720
721div.srs_filter_wrapper {
722 border: 1px solid #CCF;
723
724 background-color: #EEF;
725 margin:0px 0px 8px 0px;
726
727 -moz-border-radius: 5px;
728 -webkit-border-radius: 5px;
729 border-radius: 5px;
730}
731
732div.srs_filter_area {
733 padding: 8px;
734}
735
736div.srs_filter_area td {
737 vertical-align: middle;
738}
739
740
741
742
743/*
744 * lib/css/legacy/report.css
745 */
746/* Reports */
747
748div.report_grid_area {
749 position: relative;
750 padding: 8px;
751}
752
753
754div.report_tab {
755 border: 1px solid #AAA;
756 position: relative;
757 overflow: auto;
758}
759
760div.report_no_data {
761 padding: 8px;
762 background-color: #EEE;
763 border: 1px solid #DDD;
764 position: absolute;
765 margin-left: 40%;
766 margin-top: 50px;
767 display: none;
768}
769
770div.report_htitle {
771 float: left;
772 padding: 2px;
773 font-size: 14px;
774 font-weight: bold;
775 margin-left: 4px;
776 color: #665;
777 /*font-weight: bold;*/
778}
779
780div.report_tbar {
781 background-color: #EEF;
782 border: 1px solid #CCF;
783 border-bottom: 0px;
784 height: 28px;
785}
786
787div.report_tbar table{
788 width: 100%;
789}
790div.report_tbar table td {
791
792}
793div.report_tbar table td div {
794 position: relative;
795}
796div.report_tbar button, div.report_tbar select, div.report_tbar img {
797 font-size: 11px;
798 margin: 0px;
799}
800
801div.report_head_wrapper {
802 position: absolute;
803 height: 24px;
804 top: 0px;
805 z-index: 1;
806}
807
808div.report_tab_wrapper {
809 position: absolute;
810 border-bottom: 1px solid #AAA;
811 border-top: 1px solid #AAA;
812}
813
814div.report_tab_wrapper table, div.report_head_wrapper table {
815 table-layout: fixed;
816 border-collapse: collapse;
817 /*width: 100%;*/
818}
819
820div.report_tab_wrapper table td, div.report_head_wrapper table td {
821 border-left: 1px solid #AAA;
822 border-right: 1px solid #AAA;
823 border-bottom: 1px solid #AAA;
824 overflow: hidden;
825 padding: 0px;
826}
827
828div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
829 padding: 3px;
830 overflow: hidden;
831}
832
833.report_head_cell {
834 background-color: #EEE;
835 border-bottom: 1px solid #AA9;
836 text-align: center;
837 font-weight: bold;
838}
839.report_head_cell div {
840 color:#222;
841 height: 18px;
842}
843
844
845/* FINDER */
846
847div.finder_wrapper {
848}
849
850div.finder_body_area {
851 margin: 16px;
852}
853
854div.finder_body {
855 display: none;
856}
857
858div.finder_advanced_area table {
859 width: 80%;
860}
861
862div.finder_advanced_area textarea {
863 width: 80%;
864}
865
866div.finder_filter_area {
867 position: relative;
868}
869
870div.filter_head {
871 font-size: 14px;
872 margin-bottom: 2px;
873}
874div.filter_dt_head {
875 font-size: 14px;
876 font-weight: bold;
877 margin-bottom: 2px;
878}
879table.filter_tab {
880 width: 96%;
881 border-collapse: collapse;
882}
883
884table.filter_tab td {
885 width: 50%;
886}
887
888div.finder_picker_area {
889
890}
891div.builder_field {
892 margin: 0px;
893}
894div.builder_dt_head {
895 font-size: 14px;
896 font-weight: bold;
897 margin-bottom: 2px;
898}
899
900div.builder_field table {
901 width: 90%;
902 border-collapse: collapse;
903}
904
905div.builder_label {
906 height: 20px;
907}
908
909div.builder_head {
910 font-size: 16px;
911 font-weight: bold;
912 color: #AB6;
913}
914
915table.builder_tab {
916 width: 96%;
917 border-collapse: collapse;
918}
919
920table.builder_tab td {
921 width: 33%;
922 padding: 2px;
923}
924/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530925 * lib/css/legacy/autosuggest.css
926 *//*
927================================================
928autosuggest, inquisitor style
929================================================
930*/
931
932div.autosuggest
933{
934 position: absolute;
935 margin-top: 3px;
936 border: 1px solid #222;
937}
938
939div.autosuggest ul
940{
941 list-style: none;
942 margin: 0px;
943 padding: 2px;
944 overflow: hidden;
945 background-color: #FFF;
946}
947
948div.autosuggest ul li
949{
950 color: #444;
951 padding: 0;
952 margin: 0;
953 text-align: left;
954}
955
956div.autosuggest ul li a
957{
958 color: #444;
959 display: block;
960 text-decoration: none;
961 position: relative;
962 padding: 0;
963 width: 100%;
964}
965div.autosuggest ul li a:hover
966{
967
968}
969div.autosuggest ul li.as_highlight a:hover
970{
971 background-color: #45A;
972 color: #FFF;
973}
974
975div.autosuggest ul li a span
976{
977 display: block;
978 padding: 3px 6px;
979 color: #444;
980 border-bottom:1px solid #DDD;
981}
982
983div.autosuggest ul li a span small
984{
985 display: block;
986 font-weight: normal;
987 color: #444;
988}
989
990div.autosuggest ul li.as_highlight a span small
991{
992 color: #FFF;
993}
994
995div.autosuggest ul li.as_highlight a span {
996 color: #FFF;
997}
998
999div.autosuggest ul li.as_highlight a
1000{
1001 color: #FFF;
1002 background-color: #45A;
1003 cursor: pointer;
1004}
1005
1006div.autosuggest ul li.as_warning
1007{
1008 font-weight: bold;
1009 text-align: center;
1010}
1011
1012div.autosuggest ul em
1013{
1014 font-style: normal;
1015 font-weight: bold;
1016}
1017
1018/*
1019 * lib/css/legacy/dialog.css
1020 *//***** Dialogs *******/
1021
1022div.dialog_wrapper {
1023 position: absolute;
1024 width: 440px;
1025 display: none;
1026 z-index: 90;
1027 background-color: #FFF;
1028 border: 3px solid #222;
1029 box-shadow:1px 1px 5px #777;
1030 -moz-box-shadow: 1px 1px 5px #777;
1031 -webkit-box-shadow: 1px 1px 5px #777;
1032
1033 border-radius: 5px;
1034 -moz-border-radius: 5px;
1035 -webkit-border-radius: 5px;
1036}
1037
1038div.dialog_head {
1039 height: 22px;
1040 padding: 4px;
1041 background-color: #222;
1042 color: #FFF;
1043}
1044
1045div.dialog_body {
1046 padding: 8px 4px 16px 4px;
1047 border-radius: 5px;
1048 -moz-border-radius: 5px;
1049 -webkit-border-radius: 5px;
1050}
1051
1052div.dialog_back {
1053 position: fixed;
1054 display: none;
1055 top: 0px;
1056 left: 0px;
1057 bottom: 0px;
1058 right: 0px;
1059 background-color: #EEE;
1060 opacity: 0.6;
1061 z-index: 50;
1062 text-align: center;
1063}
1064
1065div.dialog_message {
1066 display: none;
1067 position: absolute;
1068 width: 250px;
1069 font-size: 12px;
1070 z-index: 91;
1071 background-color:#FFF;
1072 padding: 12px;
1073 border: 1px solid #444;
1074}
1075
1076div.dialog_row {
1077 padding: 8px 8px 0px 8px;
1078}
1079
1080div.dialog_row table {
1081 width: 100%;
1082}
1083
1084div.dialog_row table td {
1085}
1086
1087div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
1088 width: 80%;
1089 font-size: 14px;
1090}
1091
1092div.dialog_row table td textarea {
1093 width: 80%;
1094 height: 200px;
1095 font-size: 12px;
1096}
1097
1098/*
1099 * lib/css/legacy/tabs.css
1100 */
1101/******* TABS ********/
1102
1103div.box_label_wrapper {
1104 border-bottom: 6px solid #777;
1105}
1106
1107div.box_label_body {
1108 height: 22px;
1109}
1110
1111ul.box_tabs {
1112 margin: 0px;
1113 padding: 0px;
1114 list-style: none;
1115}
1116
1117ul.box_tabs li {
1118 height: 22px;
1119 float:left;
1120 font-size: 12px;
1121 text-decoration: underline;
1122
1123 background-color: #DDD;
1124
1125 margin:0;
1126 margin-left: 4px;
1127 padding:0 0 0 9px;
1128 cursor: pointer;
1129}
1130
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301131ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301132 display:block;
1133 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301134 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301135}
1136
1137ul.box_tabs li.box_tab_mouseover {
1138 background-color: #BBB;
1139}
1140
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301141ul.box_tabs li.box_tab_selected {
1142 background-color: #777;
1143
1144 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1145 background: -moz-linear-gradient(top, #999, #777);
1146
1147 color: #FFF;
1148 font-weight:bold;
1149
1150}
1151ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301152 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301153}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301154/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301155 * lib/css/legacy/sidebar.css
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301156 */div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301157}
1158
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301159div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301160 font-size: 14px;
1161 font-weight: bold;
1162 color: #555;
1163 margin-bottom: 12px;
1164}
1165
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301166div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301167 margin-bottom: 11px;
1168 overflow: hidden;
1169}
1170
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301171div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301172 font-size: 12px;
1173 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301174 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301175}
1176
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301177div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301178 margin: 7px 11px 11px 11px;
1179}
1180
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301181div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301182 margin-bottom: 7px;
1183}
1184
Rushabh Mehtad0251332012-02-21 17:26:50 +05301185div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301186 font-size: 11px;
1187 color: #666;
1188}
Anand Doshi40ee8d62012-02-24 19:21:47 +05301189
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301190/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301191 * lib/css/bootstrap/headings.css
1192 *//* heading from bootstrap */
1193
1194h1,
1195h2,
1196h3,
1197h4,
1198h5,
1199h6 {
1200 margin: 0;
1201 font-weight: bold;
1202 color: #333333;
1203 text-rendering: optimizelegibility;
1204 margin-bottom: 0.3em;
1205}
1206h1 small,
1207h2 small,
1208h3 small,
1209h4 small,
1210h5 small,
1211h6 small {
1212 font-weight: normal;
1213 color: #999999;
1214}
1215h1 {
1216 font-size: 30px;
1217 line-height: 36px;
1218}
1219h1 small {
1220 font-size: 18px;
1221}
1222h2 {
1223 font-size: 24px;
1224 line-height: 36px;
1225}
1226h2 small {
1227 font-size: 18px;
1228}
1229h3 {
1230 line-height: 27px;
1231 font-size: 18px;
1232}
1233h3 small {
1234 font-size: 14px;
1235}
1236h4, h5, h6 {
1237 line-height: 18px;
1238}
1239h4 {
1240 font-size: 14px;
1241}
1242h4 small {
1243 font-size: 12px;
1244}
1245h5 {
1246 font-size: 12px;
1247}
1248h6 {
1249 font-size: 11px;
1250 color: #999999;
1251 text-transform: uppercase;
1252}
1253/*
1254 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301255 */.close {
1256 float: right;
1257 font-size: 20px;
1258 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301259 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301260 color: #000000;
1261 text-shadow: 0 1px 0 #ffffff;
1262 opacity: 0.2;
1263 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301264}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301265.close:hover {
1266 color: #000000;
1267 text-decoration: none;
1268 opacity: 0.4;
1269 filter: alpha(opacity=40);
1270 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301271}
1272.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301273 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301274 padding: 4px 10px 4px;
1275 font-size: 13px;
1276 line-height: 18px;
1277 color: #333333;
1278 text-align: center;
1279 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1280 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301281 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1282 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1283 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1284 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1285 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1286 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301287 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301288 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301289 border: 1px solid #ccc;
1290 border-bottom-color: #bbb;
1291 -webkit-border-radius: 4px;
1292 -moz-border-radius: 4px;
1293 border-radius: 4px;
1294 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1295 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1296 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 +05301297 cursor: pointer;
1298 *margin-left: .3em;
1299}
1300.btn:first-child {
1301 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301302}
1303.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301304 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301305 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301306 background-color: #e6e6e6;
1307 background-position: 0 -15px;
1308 -webkit-transition: background-position 0.1s linear;
1309 -moz-transition: background-position 0.1s linear;
1310 -ms-transition: background-position 0.1s linear;
1311 -o-transition: background-position 0.1s linear;
1312 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301313}
1314.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301315 outline: thin dotted;
1316 outline: 5px auto -webkit-focus-ring-color;
1317 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301318}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301319.btn.active, .btn:active {
1320 background-image: none;
1321 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1322 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1323 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1324 background-color: #e6e6e6;
1325 background-color: #d9d9d9 \9;
1326 color: rgba(0, 0, 0, 0.5);
1327 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301328}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301329.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301330 cursor: default;
1331 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301332 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301333 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301334 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301335 -webkit-box-shadow: none;
1336 -moz-box-shadow: none;
1337 box-shadow: none;
1338}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301339.btn-large {
1340 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301341 font-size: 15px;
1342 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301343 -webkit-border-radius: 5px;
1344 -moz-border-radius: 5px;
1345 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301346}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301347.btn-large .icon {
1348 margin-top: 1px;
1349}
1350.btn-small {
1351 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301352 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301353 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301354}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301355.btn-small .icon {
1356 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301357}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301358.btn-primary,
1359.btn-primary:hover,
1360.btn-warning,
1361.btn-warning:hover,
1362.btn-danger,
1363.btn-danger:hover,
1364.btn-success,
1365.btn-success:hover,
1366.btn-info,
1367.btn-info:hover {
1368 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1369 color: #ffffff;
1370}
1371.btn-primary.active,
1372.btn-warning.active,
1373.btn-danger.active,
1374.btn-success.active,
1375.btn-info.active {
1376 color: rgba(255, 255, 255, 0.75);
1377}
1378.btn-primary {
1379 background-color: #006dcc;
1380 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1381 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1382 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1383 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1384 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1385 background-image: linear-gradient(top, #0088cc, #0044cc);
1386 background-repeat: repeat-x;
1387 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1388 border-color: #0044cc #0044cc #002a80;
1389 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1390 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1391}
1392.btn-primary:hover,
1393.btn-primary:active,
1394.btn-primary.active,
1395.btn-primary.disabled,
1396.btn-primary[disabled] {
1397 background-color: #0044cc;
1398}
1399.btn-primary:active, .btn-primary.active {
1400 background-color: #003399 \9;
1401}
1402.btn-warning {
1403 background-color: #faa732;
1404 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1405 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1406 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1407 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1408 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1409 background-image: linear-gradient(top, #fbb450, #f89406);
1410 background-repeat: repeat-x;
1411 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1412 border-color: #f89406 #f89406 #ad6704;
1413 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1414 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1415}
1416.btn-warning:hover,
1417.btn-warning:active,
1418.btn-warning.active,
1419.btn-warning.disabled,
1420.btn-warning[disabled] {
1421 background-color: #f89406;
1422}
1423.btn-warning:active, .btn-warning.active {
1424 background-color: #c67605 \9;
1425}
1426.btn-danger {
1427 background-color: #da4f49;
1428 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1429 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1430 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1431 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1432 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1433 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1434 background-repeat: repeat-x;
1435 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1436 border-color: #bd362f #bd362f #802420;
1437 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1438 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1439}
1440.btn-danger:hover,
1441.btn-danger:active,
1442.btn-danger.active,
1443.btn-danger.disabled,
1444.btn-danger[disabled] {
1445 background-color: #bd362f;
1446}
1447.btn-danger:active, .btn-danger.active {
1448 background-color: #942a25 \9;
1449}
1450.btn-success {
1451 background-color: #5bb75b;
1452 background-image: -moz-linear-gradient(top, #62c462, #51a351);
1453 background-image: -ms-linear-gradient(top, #62c462, #51a351);
1454 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1455 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1456 background-image: -o-linear-gradient(top, #62c462, #51a351);
1457 background-image: linear-gradient(top, #62c462, #51a351);
1458 background-repeat: repeat-x;
1459 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1460 border-color: #51a351 #51a351 #387038;
1461 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1462 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1463}
1464.btn-success:hover,
1465.btn-success:active,
1466.btn-success.active,
1467.btn-success.disabled,
1468.btn-success[disabled] {
1469 background-color: #51a351;
1470}
1471.btn-success:active, .btn-success.active {
1472 background-color: #408140 \9;
1473}
1474.btn-info {
1475 background-color: #49afcd;
1476 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1477 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1478 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1479 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1480 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1481 background-image: linear-gradient(top, #5bc0de, #2f96b4);
1482 background-repeat: repeat-x;
1483 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1484 border-color: #2f96b4 #2f96b4 #1f6377;
1485 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1486 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1487}
1488.btn-info:hover,
1489.btn-info:active,
1490.btn-info.active,
1491.btn-info.disabled,
1492.btn-info[disabled] {
1493 background-color: #2f96b4;
1494}
1495.btn-info:active, .btn-info.active {
1496 background-color: #24748c \9;
1497}
1498button.btn, input[type="submit"].btn {
1499 *padding-top: 2px;
1500 *padding-bottom: 2px;
1501}
1502button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301503 padding: 0;
1504 border: 0;
1505}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301506button.btn.large, input[type="submit"].btn.large {
1507 *padding-top: 7px;
1508 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301509}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301510button.btn.small, input[type="submit"].btn.small {
1511 *padding-top: 3px;
1512 *padding-bottom: 3px;
1513}
1514.btn-group {
1515 position: relative;
1516 *zoom: 1;
1517 *margin-left: .3em;
1518}
1519.btn-group:before, .btn-group:after {
1520 display: table;
1521 content: "";
1522}
1523.btn-group:after {
1524 clear: both;
1525}
1526.btn-group:first-child {
1527 *margin-left: 0;
1528}
1529.btn-group + .btn-group {
1530 margin-left: 5px;
1531}
1532.btn-toolbar {
1533 margin-top: 9px;
1534 margin-bottom: 9px;
1535}
1536.btn-toolbar .btn-group {
1537 display: inline-block;
1538 *display: inline;
1539 /* IE7 inline-block hack */
1540
1541 *zoom: 1;
1542}
1543.btn-group .btn {
1544 position: relative;
1545 float: left;
1546 margin-left: -1px;
1547 -webkit-border-radius: 0;
1548 -moz-border-radius: 0;
1549 border-radius: 0;
1550}
1551.btn-group .btn:first-child {
1552 margin-left: 0;
1553 -webkit-border-top-left-radius: 4px;
1554 -moz-border-radius-topleft: 4px;
1555 border-top-left-radius: 4px;
1556 -webkit-border-bottom-left-radius: 4px;
1557 -moz-border-radius-bottomleft: 4px;
1558 border-bottom-left-radius: 4px;
1559}
1560.btn-group .btn:last-child, .btn-group .dropdown-toggle {
1561 -webkit-border-top-right-radius: 4px;
1562 -moz-border-radius-topright: 4px;
1563 border-top-right-radius: 4px;
1564 -webkit-border-bottom-right-radius: 4px;
1565 -moz-border-radius-bottomright: 4px;
1566 border-bottom-right-radius: 4px;
1567}
1568.btn-group .btn.large:first-child {
1569 margin-left: 0;
1570 -webkit-border-top-left-radius: 6px;
1571 -moz-border-radius-topleft: 6px;
1572 border-top-left-radius: 6px;
1573 -webkit-border-bottom-left-radius: 6px;
1574 -moz-border-radius-bottomleft: 6px;
1575 border-bottom-left-radius: 6px;
1576}
1577.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
1578 -webkit-border-top-right-radius: 6px;
1579 -moz-border-radius-topright: 6px;
1580 border-top-right-radius: 6px;
1581 -webkit-border-bottom-right-radius: 6px;
1582 -moz-border-radius-bottomright: 6px;
1583 border-bottom-right-radius: 6px;
1584}
1585.btn-group .btn:hover,
1586.btn-group .btn:focus,
1587.btn-group .btn:active,
1588.btn-group .btn.active {
1589 z-index: 2;
1590}
1591.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
1592 outline: 0;
1593}
1594.btn-group .dropdown-toggle {
1595 padding-left: 8px;
1596 padding-right: 8px;
1597 -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);
1598 -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);
1599 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);
1600 *padding-top: 5px;
1601 *padding-bottom: 5px;
1602}
1603.btn-group.open {
1604 *z-index: 1000;
1605}
1606.btn-group.open .dropdown-menu {
1607 display: block;
1608 margin-top: 1px;
1609 -webkit-border-radius: 5px;
1610 -moz-border-radius: 5px;
1611 border-radius: 5px;
1612}
1613.btn-group.open .dropdown-toggle {
1614 background-image: none;
1615 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1616 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1617 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1618}
1619.btn .caret {
1620 margin-top: 7px;
1621 margin-left: 0;
1622}
1623.btn:hover .caret, .open.btn-group .caret {
1624 opacity: 1;
1625 filter: alpha(opacity=100);
1626}
1627.btn-primary .caret,
1628.btn-danger .caret,
1629.btn-info .caret,
1630.btn-success .caret {
1631 border-top-color: #ffffff;
1632 opacity: 0.75;
1633 filter: alpha(opacity=75);
1634}
1635.btn-small .caret {
1636 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301637}
1638/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301639 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301640 */.nav {
1641 margin-left: 0;
1642 margin-bottom: 18px;
1643 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301644}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301645.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301646 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301647}
1648.nav > li > a:hover {
1649 text-decoration: none;
1650 background-color: #eeeeee;
1651}
1652.nav-list {
1653 padding-left: 14px;
1654 padding-right: 14px;
1655 margin-bottom: 0;
1656}
1657.nav-list > li > a, .nav-list .nav-header {
1658 display: block;
1659 padding: 3px 15px;
1660 margin-left: -15px;
1661 margin-right: -15px;
1662 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1663}
1664.nav-list .nav-header {
1665 font-size: 11px;
1666 font-weight: bold;
1667 line-height: 18px;
1668 color: #999999;
1669 text-transform: uppercase;
1670}
1671.nav-list > li + .nav-header {
1672 margin-top: 9px;
1673}
1674.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301675 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301676 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
1677 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301678}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301679.nav-list [class^="icon-"] {
1680 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301681}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301682.nav-tabs, .nav-pills {
1683 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301684}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301685.nav-tabs:before,
1686.nav-pills:before,
1687.nav-tabs:after,
1688.nav-pills:after {
1689 display: table;
1690 content: "";
1691}
1692.nav-tabs:after, .nav-pills:after {
1693 clear: both;
1694}
1695.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301696 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301697}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301698.nav-tabs > li > a, .nav-pills > li > a {
1699 padding-right: 12px;
1700 padding-left: 12px;
1701 margin-right: 2px;
1702 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301703}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301704.nav-tabs {
1705 border-bottom: 1px solid #ddd;
1706}
1707.nav-tabs > li {
1708 margin-bottom: -1px;
1709}
1710.nav-tabs > li > a {
1711 padding-top: 9px;
1712 padding-bottom: 9px;
1713 border: 1px solid transparent;
1714 -webkit-border-radius: 4px 4px 0 0;
1715 -moz-border-radius: 4px 4px 0 0;
1716 border-radius: 4px 4px 0 0;
1717}
1718.nav-tabs > li > a:hover {
1719 border-color: #eeeeee #eeeeee #dddddd;
1720}
1721.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
1722 color: #555555;
1723 background-color: #ffffff;
1724 border: 1px solid #ddd;
1725 border-bottom-color: transparent;
1726 cursor: default;
1727}
1728.nav-pills > li > a {
1729 padding-top: 8px;
1730 padding-bottom: 8px;
1731 margin-top: 2px;
1732 margin-bottom: 2px;
1733 -webkit-border-radius: 5px;
1734 -moz-border-radius: 5px;
1735 border-radius: 5px;
1736}
1737.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301738 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301739 background-color: #0088cc;
1740}
1741.nav-stacked > li {
1742 float: none;
1743}
1744.nav-stacked > li > a {
1745 margin-right: 0;
1746}
1747.nav-tabs.nav-stacked {
1748 border-bottom: 0;
1749}
1750.nav-tabs.nav-stacked > li > a {
1751 border: 1px solid #ddd;
1752 -webkit-border-radius: 0;
1753 -moz-border-radius: 0;
1754 border-radius: 0;
1755}
1756.nav-tabs.nav-stacked > li:first-child > a {
1757 -webkit-border-radius: 4px 4px 0 0;
1758 -moz-border-radius: 4px 4px 0 0;
1759 border-radius: 4px 4px 0 0;
1760}
1761.nav-tabs.nav-stacked > li:last-child > a {
1762 -webkit-border-radius: 0 0 4px 4px;
1763 -moz-border-radius: 0 0 4px 4px;
1764 border-radius: 0 0 4px 4px;
1765}
1766.nav-tabs.nav-stacked > li > a:hover {
1767 border-color: #ddd;
1768 z-index: 2;
1769}
1770.nav-pills.nav-stacked > li > a {
1771 margin-bottom: 3px;
1772}
1773.nav-pills.nav-stacked > li:last-child > a {
1774 margin-bottom: 1px;
1775}
1776.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1777 margin-top: 1px;
1778 border-width: 1px;
1779}
1780.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301781 -webkit-border-radius: 4px;
1782 -moz-border-radius: 4px;
1783 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301784}
1785.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1786 border-top-color: #0088cc;
1787 margin-top: 6px;
1788}
1789.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1790 border-top-color: #005580;
1791}
1792.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1793 border-top-color: #333333;
1794}
1795.nav > .dropdown.active > a:hover {
1796 color: #000000;
1797 cursor: pointer;
1798}
1799.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1800 color: #ffffff;
1801 background-color: #999999;
1802 border-color: #999999;
1803}
1804.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1805 border-top-color: #ffffff;
1806 opacity: 1;
1807 filter: alpha(opacity=100);
1808}
1809
1810.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301811 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301812 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301813}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301814.navbar-inner {
1815 padding-left: 20px;
1816 padding-right: 20px;
1817 background-color: #2c2c2c;
1818 background-image: -moz-linear-gradient(top, #333333, #222222);
1819 background-image: -ms-linear-gradient(top, #333333, #222222);
1820 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1821 background-image: -webkit-linear-gradient(top, #333333, #222222);
1822 background-image: -o-linear-gradient(top, #333333, #222222);
1823 background-image: linear-gradient(top, #333333, #222222);
1824 background-repeat: repeat-x;
1825 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1826 -webkit-border-radius: 4px;
1827 -moz-border-radius: 4px;
1828 border-radius: 4px;
1829 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1830 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1831 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1832}
1833.btn-navbar {
1834 display: none;
1835 float: right;
1836 padding: 7px 10px;
1837 margin-left: 5px;
1838 margin-right: 5px;
1839 background-color: #2c2c2c;
1840 background-image: -moz-linear-gradient(top, #333333, #222222);
1841 background-image: -ms-linear-gradient(top, #333333, #222222);
1842 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1843 background-image: -webkit-linear-gradient(top, #333333, #222222);
1844 background-image: -o-linear-gradient(top, #333333, #222222);
1845 background-image: linear-gradient(top, #333333, #222222);
1846 background-repeat: repeat-x;
1847 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1848 border-color: #222222 #222222 #000000;
1849 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1850 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1851 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1852 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1853 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1854}
1855.btn-navbar:hover,
1856.btn-navbar:active,
1857.btn-navbar.active,
1858.btn-navbar.disabled,
1859.btn-navbar[disabled] {
1860 background-color: #222222;
1861}
1862.btn-navbar:active, .btn-navbar.active {
1863 background-color: #080808 \9;
1864}
1865.btn-navbar .icon-bar {
1866 display: block;
1867 width: 18px;
1868 height: 2px;
1869 background-color: #f5f5f5;
1870 -webkit-border-radius: 1px;
1871 -moz-border-radius: 1px;
1872 border-radius: 1px;
1873 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1874 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1875 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1876}
1877.btn-navbar .icon-bar + .icon-bar {
1878 margin-top: 3px;
1879}
1880.nav-collapse.collapse {
1881 height: auto;
1882}
1883.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301884 text-decoration: none;
1885}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301886.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301887 float: left;
1888 display: block;
1889 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301890 font-size: 20px;
1891 font-weight: 200;
1892 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301893 color: #ffffff;
1894}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301895.navbar .navbar-text {
1896 margin-bottom: 0;
1897 line-height: 40px;
1898 color: #999999;
1899}
1900.navbar .navbar-text a:hover {
1901 color: #ffffff;
1902 background-color: transparent;
1903}
1904.navbar .btn, .navbar .btn-group {
1905 margin-top: 5px;
1906}
1907.navbar .btn-group .btn {
1908 margin-top: 0;
1909}
1910.navbar-form {
1911 margin-bottom: 0;
1912 *zoom: 1;
1913}
1914.navbar-form:before, .navbar-form:after {
1915 display: table;
1916 content: "";
1917}
1918.navbar-form:after {
1919 clear: both;
1920}
1921.navbar-form input, .navbar-form select {
1922 display: inline-block;
1923 margin-top: 5px;
1924 margin-bottom: 0;
1925}
1926.navbar-form .radio, .navbar-form .checkbox {
1927 margin-top: 5px;
1928}
1929.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1930 margin-top: 3px;
1931}
1932.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301933 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301934 float: left;
1935 margin-top: 6px;
1936 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301937}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301938.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301939 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301940 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1941 font-size: 13px;
1942 font-weight: normal;
1943 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301944 color: #ffffff;
1945 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301946 background: #666;
1947 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301948 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301949 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1950 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1951 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 +05301952 -webkit-transition: none;
1953 -moz-transition: none;
1954 -ms-transition: none;
1955 -o-transition: none;
1956 transition: none;
1957}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301958.navbar-search .search-query :-moz-placeholder {
1959 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301960}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301961.navbar-search .search-query::-webkit-input-placeholder {
1962 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301963}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301964.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301965 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301966 background-color: #999999;
1967 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301968}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301969.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301970 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301971 color: #333333;
1972 text-shadow: 0 1px 0 #ffffff;
1973 background-color: #ffffff;
1974 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301975 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1976 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1977 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301978 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301979}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301980.navbar-fixed-top {
1981 position: fixed;
1982 top: 0;
1983 right: 0;
1984 left: 0;
1985 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301986}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301987.navbar-fixed-top .navbar-inner {
1988 padding-left: 0;
1989 padding-right: 0;
1990 -webkit-border-radius: 0;
1991 -moz-border-radius: 0;
1992 border-radius: 0;
1993}
1994.navbar .nav {
1995 position: relative;
1996 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301997 display: block;
1998 float: left;
1999 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302000}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302001.navbar .nav.pull-right {
2002 float: right;
2003}
2004.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302005 display: block;
2006 float: left;
2007}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302008.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302009 float: none;
2010 padding: 10px 10px 11px;
2011 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302012 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302013 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302014 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302015}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302016.navbar .nav > li > a:hover {
2017 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302018 color: #ffffff;
2019 text-decoration: none;
2020}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302021.navbar .nav .active > a, .navbar .nav .active > a:hover {
2022 color: #ffffff;
2023 text-decoration: none;
2024 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302025 background-color: rgba(0, 0, 0, 0.5);
2026}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302027.navbar .divider-vertical {
2028 height: 40px;
2029 width: 1px;
2030 margin: 0 9px;
2031 overflow: hidden;
2032 background-color: #222222;
2033 border-right: 1px solid #333333;
2034}
2035.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302036 margin-left: 10px;
2037 margin-right: 0;
2038}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302039.navbar .dropdown-menu {
2040 margin-top: 1px;
2041 -webkit-border-radius: 4px;
2042 -moz-border-radius: 4px;
2043 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302044}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302045.navbar .dropdown-menu:before {
2046 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302047 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302048 border-left: 7px solid transparent;
2049 border-right: 7px solid transparent;
2050 border-bottom: 7px solid #ccc;
2051 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302052 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302053 top: -7px;
2054 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302055}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302056.navbar .dropdown-menu:after {
2057 content: '';
2058 display: inline-block;
2059 border-left: 6px solid transparent;
2060 border-right: 6px solid transparent;
2061 border-bottom: 6px solid #ffffff;
2062 position: absolute;
2063 top: -6px;
2064 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302065}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302066.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2067 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302068}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302069.navbar .nav .active .caret {
2070 opacity: 1;
2071 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302072}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302073.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2074 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302075}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302076.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302077 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302078}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302079.navbar .nav.pull-right .dropdown-menu {
2080 left: auto;
2081 right: 0;
2082}
2083.navbar .nav.pull-right .dropdown-menu:before {
2084 left: auto;
2085 right: 12px;
2086}
2087.navbar .nav.pull-right .dropdown-menu:after {
2088 left: auto;
2089 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302090}
2091
2092/*extra size menus for recent*/
2093.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2094 width: 260px !important;
2095 max-width: 260px !important;
2096}
2097
2098/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302099.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302100 display: block;
2101 float: right;
2102 width: 20px;
2103 margin-bottom: -5px;
2104 margin-top: 10px;
2105 visibility: hidden;
2106}
2107
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302108.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302109 padding: 0px 20px;
2110}
2111/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302112 * lib/css/bootstrap/dropdown.css
2113 */.dropdown {
2114 position: relative;
2115}
2116.dropdown-toggle {
2117 *margin-bottom: -3px;
2118}
2119.dropdown-toggle:active, .open .dropdown-toggle {
2120 outline: 0;
2121}
2122.caret {
2123 display: inline-block;
2124 width: 0;
2125 height: 0;
2126 text-indent: -99999px;
2127 *text-indent: 0;
2128 vertical-align: top;
2129 border-left: 4px solid transparent;
2130 border-right: 4px solid transparent;
2131 border-top: 4px solid #000000;
2132 opacity: 0.3;
2133 filter: alpha(opacity=30);
2134 content: "\2193";
2135}
2136.dropdown .caret {
2137 margin-top: 8px;
2138 margin-left: 2px;
2139}
2140.dropdown:hover .caret, .open.dropdown .caret {
2141 opacity: 1;
2142 filter: alpha(opacity=100);
2143}
2144.dropdown-menu {
2145 position: absolute;
2146 top: 100%;
2147 left: 0;
2148 z-index: 1000;
2149 float: left;
2150 display: none;
2151 min-width: 160px;
2152 max-width: 220px;
2153 _width: 160px;
2154 padding: 4px 0;
2155 margin: 0;
2156 list-style: none;
2157 background-color: #ffffff;
2158 border-color: #ccc;
2159 border-color: rgba(0, 0, 0, 0.2);
2160 border-style: solid;
2161 border-width: 1px;
2162 -webkit-border-radius: 0 0 5px 5px;
2163 -moz-border-radius: 0 0 5px 5px;
2164 border-radius: 0 0 5px 5px;
2165 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2166 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2167 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2168 -webkit-background-clip: padding-box;
2169 -moz-background-clip: padding;
2170 background-clip: padding-box;
2171 *border-right-width: 2px;
2172 *border-bottom-width: 2px;
2173}
2174.dropdown-menu.bottom-up {
2175 top: auto;
2176 bottom: 100%;
2177 margin-bottom: 2px;
2178}
2179.dropdown-menu .divider {
2180 height: 1px;
2181 margin: 5px 1px;
2182 overflow: hidden;
2183 background-color: #e5e5e5;
2184 border-bottom: 1px solid #ffffff;
2185 *width: 100%;
2186 *margin: -5px 0 5px;
2187}
2188.dropdown-menu a {
2189 display: block;
2190 padding: 3px 15px;
2191 clear: both;
2192 font-weight: normal;
2193 line-height: 18px;
2194 color: #555555;
2195 white-space: nowrap;
2196}
2197.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2198 color: #ffffff;
2199 text-decoration: none;
2200 background-color: #0088cc;
2201}
2202.dropdown.open {
2203 *z-index: 1000;
2204}
2205.dropdown.open .dropdown-toggle {
2206 color: #ffffff;
2207 background: #ccc;
2208 background: rgba(0, 0, 0, 0.3);
2209}
2210.dropdown.open .dropdown-menu {
2211 display: block;
2212}
2213/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302214 * lib/css/bootstrap/tooltip.css
2215 */.tooltip {
2216 position: absolute;
2217 z-index: 1020;
2218 display: block;
2219 visibility: visible;
2220 padding: 5px;
2221 font-size: 11px;
2222 opacity: 0;
2223 filter: alpha(opacity=0);
2224}
2225.tooltip.in {
2226 opacity: 0.8;
2227 filter: alpha(opacity=80);
2228}
2229.tooltip.top {
2230 margin-top: -2px;
2231}
2232.tooltip.right {
2233 margin-left: 2px;
2234}
2235.tooltip.bottom {
2236 margin-top: 2px;
2237}
2238.tooltip.left {
2239 margin-left: -2px;
2240}
2241.tooltip.top .tooltip-arrow {
2242 bottom: 0;
2243 left: 50%;
2244 margin-left: -5px;
2245 border-left: 5px solid transparent;
2246 border-right: 5px solid transparent;
2247 border-top: 5px solid #000000;
2248}
2249.tooltip.left .tooltip-arrow {
2250 top: 50%;
2251 right: 0;
2252 margin-top: -5px;
2253 border-top: 5px solid transparent;
2254 border-bottom: 5px solid transparent;
2255 border-left: 5px solid #000000;
2256}
2257.tooltip.bottom .tooltip-arrow {
2258 top: 0;
2259 left: 50%;
2260 margin-left: -5px;
2261 border-left: 5px solid transparent;
2262 border-right: 5px solid transparent;
2263 border-bottom: 5px solid #000000;
2264}
2265.tooltip.right .tooltip-arrow {
2266 top: 50%;
2267 left: 0;
2268 margin-top: -5px;
2269 border-top: 5px solid transparent;
2270 border-bottom: 5px solid transparent;
2271 border-right: 5px solid #000000;
2272}
2273.tooltip-inner {
2274 max-width: 200px;
2275 padding: 3px 8px;
2276 color: #ffffff;
2277 text-align: center;
2278 text-decoration: none;
2279 background-color: #000000;
2280 -webkit-border-radius: 4px;
2281 -moz-border-radius: 4px;
2282 border-radius: 4px;
2283}
2284.tooltip-arrow {
2285 position: absolute;
2286 width: 0;
2287 height: 0;
2288}
2289.popover {
2290 position: absolute;
2291 top: 0;
2292 left: 0;
2293 z-index: 1010;
2294 display: none;
2295 padding: 5px;
2296}
2297.popover.top {
2298 margin-top: -5px;
2299}
2300.popover.right {
2301 margin-left: 5px;
2302}
2303.popover.bottom {
2304 margin-top: 5px;
2305}
2306.popover.left {
2307 margin-left: -5px;
2308}
2309.popover.top .arrow {
2310 bottom: 0;
2311 left: 50%;
2312 margin-left: -5px;
2313 border-left: 5px solid transparent;
2314 border-right: 5px solid transparent;
2315 border-top: 5px solid #000000;
2316}
2317.popover.right .arrow {
2318 top: 50%;
2319 left: 0;
2320 margin-top: -5px;
2321 border-top: 5px solid transparent;
2322 border-bottom: 5px solid transparent;
2323 border-right: 5px solid #000000;
2324}
2325.popover.bottom .arrow {
2326 top: 0;
2327 left: 50%;
2328 margin-left: -5px;
2329 border-left: 5px solid transparent;
2330 border-right: 5px solid transparent;
2331 border-bottom: 5px solid #000000;
2332}
2333.popover.left .arrow {
2334 top: 50%;
2335 right: 0;
2336 margin-top: -5px;
2337 border-top: 5px solid transparent;
2338 border-bottom: 5px solid transparent;
2339 border-left: 5px solid #000000;
2340}
2341.popover .arrow {
2342 position: absolute;
2343 width: 0;
2344 height: 0;
2345}
2346.popover-inner {
2347 padding: 3px;
2348 width: 280px;
2349 overflow: hidden;
2350 background: #000000;
2351 background: rgba(0, 0, 0, 0.8);
2352 -webkit-border-radius: 6px;
2353 -moz-border-radius: 6px;
2354 border-radius: 6px;
2355 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2356 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2357 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2358}
2359.popover-title {
2360 padding: 9px 15px;
2361 line-height: 1;
2362 background-color: #f5f5f5;
2363 border-bottom: 1px solid #eee;
2364 -webkit-border-radius: 3px 3px 0 0;
2365 -moz-border-radius: 3px 3px 0 0;
2366 border-radius: 3px 3px 0 0;
2367}
2368.popover-content {
2369 padding: 14px;
2370 background-color: #ffffff;
2371 -webkit-border-radius: 0 0 3px 3px;
2372 -moz-border-radius: 0 0 3px 3px;
2373 border-radius: 0 0 3px 3px;
2374 -webkit-background-clip: padding-box;
2375 -moz-background-clip: padding-box;
2376 background-clip: padding-box;
2377}
2378.popover-content p, .popover-content ul, .popover-content ol {
2379 margin-bottom: 0;
2380}
2381/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302382 * lib/css/bootstrap/label.css
2383 */.label {
2384 padding: 2px 4px 3px;
2385 font-size: 11.049999999999999px;
2386 font-weight: bold;
2387 color: #ffffff;
2388 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2389 background-color: #999999;
2390 -webkit-border-radius: 3px;
2391 -moz-border-radius: 3px;
2392 border-radius: 3px;
2393}
2394.label:hover {
2395 color: #ffffff;
2396 text-decoration: none;
2397}
2398.label-important {
2399 background-color: #b94a48;
2400}
2401.label-important:hover {
2402 background-color: #953b39;
2403}
2404.label-warning {
2405 background-color: #f89406;
2406}
2407.label-warning:hover {
2408 background-color: #c67605;
2409}
2410.label-success {
2411 background-color: #468847;
2412}
2413.label-success:hover {
2414 background-color: #356635;
2415}
2416.label-info {
2417 background-color: #3a87ad;
2418}
2419.label-info:hover {
2420 background-color: #2d6987;
2421}
2422/*
2423 * lib/css/bootstrap/icons.css
2424 */[class^="icon-"], [class*=" icon-"] {
2425 display: inline-block;
2426 width: 14px;
2427 height: 14px;
2428 line-height: 14px;
2429 vertical-align: text-top;
2430 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2431 background-position: 14px 14px;
2432 background-repeat: no-repeat;
2433 *margin-right: .3em;
2434}
2435[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
2436 *margin-left: 0;
2437}
2438.icon-white {
2439 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
2440}
2441.icon-glass {
2442 background-position: 0 0;
2443}
2444.icon-music {
2445 background-position: -24px 0;
2446}
2447.icon-search {
2448 background-position: -48px 0;
2449}
2450.icon-envelope {
2451 background-position: -72px 0;
2452}
2453.icon-heart {
2454 background-position: -96px 0;
2455}
2456.icon-star {
2457 background-position: -120px 0;
2458}
2459.icon-star-empty {
2460 background-position: -144px 0;
2461}
2462.icon-user {
2463 background-position: -168px 0;
2464}
2465.icon-film {
2466 background-position: -192px 0;
2467}
2468.icon-th-large {
2469 background-position: -216px 0;
2470}
2471.icon-th {
2472 background-position: -240px 0;
2473}
2474.icon-th-list {
2475 background-position: -264px 0;
2476}
2477.icon-ok {
2478 background-position: -288px 0;
2479}
2480.icon-remove {
2481 background-position: -312px 0;
2482}
2483.icon-zoom-in {
2484 background-position: -336px 0;
2485}
2486.icon-zoom-out {
2487 background-position: -360px 0;
2488}
2489.icon-off {
2490 background-position: -384px 0;
2491}
2492.icon-signal {
2493 background-position: -408px 0;
2494}
2495.icon-cog {
2496 background-position: -432px 0;
2497}
2498.icon-trash {
2499 background-position: -456px 0;
2500}
2501.icon-home {
2502 background-position: 0 -24px;
2503}
2504.icon-file {
2505 background-position: -24px -24px;
2506}
2507.icon-time {
2508 background-position: -48px -24px;
2509}
2510.icon-road {
2511 background-position: -72px -24px;
2512}
2513.icon-download-alt {
2514 background-position: -96px -24px;
2515}
2516.icon-download {
2517 background-position: -120px -24px;
2518}
2519.icon-upload {
2520 background-position: -144px -24px;
2521}
2522.icon-inbox {
2523 background-position: -168px -24px;
2524}
2525.icon-play-circle {
2526 background-position: -192px -24px;
2527}
2528.icon-repeat {
2529 background-position: -216px -24px;
2530}
2531.icon-refresh {
2532 background-position: -240px -24px;
2533}
2534.icon-list-alt {
2535 background-position: -264px -24px;
2536}
2537.icon-lock {
2538 background-position: -287px -24px;
2539}
2540.icon-flag {
2541 background-position: -312px -24px;
2542}
2543.icon-headphones {
2544 background-position: -336px -24px;
2545}
2546.icon-volume-off {
2547 background-position: -360px -24px;
2548}
2549.icon-volume-down {
2550 background-position: -384px -24px;
2551}
2552.icon-volume-up {
2553 background-position: -408px -24px;
2554}
2555.icon-qrcode {
2556 background-position: -432px -24px;
2557}
2558.icon-barcode {
2559 background-position: -456px -24px;
2560}
2561.icon-tag {
2562 background-position: 0 -48px;
2563}
2564.icon-tags {
2565 background-position: -25px -48px;
2566}
2567.icon-book {
2568 background-position: -48px -48px;
2569}
2570.icon-bookmark {
2571 background-position: -72px -48px;
2572}
2573.icon-print {
2574 background-position: -96px -48px;
2575}
2576.icon-camera {
2577 background-position: -120px -48px;
2578}
2579.icon-font {
2580 background-position: -144px -48px;
2581}
2582.icon-bold {
2583 background-position: -167px -48px;
2584}
2585.icon-italic {
2586 background-position: -192px -48px;
2587}
2588.icon-text-height {
2589 background-position: -216px -48px;
2590}
2591.icon-text-width {
2592 background-position: -240px -48px;
2593}
2594.icon-align-left {
2595 background-position: -264px -48px;
2596}
2597.icon-align-center {
2598 background-position: -288px -48px;
2599}
2600.icon-align-right {
2601 background-position: -312px -48px;
2602}
2603.icon-align-justify {
2604 background-position: -336px -48px;
2605}
2606.icon-list {
2607 background-position: -360px -48px;
2608}
2609.icon-indent-left {
2610 background-position: -384px -48px;
2611}
2612.icon-indent-right {
2613 background-position: -408px -48px;
2614}
2615.icon-facetime-video {
2616 background-position: -432px -48px;
2617}
2618.icon-picture {
2619 background-position: -456px -48px;
2620}
2621.icon-pencil {
2622 background-position: 0 -72px;
2623}
2624.icon-map-marker {
2625 background-position: -24px -72px;
2626}
2627.icon-adjust {
2628 background-position: -48px -72px;
2629}
2630.icon-tint {
2631 background-position: -72px -72px;
2632}
2633.icon-edit {
2634 background-position: -96px -72px;
2635}
2636.icon-share {
2637 background-position: -120px -72px;
2638}
2639.icon-check {
2640 background-position: -144px -72px;
2641}
2642.icon-move {
2643 background-position: -168px -72px;
2644}
2645.icon-step-backward {
2646 background-position: -192px -72px;
2647}
2648.icon-fast-backward {
2649 background-position: -216px -72px;
2650}
2651.icon-backward {
2652 background-position: -240px -72px;
2653}
2654.icon-play {
2655 background-position: -264px -72px;
2656}
2657.icon-pause {
2658 background-position: -288px -72px;
2659}
2660.icon-stop {
2661 background-position: -312px -72px;
2662}
2663.icon-forward {
2664 background-position: -336px -72px;
2665}
2666.icon-fast-forward {
2667 background-position: -360px -72px;
2668}
2669.icon-step-forward {
2670 background-position: -384px -72px;
2671}
2672.icon-eject {
2673 background-position: -408px -72px;
2674}
2675.icon-chevron-left {
2676 background-position: -432px -72px;
2677}
2678.icon-chevron-right {
2679 background-position: -456px -72px;
2680}
2681.icon-plus-sign {
2682 background-position: 0 -96px;
2683}
2684.icon-minus-sign {
2685 background-position: -24px -96px;
2686}
2687.icon-remove-sign {
2688 background-position: -48px -96px;
2689}
2690.icon-ok-sign {
2691 background-position: -72px -96px;
2692}
2693.icon-question-sign {
2694 background-position: -96px -96px;
2695}
2696.icon-info-sign {
2697 background-position: -120px -96px;
2698}
2699.icon-screenshot {
2700 background-position: -144px -96px;
2701}
2702.icon-remove-circle {
2703 background-position: -168px -96px;
2704}
2705.icon-ok-circle {
2706 background-position: -192px -96px;
2707}
2708.icon-ban-circle {
2709 background-position: -216px -96px;
2710}
2711.icon-arrow-left {
2712 background-position: -240px -96px;
2713}
2714.icon-arrow-right {
2715 background-position: -264px -96px;
2716}
2717.icon-arrow-up {
2718 background-position: -289px -96px;
2719}
2720.icon-arrow-down {
2721 background-position: -312px -96px;
2722}
2723.icon-share-alt {
2724 background-position: -336px -96px;
2725}
2726.icon-resize-full {
2727 background-position: -360px -96px;
2728}
2729.icon-resize-small {
2730 background-position: -384px -96px;
2731}
2732.icon-plus {
2733 background-position: -408px -96px;
2734}
2735.icon-minus {
2736 background-position: -433px -96px;
2737}
2738.icon-asterisk {
2739 background-position: -456px -96px;
2740}
2741.icon-exclamation-sign {
2742 background-position: 0 -120px;
2743}
2744.icon-gift {
2745 background-position: -24px -120px;
2746}
2747.icon-leaf {
2748 background-position: -48px -120px;
2749}
2750.icon-fire {
2751 background-position: -72px -120px;
2752}
2753.icon-eye-open {
2754 background-position: -96px -120px;
2755}
2756.icon-eye-close {
2757 background-position: -120px -120px;
2758}
2759.icon-warning-sign {
2760 background-position: -144px -120px;
2761}
2762.icon-plane {
2763 background-position: -168px -120px;
2764}
2765.icon-calendar {
2766 background-position: -192px -120px;
2767}
2768.icon-random {
2769 background-position: -216px -120px;
2770}
2771.icon-comment {
2772 background-position: -240px -120px;
2773}
2774.icon-magnet {
2775 background-position: -264px -120px;
2776}
2777.icon-chevron-up {
2778 background-position: -288px -120px;
2779}
2780.icon-chevron-down {
2781 background-position: -313px -119px;
2782}
2783.icon-retweet {
2784 background-position: -336px -120px;
2785}
2786.icon-shopping-cart {
2787 background-position: -360px -120px;
2788}
2789.icon-folder-close {
2790 background-position: -384px -120px;
2791}
2792.icon-folder-open {
2793 background-position: -408px -120px;
2794}
2795.icon-resize-vertical {
2796 background-position: -432px -119px;
2797}
2798.icon-resize-horizontal {
2799 background-position: -456px -118px;
2800}
2801/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302802 * erpnext/startup/startup.css
2803 */h1, h2, h3, h4, h5 {
2804 font-family: Tahoma, Arial, Verdana, sans-serif;
2805 font-weight: bold;
2806}
2807
2808body {
2809 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
2810 font-size: 12px;
2811}
2812
2813span, div, td, input, textarea, button, select {
2814 font-family: inherit;
2815}
2816
2817body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302818}
2819
2820.erpnext-footer {
2821 margin: 3px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302822 text-align: center;
2823}
2824
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302825.module-icons {
2826 background: url(../images/module-icons.png) no-repeat top left;
2827 width:16px;
2828 height:16px;
2829}
2830
2831.module-icons-accounts{ background-position: 0 0; }
2832.module-icons-analysis{ background-position: 0 -66px; }
2833.module-icons-buying{ background-position: 0 -132px; }
2834.module-icons-home{ background-position: 0 -198px; }
2835.module-icons-hr{ background-position: 0 -264px; }
2836.module-icons-people{ background-position: 0 -330px; }
2837.module-icons-production{ background-position: 0 -396px; }
2838.module-icons-projects{ background-position: 0 -462px; }
2839.module-icons-selling{ background-position: 0 -528px; }
2840.module-icons-setup{ background-position: 0 -594px; }
2841.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05302842.module-icons-support{ background-position: 0 -726px; }
2843
Anand Doshidb628762012-02-24 17:56:00 +05302844.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05302845 margin: -3px 0px;
2846 padding: 2px;
2847 font-size: 14px;
2848 color: #fff;
2849 background-color: #B00D07;
2850 min-width: 20px;
2851 text-align: center;
2852 display: inline-block;
2853 border-radius: 2px;
2854}