blob: 5ca655eb9de91d33d1b022c384fe55e75eb1942e [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
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302088/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302089.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302090 display: block;
2091 float: right;
2092 width: 20px;
2093 margin-bottom: -5px;
2094 margin-top: 10px;
2095 visibility: hidden;
2096}
2097
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302098.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302099 padding: 0px 20px;
2100}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302101
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302102/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302103 * lib/css/bootstrap/dropdown.css
2104 */.dropdown {
2105 position: relative;
2106}
2107.dropdown-toggle {
2108 *margin-bottom: -3px;
2109}
2110.dropdown-toggle:active, .open .dropdown-toggle {
2111 outline: 0;
2112}
2113.caret {
2114 display: inline-block;
2115 width: 0;
2116 height: 0;
2117 text-indent: -99999px;
2118 *text-indent: 0;
2119 vertical-align: top;
2120 border-left: 4px solid transparent;
2121 border-right: 4px solid transparent;
2122 border-top: 4px solid #000000;
2123 opacity: 0.3;
2124 filter: alpha(opacity=30);
2125 content: "\2193";
2126}
2127.dropdown .caret {
2128 margin-top: 8px;
2129 margin-left: 2px;
2130}
2131.dropdown:hover .caret, .open.dropdown .caret {
2132 opacity: 1;
2133 filter: alpha(opacity=100);
2134}
2135.dropdown-menu {
2136 position: absolute;
2137 top: 100%;
2138 left: 0;
2139 z-index: 1000;
2140 float: left;
2141 display: none;
2142 min-width: 160px;
2143 max-width: 220px;
2144 _width: 160px;
2145 padding: 4px 0;
2146 margin: 0;
2147 list-style: none;
2148 background-color: #ffffff;
2149 border-color: #ccc;
2150 border-color: rgba(0, 0, 0, 0.2);
2151 border-style: solid;
2152 border-width: 1px;
2153 -webkit-border-radius: 0 0 5px 5px;
2154 -moz-border-radius: 0 0 5px 5px;
2155 border-radius: 0 0 5px 5px;
2156 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2157 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2158 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2159 -webkit-background-clip: padding-box;
2160 -moz-background-clip: padding;
2161 background-clip: padding-box;
2162 *border-right-width: 2px;
2163 *border-bottom-width: 2px;
2164}
2165.dropdown-menu.bottom-up {
2166 top: auto;
2167 bottom: 100%;
2168 margin-bottom: 2px;
2169}
2170.dropdown-menu .divider {
2171 height: 1px;
2172 margin: 5px 1px;
2173 overflow: hidden;
2174 background-color: #e5e5e5;
2175 border-bottom: 1px solid #ffffff;
2176 *width: 100%;
2177 *margin: -5px 0 5px;
2178}
2179.dropdown-menu a {
2180 display: block;
2181 padding: 3px 15px;
2182 clear: both;
2183 font-weight: normal;
2184 line-height: 18px;
2185 color: #555555;
2186 white-space: nowrap;
2187}
2188.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2189 color: #ffffff;
2190 text-decoration: none;
2191 background-color: #0088cc;
2192}
2193.dropdown.open {
2194 *z-index: 1000;
2195}
2196.dropdown.open .dropdown-toggle {
2197 color: #ffffff;
2198 background: #ccc;
2199 background: rgba(0, 0, 0, 0.3);
2200}
2201.dropdown.open .dropdown-menu {
2202 display: block;
2203}
2204/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302205 * lib/css/bootstrap/tooltip.css
2206 */.tooltip {
2207 position: absolute;
2208 z-index: 1020;
2209 display: block;
2210 visibility: visible;
2211 padding: 5px;
2212 font-size: 11px;
2213 opacity: 0;
2214 filter: alpha(opacity=0);
2215}
2216.tooltip.in {
2217 opacity: 0.8;
2218 filter: alpha(opacity=80);
2219}
2220.tooltip.top {
2221 margin-top: -2px;
2222}
2223.tooltip.right {
2224 margin-left: 2px;
2225}
2226.tooltip.bottom {
2227 margin-top: 2px;
2228}
2229.tooltip.left {
2230 margin-left: -2px;
2231}
2232.tooltip.top .tooltip-arrow {
2233 bottom: 0;
2234 left: 50%;
2235 margin-left: -5px;
2236 border-left: 5px solid transparent;
2237 border-right: 5px solid transparent;
2238 border-top: 5px solid #000000;
2239}
2240.tooltip.left .tooltip-arrow {
2241 top: 50%;
2242 right: 0;
2243 margin-top: -5px;
2244 border-top: 5px solid transparent;
2245 border-bottom: 5px solid transparent;
2246 border-left: 5px solid #000000;
2247}
2248.tooltip.bottom .tooltip-arrow {
2249 top: 0;
2250 left: 50%;
2251 margin-left: -5px;
2252 border-left: 5px solid transparent;
2253 border-right: 5px solid transparent;
2254 border-bottom: 5px solid #000000;
2255}
2256.tooltip.right .tooltip-arrow {
2257 top: 50%;
2258 left: 0;
2259 margin-top: -5px;
2260 border-top: 5px solid transparent;
2261 border-bottom: 5px solid transparent;
2262 border-right: 5px solid #000000;
2263}
2264.tooltip-inner {
2265 max-width: 200px;
2266 padding: 3px 8px;
2267 color: #ffffff;
2268 text-align: center;
2269 text-decoration: none;
2270 background-color: #000000;
2271 -webkit-border-radius: 4px;
2272 -moz-border-radius: 4px;
2273 border-radius: 4px;
2274}
2275.tooltip-arrow {
2276 position: absolute;
2277 width: 0;
2278 height: 0;
2279}
2280.popover {
2281 position: absolute;
2282 top: 0;
2283 left: 0;
2284 z-index: 1010;
2285 display: none;
2286 padding: 5px;
2287}
2288.popover.top {
2289 margin-top: -5px;
2290}
2291.popover.right {
2292 margin-left: 5px;
2293}
2294.popover.bottom {
2295 margin-top: 5px;
2296}
2297.popover.left {
2298 margin-left: -5px;
2299}
2300.popover.top .arrow {
2301 bottom: 0;
2302 left: 50%;
2303 margin-left: -5px;
2304 border-left: 5px solid transparent;
2305 border-right: 5px solid transparent;
2306 border-top: 5px solid #000000;
2307}
2308.popover.right .arrow {
2309 top: 50%;
2310 left: 0;
2311 margin-top: -5px;
2312 border-top: 5px solid transparent;
2313 border-bottom: 5px solid transparent;
2314 border-right: 5px solid #000000;
2315}
2316.popover.bottom .arrow {
2317 top: 0;
2318 left: 50%;
2319 margin-left: -5px;
2320 border-left: 5px solid transparent;
2321 border-right: 5px solid transparent;
2322 border-bottom: 5px solid #000000;
2323}
2324.popover.left .arrow {
2325 top: 50%;
2326 right: 0;
2327 margin-top: -5px;
2328 border-top: 5px solid transparent;
2329 border-bottom: 5px solid transparent;
2330 border-left: 5px solid #000000;
2331}
2332.popover .arrow {
2333 position: absolute;
2334 width: 0;
2335 height: 0;
2336}
2337.popover-inner {
2338 padding: 3px;
2339 width: 280px;
2340 overflow: hidden;
2341 background: #000000;
2342 background: rgba(0, 0, 0, 0.8);
2343 -webkit-border-radius: 6px;
2344 -moz-border-radius: 6px;
2345 border-radius: 6px;
2346 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2347 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2348 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2349}
2350.popover-title {
2351 padding: 9px 15px;
2352 line-height: 1;
2353 background-color: #f5f5f5;
2354 border-bottom: 1px solid #eee;
2355 -webkit-border-radius: 3px 3px 0 0;
2356 -moz-border-radius: 3px 3px 0 0;
2357 border-radius: 3px 3px 0 0;
2358}
2359.popover-content {
2360 padding: 14px;
2361 background-color: #ffffff;
2362 -webkit-border-radius: 0 0 3px 3px;
2363 -moz-border-radius: 0 0 3px 3px;
2364 border-radius: 0 0 3px 3px;
2365 -webkit-background-clip: padding-box;
2366 -moz-background-clip: padding-box;
2367 background-clip: padding-box;
2368}
2369.popover-content p, .popover-content ul, .popover-content ol {
2370 margin-bottom: 0;
2371}
2372/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302373 * lib/css/bootstrap/label.css
2374 */.label {
2375 padding: 2px 4px 3px;
2376 font-size: 11.049999999999999px;
2377 font-weight: bold;
2378 color: #ffffff;
2379 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2380 background-color: #999999;
2381 -webkit-border-radius: 3px;
2382 -moz-border-radius: 3px;
2383 border-radius: 3px;
2384}
2385.label:hover {
2386 color: #ffffff;
2387 text-decoration: none;
2388}
2389.label-important {
2390 background-color: #b94a48;
2391}
2392.label-important:hover {
2393 background-color: #953b39;
2394}
2395.label-warning {
2396 background-color: #f89406;
2397}
2398.label-warning:hover {
2399 background-color: #c67605;
2400}
2401.label-success {
2402 background-color: #468847;
2403}
2404.label-success:hover {
2405 background-color: #356635;
2406}
2407.label-info {
2408 background-color: #3a87ad;
2409}
2410.label-info:hover {
2411 background-color: #2d6987;
2412}
2413/*
2414 * lib/css/bootstrap/icons.css
2415 */[class^="icon-"], [class*=" icon-"] {
2416 display: inline-block;
2417 width: 14px;
2418 height: 14px;
2419 line-height: 14px;
2420 vertical-align: text-top;
2421 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2422 background-position: 14px 14px;
2423 background-repeat: no-repeat;
2424 *margin-right: .3em;
2425}
2426[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
2427 *margin-left: 0;
2428}
2429.icon-white {
2430 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
2431}
2432.icon-glass {
2433 background-position: 0 0;
2434}
2435.icon-music {
2436 background-position: -24px 0;
2437}
2438.icon-search {
2439 background-position: -48px 0;
2440}
2441.icon-envelope {
2442 background-position: -72px 0;
2443}
2444.icon-heart {
2445 background-position: -96px 0;
2446}
2447.icon-star {
2448 background-position: -120px 0;
2449}
2450.icon-star-empty {
2451 background-position: -144px 0;
2452}
2453.icon-user {
2454 background-position: -168px 0;
2455}
2456.icon-film {
2457 background-position: -192px 0;
2458}
2459.icon-th-large {
2460 background-position: -216px 0;
2461}
2462.icon-th {
2463 background-position: -240px 0;
2464}
2465.icon-th-list {
2466 background-position: -264px 0;
2467}
2468.icon-ok {
2469 background-position: -288px 0;
2470}
2471.icon-remove {
2472 background-position: -312px 0;
2473}
2474.icon-zoom-in {
2475 background-position: -336px 0;
2476}
2477.icon-zoom-out {
2478 background-position: -360px 0;
2479}
2480.icon-off {
2481 background-position: -384px 0;
2482}
2483.icon-signal {
2484 background-position: -408px 0;
2485}
2486.icon-cog {
2487 background-position: -432px 0;
2488}
2489.icon-trash {
2490 background-position: -456px 0;
2491}
2492.icon-home {
2493 background-position: 0 -24px;
2494}
2495.icon-file {
2496 background-position: -24px -24px;
2497}
2498.icon-time {
2499 background-position: -48px -24px;
2500}
2501.icon-road {
2502 background-position: -72px -24px;
2503}
2504.icon-download-alt {
2505 background-position: -96px -24px;
2506}
2507.icon-download {
2508 background-position: -120px -24px;
2509}
2510.icon-upload {
2511 background-position: -144px -24px;
2512}
2513.icon-inbox {
2514 background-position: -168px -24px;
2515}
2516.icon-play-circle {
2517 background-position: -192px -24px;
2518}
2519.icon-repeat {
2520 background-position: -216px -24px;
2521}
2522.icon-refresh {
2523 background-position: -240px -24px;
2524}
2525.icon-list-alt {
2526 background-position: -264px -24px;
2527}
2528.icon-lock {
2529 background-position: -287px -24px;
2530}
2531.icon-flag {
2532 background-position: -312px -24px;
2533}
2534.icon-headphones {
2535 background-position: -336px -24px;
2536}
2537.icon-volume-off {
2538 background-position: -360px -24px;
2539}
2540.icon-volume-down {
2541 background-position: -384px -24px;
2542}
2543.icon-volume-up {
2544 background-position: -408px -24px;
2545}
2546.icon-qrcode {
2547 background-position: -432px -24px;
2548}
2549.icon-barcode {
2550 background-position: -456px -24px;
2551}
2552.icon-tag {
2553 background-position: 0 -48px;
2554}
2555.icon-tags {
2556 background-position: -25px -48px;
2557}
2558.icon-book {
2559 background-position: -48px -48px;
2560}
2561.icon-bookmark {
2562 background-position: -72px -48px;
2563}
2564.icon-print {
2565 background-position: -96px -48px;
2566}
2567.icon-camera {
2568 background-position: -120px -48px;
2569}
2570.icon-font {
2571 background-position: -144px -48px;
2572}
2573.icon-bold {
2574 background-position: -167px -48px;
2575}
2576.icon-italic {
2577 background-position: -192px -48px;
2578}
2579.icon-text-height {
2580 background-position: -216px -48px;
2581}
2582.icon-text-width {
2583 background-position: -240px -48px;
2584}
2585.icon-align-left {
2586 background-position: -264px -48px;
2587}
2588.icon-align-center {
2589 background-position: -288px -48px;
2590}
2591.icon-align-right {
2592 background-position: -312px -48px;
2593}
2594.icon-align-justify {
2595 background-position: -336px -48px;
2596}
2597.icon-list {
2598 background-position: -360px -48px;
2599}
2600.icon-indent-left {
2601 background-position: -384px -48px;
2602}
2603.icon-indent-right {
2604 background-position: -408px -48px;
2605}
2606.icon-facetime-video {
2607 background-position: -432px -48px;
2608}
2609.icon-picture {
2610 background-position: -456px -48px;
2611}
2612.icon-pencil {
2613 background-position: 0 -72px;
2614}
2615.icon-map-marker {
2616 background-position: -24px -72px;
2617}
2618.icon-adjust {
2619 background-position: -48px -72px;
2620}
2621.icon-tint {
2622 background-position: -72px -72px;
2623}
2624.icon-edit {
2625 background-position: -96px -72px;
2626}
2627.icon-share {
2628 background-position: -120px -72px;
2629}
2630.icon-check {
2631 background-position: -144px -72px;
2632}
2633.icon-move {
2634 background-position: -168px -72px;
2635}
2636.icon-step-backward {
2637 background-position: -192px -72px;
2638}
2639.icon-fast-backward {
2640 background-position: -216px -72px;
2641}
2642.icon-backward {
2643 background-position: -240px -72px;
2644}
2645.icon-play {
2646 background-position: -264px -72px;
2647}
2648.icon-pause {
2649 background-position: -288px -72px;
2650}
2651.icon-stop {
2652 background-position: -312px -72px;
2653}
2654.icon-forward {
2655 background-position: -336px -72px;
2656}
2657.icon-fast-forward {
2658 background-position: -360px -72px;
2659}
2660.icon-step-forward {
2661 background-position: -384px -72px;
2662}
2663.icon-eject {
2664 background-position: -408px -72px;
2665}
2666.icon-chevron-left {
2667 background-position: -432px -72px;
2668}
2669.icon-chevron-right {
2670 background-position: -456px -72px;
2671}
2672.icon-plus-sign {
2673 background-position: 0 -96px;
2674}
2675.icon-minus-sign {
2676 background-position: -24px -96px;
2677}
2678.icon-remove-sign {
2679 background-position: -48px -96px;
2680}
2681.icon-ok-sign {
2682 background-position: -72px -96px;
2683}
2684.icon-question-sign {
2685 background-position: -96px -96px;
2686}
2687.icon-info-sign {
2688 background-position: -120px -96px;
2689}
2690.icon-screenshot {
2691 background-position: -144px -96px;
2692}
2693.icon-remove-circle {
2694 background-position: -168px -96px;
2695}
2696.icon-ok-circle {
2697 background-position: -192px -96px;
2698}
2699.icon-ban-circle {
2700 background-position: -216px -96px;
2701}
2702.icon-arrow-left {
2703 background-position: -240px -96px;
2704}
2705.icon-arrow-right {
2706 background-position: -264px -96px;
2707}
2708.icon-arrow-up {
2709 background-position: -289px -96px;
2710}
2711.icon-arrow-down {
2712 background-position: -312px -96px;
2713}
2714.icon-share-alt {
2715 background-position: -336px -96px;
2716}
2717.icon-resize-full {
2718 background-position: -360px -96px;
2719}
2720.icon-resize-small {
2721 background-position: -384px -96px;
2722}
2723.icon-plus {
2724 background-position: -408px -96px;
2725}
2726.icon-minus {
2727 background-position: -433px -96px;
2728}
2729.icon-asterisk {
2730 background-position: -456px -96px;
2731}
2732.icon-exclamation-sign {
2733 background-position: 0 -120px;
2734}
2735.icon-gift {
2736 background-position: -24px -120px;
2737}
2738.icon-leaf {
2739 background-position: -48px -120px;
2740}
2741.icon-fire {
2742 background-position: -72px -120px;
2743}
2744.icon-eye-open {
2745 background-position: -96px -120px;
2746}
2747.icon-eye-close {
2748 background-position: -120px -120px;
2749}
2750.icon-warning-sign {
2751 background-position: -144px -120px;
2752}
2753.icon-plane {
2754 background-position: -168px -120px;
2755}
2756.icon-calendar {
2757 background-position: -192px -120px;
2758}
2759.icon-random {
2760 background-position: -216px -120px;
2761}
2762.icon-comment {
2763 background-position: -240px -120px;
2764}
2765.icon-magnet {
2766 background-position: -264px -120px;
2767}
2768.icon-chevron-up {
2769 background-position: -288px -120px;
2770}
2771.icon-chevron-down {
2772 background-position: -313px -119px;
2773}
2774.icon-retweet {
2775 background-position: -336px -120px;
2776}
2777.icon-shopping-cart {
2778 background-position: -360px -120px;
2779}
2780.icon-folder-close {
2781 background-position: -384px -120px;
2782}
2783.icon-folder-open {
2784 background-position: -408px -120px;
2785}
2786.icon-resize-vertical {
2787 background-position: -432px -119px;
2788}
2789.icon-resize-horizontal {
2790 background-position: -456px -118px;
2791}
2792/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302793 * erpnext/startup/startup.css
2794 */h1, h2, h3, h4, h5 {
2795 font-family: Tahoma, Arial, Verdana, sans-serif;
2796 font-weight: bold;
2797}
2798
2799body {
2800 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
2801 font-size: 12px;
2802}
2803
2804span, div, td, input, textarea, button, select {
2805 font-family: inherit;
2806}
2807
2808body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302809}
2810
2811.erpnext-footer {
2812 margin: 3px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302813 text-align: center;
2814}
2815
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302816.module-icons {
2817 background: url(../images/module-icons.png) no-repeat top left;
2818 width:16px;
2819 height:16px;
2820}
2821
2822.module-icons-accounts{ background-position: 0 0; }
2823.module-icons-analysis{ background-position: 0 -66px; }
2824.module-icons-buying{ background-position: 0 -132px; }
2825.module-icons-home{ background-position: 0 -198px; }
2826.module-icons-hr{ background-position: 0 -264px; }
2827.module-icons-people{ background-position: 0 -330px; }
2828.module-icons-production{ background-position: 0 -396px; }
2829.module-icons-projects{ background-position: 0 -462px; }
2830.module-icons-selling{ background-position: 0 -528px; }
2831.module-icons-setup{ background-position: 0 -594px; }
2832.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05302833.module-icons-support{ background-position: 0 -726px; }
2834
Anand Doshidb628762012-02-24 17:56:00 +05302835.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05302836 margin: -3px 0px;
2837 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05302838 min-width: 20px;
2839 text-align: center;
2840 display: inline-block;
2841 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302842 color: #999999;
2843 background-color: #333131;
2844}
2845
2846.navbar-new-comments:hover,
2847.navbar-new-comments:active,
2848.navbar-new-comments:focus {
2849 color: #fff;
2850}
2851
2852
2853.navbar-new-comments-true {
2854 color: #fff;
2855 background-color: #B00D07;
2856}
2857
2858.navbar-icon-home {
2859 vertical-align: middle;
2860 opacity:0.4;
2861 Filter:alpha(opacity=40); /* For IE8 and earlier */
2862}
2863
2864.navbar-icon-home:hover,
2865.navbar-icon-home:focus,
2866.navbar-icon-home:active {
2867 opacity:1;
2868 Filter:alpha(opacity=100); /* For IE8 and earlier */
2869}
2870
2871/*extra size menus for recent*/
2872.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2873 min-width: 160px !important;
2874 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05302875}