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