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