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