blob: d9b5fb8278d8ac0e03e8e74b673db19a70f36b0f [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}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530242/*
243 * lib/css/legacy/messages.css
244 */
245/* FLOATING MESSAGE */
246
247.btn-img { cursor: pointer; }
248
249div.fetching { color: #888; text-align:right; }
250
251div.notice {
252 postion: absolute;
253 background-color: #000;
254 -moz-border-radius: 5px; -webkit-border-radius: 5px;
255 opacity: 0.6;
256 right: 0;
257 top: 0;
258 margin-top: 8px;
259 z-index: -1;
260 padding: 8px;
261}
262
263/** help **/
264
265.info-box {
266 background-color: #F8F8F8;
267 border: 1px solid #CCCCCC;
268 border-radius: 3px 3px 3px 3px;
269 line-height: 1.6em;
270 overflow: auto;
271 padding: 6px 10px;
272 margin-bottom: 9px;
273}
274
275.help_box, .help-box {
276 background-color:#FFC;
277 font-size: 13px;
278 color: #864;
279 padding: 7px;
280 margin: 11px 0px;
281 border: 1px solid #EEB;
282}
283
284.help_box_big {
285 background-color:#FFC;
286 color: #864;
287 padding: 7px;
288 margin: 7px 0px;
289 border: 1px solid #EEB;
290 text-align: center;
291 font-size: 14px;
292}
293/*
294 * lib/css/legacy/forms.css
295 *//* FORMS */
296
297
298div.frm_print_wrapper {
299 background-color:#FFF;
300 border:1px solid #444;
301 padding: 40px;
302
303 box-shadow:1px 1px 8px #229;
304 -moz-box-shadow: 1px 1px 8px #229;
305 -webkit-box-shadow: 1px 1px 8px #229;
306}
307
308div.page_break {
309 margin: 24px 0px;
310 border-top: 1px dashed #888;
311}
312
313div.grid_tbarlinks {
314 border-bottom: 0px;
315 background-color: #CCC;
316 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530317 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530318 float: right;
319
320 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
321 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
322}
323
324
325div.frm_tip_box {
326 margin: 0px;
327 padding: 8px;
328 background-color: #FFC;
329 display: none;
330 font-size: 11px;
331 border: 1px solid #FFB;
332}
333
334div.frm_tip_box table {
335 border-collapse: collapse;
336 vertical-align: top;
337}
338
339td.frm_tray_area {
340 width: 122px;
341}
342
343div.dialog_frm {
344 position: relative;
345 margin: 10px;
346}
347
348
349
350/*------------------*/
351
352.top_cell {
353 height: 50px;
354}
355
356div.attach_area {
357 padding: 8px;
358 margin: 8px;
359 background-color: #EEE;
360}
361
362div.attach_area table {
363 width: 100%;
364}
365
366.tablabel_normal {
367 margin: 0 4px 0 0;
368 padding: 3px 5px;
369 line-height: 1.3em;
370 display: inline;
371 cursor: pointer;
372}
373
374.tablabel_selected {
375 margin: 0 4px 0 0;
376 padding: 3px 5px;
377 line-height: 1.3em;
378 font-weight: bold;
379 display: inline;
380 cursor: pointer;
381 color: #000;
382}
383
384.scrollhead_wrapper {
385 position: absolute;
386 z-index: 1;
387 height: 30px;
388}
389
390.treeimg {
391 cursor: pointer;
392 margin-right: 3px;
393}
394
395
396.sectionCell {
397 padding: 5px;
398 vertical-align: top;
399}
400
401.code_area {
402 width: 80%;
403 margin: 8px;
404 padding: 4px;
405 background-color: #F8F8F8;
406 border: 1px solid #CCC;
407 overflow-x: auto;
408}
409
410.code_text {
411 width: 100%;
412 height: 360px;
413 margin-top: 3px;
414 font-family: Courier, Fixed;
415 font-size: 12px;
416}
417
418div.time_field select{
419 display: inline;
420 margin: 2px;
421 width: 45px;
422}
423
424/* Documents */
425
426.frm_field_table {
427 width: 100%;
428 border-collapse: collapse;
429}
430
431.datalabelcell {
432 padding: 2px 0px;
433 width: 160px;
434 vertical-align: top;
435}
436.datainputcell { padding: 2px 0px; }
437
438
439.field_description, .help {
440 margin: 3px 0px 11px 0px;
441 color: #888;
442 font-style: italic;
443}
444
445.field_description_top {
446 margin-bottom: 3px;
447}
448
449.field_label {
450 font-size:11px;
451}
452.input_area input, select, textarea {
453 font-size: 14px;
454 padding: 2px;
455}
456
457.input_area input {
458 width: 80%;
459 margin: 0px;
460}
461.input_area select {
462 width: 80%;
463}
464.input_area textarea {
465 width: 90%;
466}
467
468.disp_area {
469 width: 80%;
470 padding: 2px 0px;
471 font-size: 12px;
472}
473.disp_area_no_val {
474 height: 14px;
475}
476
477.no_img {
478 padding: 40px;
479 width: 100px;
480 height: 20px;
481 color: #888;
482 text-align: center;
483 border: 1px solid #AAA;
484}
485
486.input-mandatory {
487 font-size: 14px !important;
488 font-weight: bold;
489}
490
491.field-to-update {
492 background-color:#FEE;
493}
494
495/* sidebar */
496
497div.sidebar-comment-wrapper input {
498 width: 50%;
499}
500div.sidebar-comment-message {
501 margin-top: 8px;
502 font-size: 11px;
503 color: #777;
504}
505
506div.sidebar-comment-text {
507 font-size: 12px;
508 font-weight: bold;
509 margin-top: 8px;
510 color: #444;
511}
512div.sidebar-comment-info {
513 font-size: 10px;
514 color: #777;
515}
516/*
517 * lib/css/legacy/grid.css
518 */
519
520/* Grid */
521
522
523/* --- Simple --- */
524.grid_wrapper_simple {
525 width: 100%;
526 margin-bottom: 8px;
527 border: 1px solid #AA9;
528}
529
530.grid_head_wrapper_simple {
531 padding: 0px;
532 border-bottom: 2px solid #AAA;
533}
534
535.grid_head_wrapper_simple td {
536 border-right: 1px solid #AA9;
537}
538
539.grid_head_wrapper_simple td div {
540 padding: 2px;
541}
542
543.grid_tab_wrapper_simple {
544}
545
546.grid_cell_simple {
547 padding: 2px;
548 background-color: #fff;
549 border-right: 1px solid #AA9;
550}
551
552
553/* --- Normal --- */
554.grid_wrapper {
555 position: relative;
556 overflow: auto;
557 border: 1px solid #AAA;
558 width: 100%;
559 margin-bottom: 8px;
560 background-color: #fff;
561}
562
563.grid_tab_wrapper {
564 position: absolute;
565 top: 40px;
566 border-bottom: 1px solid #DDD;
567}
568
569.grid_table, .grid_head_table {
570 table-layout: fixed;
571 border-collapse: collapse;
572 /*width: 100%;*/
573}
574
575.grid_cell {
576 border-right: 1px solid #ddd;
577 padding: 0px;
578 background-color: #fff;
579}
580
581.grid_head_wrapper {
582 position: absolute;
583 z-index: 1;
584 height: 40px;
585 padding: 0px;
586 overflow: hidden;
587 /*background-color: #fff;*/
588}
589
590.grid_head_table td {
591 background-color: #EEE;
592 border-right: 1px solid #AAA;
593 border-bottom: 1px solid #AAA;
594 height: 40px;
595 padding: 0px;
596}
597
598.grid_head_table td div {
599 color: #222;
600 font-weight: bold;
601 overflow: hidden;
602 padding: 2px 0px;
603 text-align: center;
604}
605
606.grid_selector {
607 padding: 1px;
608 border-right: 1px solid #DDD;
609 width: 20px;
610 background-color: #fff;
611}
612
613.grid_cell_div {
614 padding: 2px;
615 cursor: pointer;
616 overflow: hidden;
617 border: 2px solid #FFF;
618}
619
620.grid_cell_div_selected {
621 border: 2px solid #88f;
622}
623
624.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
625 margin: 0px;
626 border: 0px;
627 width: 100%;
628 margin: 0px;
629 }
630
631.grid_cell_div textarea {
632 border: 3px solid #abf;
633 height:200px;
634 width: 300px;
635 z-index: 10;
636 position:absolute;
637}
638
639.gridDivSelected option { border: 0px; }
640/*
641 * lib/css/legacy/listing.css
642 *//* listing 2.0 */
643
644div.listing-more {
645 margin: 7px 0px 17px 0px;
646 text-align: center;
647 display: none;
648}
649
650div.listing-toolbar {
651 margin: 7px 0px;
652}
653
654/* SRS */
655
656table.srs_result_tab {
657 border: 2px solid #AAA;
658 border-collapse: collapse;
659}
660
661/* firefox bug fix for disappering borders */
662table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
663 position: static;
664}
665
666table.srs_result_tab td {
667 padding: 3px 2px;
668 position: static;
669}
670
671div.srs_body_area {
672}
673
674div.srs_results_area {
675}
676
677div.srs_filter_wrapper {
678 border: 1px solid #CCF;
679
680 background-color: #EEF;
681 margin:0px 0px 8px 0px;
682
683 -moz-border-radius: 5px;
684 -webkit-border-radius: 5px;
685 border-radius: 5px;
686}
687
688div.srs_filter_area {
689 padding: 8px;
690}
691
692div.srs_filter_area td {
693 vertical-align: middle;
694}
695
696
697
698
699/*
700 * lib/css/legacy/report.css
701 */
702/* Reports */
703
704div.report_grid_area {
705 position: relative;
706 padding: 8px;
707}
708
709
710div.report_tab {
711 border: 1px solid #AAA;
712 position: relative;
713 overflow: auto;
714}
715
716div.report_no_data {
717 padding: 8px;
718 background-color: #EEE;
719 border: 1px solid #DDD;
720 position: absolute;
721 margin-left: 40%;
722 margin-top: 50px;
723 display: none;
724}
725
726div.report_htitle {
727 float: left;
728 padding: 2px;
729 font-size: 14px;
730 font-weight: bold;
731 margin-left: 4px;
732 color: #665;
733 /*font-weight: bold;*/
734}
735
736div.report_tbar {
737 background-color: #EEF;
738 border: 1px solid #CCF;
739 border-bottom: 0px;
740 height: 28px;
741}
742
743div.report_tbar table{
744 width: 100%;
745}
746div.report_tbar table td {
747
748}
749div.report_tbar table td div {
750 position: relative;
751}
752div.report_tbar button, div.report_tbar select, div.report_tbar img {
753 font-size: 11px;
754 margin: 0px;
755}
756
757div.report_head_wrapper {
758 position: absolute;
759 height: 24px;
760 top: 0px;
761 z-index: 1;
762}
763
764div.report_tab_wrapper {
765 position: absolute;
766 border-bottom: 1px solid #AAA;
767 border-top: 1px solid #AAA;
768}
769
770div.report_tab_wrapper table, div.report_head_wrapper table {
771 table-layout: fixed;
772 border-collapse: collapse;
773 /*width: 100%;*/
774}
775
776div.report_tab_wrapper table td, div.report_head_wrapper table td {
777 border-left: 1px solid #AAA;
778 border-right: 1px solid #AAA;
779 border-bottom: 1px solid #AAA;
780 overflow: hidden;
781 padding: 0px;
782}
783
784div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
785 padding: 3px;
786 overflow: hidden;
787}
788
789.report_head_cell {
790 background-color: #EEE;
791 border-bottom: 1px solid #AA9;
792 text-align: center;
793 font-weight: bold;
794}
795.report_head_cell div {
796 color:#222;
797 height: 18px;
798}
799
800
801/* FINDER */
802
803div.finder_wrapper {
804}
805
806div.finder_body_area {
807 margin: 16px;
808}
809
810div.finder_body {
811 display: none;
812}
813
814div.finder_advanced_area table {
815 width: 80%;
816}
817
818div.finder_advanced_area textarea {
819 width: 80%;
820}
821
822div.finder_filter_area {
823 position: relative;
824}
825
826div.filter_head {
827 font-size: 14px;
828 margin-bottom: 2px;
829}
830div.filter_dt_head {
831 font-size: 14px;
832 font-weight: bold;
833 margin-bottom: 2px;
834}
835table.filter_tab {
836 width: 96%;
837 border-collapse: collapse;
838}
839
840table.filter_tab td {
841 width: 50%;
842}
843
844div.finder_picker_area {
845
846}
847div.builder_field {
848 margin: 0px;
849}
850div.builder_dt_head {
851 font-size: 14px;
852 font-weight: bold;
853 margin-bottom: 2px;
854}
855
856div.builder_field table {
857 width: 90%;
858 border-collapse: collapse;
859}
860
861div.builder_label {
862 height: 20px;
863}
864
865div.builder_head {
866 font-size: 16px;
867 font-weight: bold;
868 color: #AB6;
869}
870
871table.builder_tab {
872 width: 96%;
873 border-collapse: collapse;
874}
875
876table.builder_tab td {
877 width: 33%;
878 padding: 2px;
879}
880/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530881 * lib/css/legacy/autosuggest.css
882 *//*
883================================================
884autosuggest, inquisitor style
885================================================
886*/
887
888div.autosuggest
889{
890 position: absolute;
891 margin-top: 3px;
892 border: 1px solid #222;
893}
894
895div.autosuggest ul
896{
897 list-style: none;
898 margin: 0px;
899 padding: 2px;
900 overflow: hidden;
901 background-color: #FFF;
902}
903
904div.autosuggest ul li
905{
906 color: #444;
907 padding: 0;
908 margin: 0;
909 text-align: left;
910}
911
912div.autosuggest ul li a
913{
914 color: #444;
915 display: block;
916 text-decoration: none;
917 position: relative;
918 padding: 0;
919 width: 100%;
920}
921div.autosuggest ul li a:hover
922{
923
924}
925div.autosuggest ul li.as_highlight a:hover
926{
927 background-color: #45A;
928 color: #FFF;
929}
930
931div.autosuggest ul li a span
932{
933 display: block;
934 padding: 3px 6px;
935 color: #444;
936 border-bottom:1px solid #DDD;
937}
938
939div.autosuggest ul li a span small
940{
941 display: block;
942 font-weight: normal;
943 color: #444;
944}
945
946div.autosuggest ul li.as_highlight a span small
947{
948 color: #FFF;
949}
950
951div.autosuggest ul li.as_highlight a span {
952 color: #FFF;
953}
954
955div.autosuggest ul li.as_highlight a
956{
957 color: #FFF;
958 background-color: #45A;
959 cursor: pointer;
960}
961
962div.autosuggest ul li.as_warning
963{
964 font-weight: bold;
965 text-align: center;
966}
967
968div.autosuggest ul em
969{
970 font-style: normal;
971 font-weight: bold;
972}
973
974/*
975 * lib/css/legacy/dialog.css
976 *//***** Dialogs *******/
977
978div.dialog_wrapper {
979 position: absolute;
980 width: 440px;
981 display: none;
982 z-index: 90;
983 background-color: #FFF;
984 border: 3px solid #222;
985 box-shadow:1px 1px 5px #777;
986 -moz-box-shadow: 1px 1px 5px #777;
987 -webkit-box-shadow: 1px 1px 5px #777;
988
989 border-radius: 5px;
990 -moz-border-radius: 5px;
991 -webkit-border-radius: 5px;
992}
993
994div.dialog_head {
995 height: 22px;
996 padding: 4px;
997 background-color: #222;
998 color: #FFF;
999}
1000
1001div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301002 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301003 border-radius: 5px;
1004 -moz-border-radius: 5px;
1005 -webkit-border-radius: 5px;
1006}
1007
1008div.dialog_back {
1009 position: fixed;
1010 display: none;
1011 top: 0px;
1012 left: 0px;
1013 bottom: 0px;
1014 right: 0px;
1015 background-color: #EEE;
1016 opacity: 0.6;
1017 z-index: 50;
1018 text-align: center;
1019}
1020
1021div.dialog_message {
1022 display: none;
1023 position: absolute;
1024 width: 250px;
1025 font-size: 12px;
1026 z-index: 91;
1027 background-color:#FFF;
1028 padding: 12px;
1029 border: 1px solid #444;
1030}
1031
1032div.dialog_row {
1033 padding: 8px 8px 0px 8px;
1034}
1035
1036div.dialog_row table {
1037 width: 100%;
1038}
1039
1040div.dialog_row table td {
1041}
1042
1043div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
1044 width: 80%;
1045 font-size: 14px;
1046}
1047
1048div.dialog_row table td textarea {
1049 width: 80%;
1050 height: 200px;
1051 font-size: 12px;
1052}
1053
1054/*
1055 * lib/css/legacy/tabs.css
1056 */
1057/******* TABS ********/
1058
1059div.box_label_wrapper {
1060 border-bottom: 6px solid #777;
1061}
1062
1063div.box_label_body {
1064 height: 22px;
1065}
1066
1067ul.box_tabs {
1068 margin: 0px;
1069 padding: 0px;
1070 list-style: none;
1071}
1072
1073ul.box_tabs li {
1074 height: 22px;
1075 float:left;
1076 font-size: 12px;
1077 text-decoration: underline;
1078
1079 background-color: #DDD;
1080
1081 margin:0;
1082 margin-left: 4px;
1083 padding:0 0 0 9px;
1084 cursor: pointer;
1085}
1086
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301087ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301088 display:block;
1089 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301090 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301091}
1092
1093ul.box_tabs li.box_tab_mouseover {
1094 background-color: #BBB;
1095}
1096
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301097ul.box_tabs li.box_tab_selected {
1098 background-color: #777;
1099
1100 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1101 background: -moz-linear-gradient(top, #999, #777);
1102
1103 color: #FFF;
1104 font-weight:bold;
1105
1106}
1107ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301108 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301109}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301110/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301111 * lib/css/legacy/sidebar.css
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301112 */div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301113}
1114
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301115div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301116 font-size: 14px;
1117 font-weight: bold;
1118 color: #555;
1119 margin-bottom: 12px;
1120}
1121
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301122div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301123 margin-bottom: 11px;
1124 overflow: hidden;
1125}
1126
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301127div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301128 font-size: 12px;
1129 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301130 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301131}
1132
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301133div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301134 margin: 7px 11px 11px 11px;
1135}
1136
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301137div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301138 margin-bottom: 7px;
1139}
1140
Rushabh Mehtad0251332012-02-21 17:26:50 +05301141div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301142 font-size: 11px;
1143 color: #666;
1144}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301145/*
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301146 * lib/css/ui/list.css
1147 */.hide {
1148 display: none;
1149}
1150
1151.list-filters {
1152 margin: 7px 0px;
1153}
1154
1155.wnlist .img-load {
1156 display: none;
1157 float: left;
1158 margin-left: 11px;
1159 margin-top: 8px;
1160}
1161
1162div.list-row {
1163 border-bottom: 1px solid #eee;
1164 padding: 3px 0px;
1165}
1166div.list-row:hover {
1167 background-color: #eef
1168}
1169
1170div.show_filters {
1171 display: none;
1172}
1173
1174div.filter_list {
1175 padding: 13px;
1176}
1177
1178div.show_filters.well {
1179 margin-top: 11px;
1180 margin-bottom: 11px;
1181}
1182
1183div.filter_list .run_btn {
1184 text-align: right;
1185}
1186
1187div.filter_list .add_filter {
1188 margin: 3px 0px;
1189}
1190
1191div.list_filter {
1192 margin: 7px 0px;
1193}
1194
1195div.list_filter input, div.list_filter select {
1196 width: 130px;
1197 margin-right: 7px;
1198}
1199
1200span.bar-outer {
1201 display: inline-block;
1202 margin: 0px 7px;
1203 margin-top: 3px;
1204 background-color: #fff;
1205 border: 1px solid #aaa;
1206 height: 10px;
1207}
1208
1209span.bar-inner {
1210 display: inline-block;
1211 background-color: #bdf;
1212 height: 100%;
1213 margin-bottom: 2px;
1214}
1215span.bar-complete {
1216 background-color: green;
1217}
1218
1219/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301220 * lib/css/bootstrap/headings.css
1221 *//* heading from bootstrap */
1222
1223h1,
1224h2,
1225h3,
1226h4,
1227h5,
1228h6 {
1229 margin: 0;
1230 font-weight: bold;
1231 color: #333333;
1232 text-rendering: optimizelegibility;
1233 margin-bottom: 0.3em;
1234}
1235h1 small,
1236h2 small,
1237h3 small,
1238h4 small,
1239h5 small,
1240h6 small {
1241 font-weight: normal;
1242 color: #999999;
1243}
1244h1 {
1245 font-size: 30px;
1246 line-height: 36px;
1247}
1248h1 small {
1249 font-size: 18px;
1250}
1251h2 {
1252 font-size: 24px;
1253 line-height: 36px;
1254}
1255h2 small {
1256 font-size: 18px;
1257}
1258h3 {
1259 line-height: 27px;
1260 font-size: 18px;
1261}
1262h3 small {
1263 font-size: 14px;
1264}
1265h4, h5, h6 {
1266 line-height: 18px;
1267}
1268h4 {
1269 font-size: 14px;
1270}
1271h4 small {
1272 font-size: 12px;
1273}
1274h5 {
1275 font-size: 12px;
1276}
1277h6 {
1278 font-size: 11px;
1279 color: #999999;
1280 text-transform: uppercase;
1281}
1282/*
1283 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301284 */.close {
1285 float: right;
1286 font-size: 20px;
1287 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301288 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301289 color: #000000;
1290 text-shadow: 0 1px 0 #ffffff;
1291 opacity: 0.2;
1292 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301293}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301294.close:hover {
1295 color: #000000;
1296 text-decoration: none;
1297 opacity: 0.4;
1298 filter: alpha(opacity=40);
1299 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301300}
1301.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301302 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301303 padding: 4px 10px 4px;
1304 font-size: 13px;
1305 line-height: 18px;
1306 color: #333333;
1307 text-align: center;
1308 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1309 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301310 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1311 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1312 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1313 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1314 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1315 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301316 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301317 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301318 border: 1px solid #ccc;
1319 border-bottom-color: #bbb;
1320 -webkit-border-radius: 4px;
1321 -moz-border-radius: 4px;
1322 border-radius: 4px;
1323 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1324 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1325 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 +05301326 cursor: pointer;
1327 *margin-left: .3em;
1328}
1329.btn:first-child {
1330 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301331}
1332.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301333 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301334 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301335 background-color: #e6e6e6;
1336 background-position: 0 -15px;
1337 -webkit-transition: background-position 0.1s linear;
1338 -moz-transition: background-position 0.1s linear;
1339 -ms-transition: background-position 0.1s linear;
1340 -o-transition: background-position 0.1s linear;
1341 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301342}
1343.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301344 outline: thin dotted;
1345 outline: 5px auto -webkit-focus-ring-color;
1346 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301347}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301348.btn.active, .btn:active {
1349 background-image: none;
1350 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1351 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1352 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1353 background-color: #e6e6e6;
1354 background-color: #d9d9d9 \9;
1355 color: rgba(0, 0, 0, 0.5);
1356 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301357}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301358.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301359 cursor: default;
1360 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301361 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301362 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301363 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301364 -webkit-box-shadow: none;
1365 -moz-box-shadow: none;
1366 box-shadow: none;
1367}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301368.btn-large {
1369 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301370 font-size: 15px;
1371 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301372 -webkit-border-radius: 5px;
1373 -moz-border-radius: 5px;
1374 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301375}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301376.btn-large .icon {
1377 margin-top: 1px;
1378}
1379.btn-small {
1380 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301381 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301382 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301383}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301384.btn-small .icon {
1385 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301386}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301387.btn-primary,
1388.btn-primary:hover,
1389.btn-warning,
1390.btn-warning:hover,
1391.btn-danger,
1392.btn-danger:hover,
1393.btn-success,
1394.btn-success:hover,
1395.btn-info,
1396.btn-info:hover {
1397 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1398 color: #ffffff;
1399}
1400.btn-primary.active,
1401.btn-warning.active,
1402.btn-danger.active,
1403.btn-success.active,
1404.btn-info.active {
1405 color: rgba(255, 255, 255, 0.75);
1406}
1407.btn-primary {
1408 background-color: #006dcc;
1409 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1410 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1411 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1412 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1413 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1414 background-image: linear-gradient(top, #0088cc, #0044cc);
1415 background-repeat: repeat-x;
1416 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1417 border-color: #0044cc #0044cc #002a80;
1418 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1419 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1420}
1421.btn-primary:hover,
1422.btn-primary:active,
1423.btn-primary.active,
1424.btn-primary.disabled,
1425.btn-primary[disabled] {
1426 background-color: #0044cc;
1427}
1428.btn-primary:active, .btn-primary.active {
1429 background-color: #003399 \9;
1430}
1431.btn-warning {
1432 background-color: #faa732;
1433 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1434 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1435 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1436 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1437 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1438 background-image: linear-gradient(top, #fbb450, #f89406);
1439 background-repeat: repeat-x;
1440 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1441 border-color: #f89406 #f89406 #ad6704;
1442 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1443 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1444}
1445.btn-warning:hover,
1446.btn-warning:active,
1447.btn-warning.active,
1448.btn-warning.disabled,
1449.btn-warning[disabled] {
1450 background-color: #f89406;
1451}
1452.btn-warning:active, .btn-warning.active {
1453 background-color: #c67605 \9;
1454}
1455.btn-danger {
1456 background-color: #da4f49;
1457 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1458 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1459 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1460 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1461 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1462 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1463 background-repeat: repeat-x;
1464 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1465 border-color: #bd362f #bd362f #802420;
1466 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1467 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1468}
1469.btn-danger:hover,
1470.btn-danger:active,
1471.btn-danger.active,
1472.btn-danger.disabled,
1473.btn-danger[disabled] {
1474 background-color: #bd362f;
1475}
1476.btn-danger:active, .btn-danger.active {
1477 background-color: #942a25 \9;
1478}
1479.btn-success {
1480 background-color: #5bb75b;
1481 background-image: -moz-linear-gradient(top, #62c462, #51a351);
1482 background-image: -ms-linear-gradient(top, #62c462, #51a351);
1483 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1484 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1485 background-image: -o-linear-gradient(top, #62c462, #51a351);
1486 background-image: linear-gradient(top, #62c462, #51a351);
1487 background-repeat: repeat-x;
1488 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1489 border-color: #51a351 #51a351 #387038;
1490 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1491 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1492}
1493.btn-success:hover,
1494.btn-success:active,
1495.btn-success.active,
1496.btn-success.disabled,
1497.btn-success[disabled] {
1498 background-color: #51a351;
1499}
1500.btn-success:active, .btn-success.active {
1501 background-color: #408140 \9;
1502}
1503.btn-info {
1504 background-color: #49afcd;
1505 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1506 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1507 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1508 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1509 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1510 background-image: linear-gradient(top, #5bc0de, #2f96b4);
1511 background-repeat: repeat-x;
1512 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1513 border-color: #2f96b4 #2f96b4 #1f6377;
1514 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1515 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1516}
1517.btn-info:hover,
1518.btn-info:active,
1519.btn-info.active,
1520.btn-info.disabled,
1521.btn-info[disabled] {
1522 background-color: #2f96b4;
1523}
1524.btn-info:active, .btn-info.active {
1525 background-color: #24748c \9;
1526}
1527button.btn, input[type="submit"].btn {
1528 *padding-top: 2px;
1529 *padding-bottom: 2px;
1530}
1531button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301532 padding: 0;
1533 border: 0;
1534}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301535button.btn.large, input[type="submit"].btn.large {
1536 *padding-top: 7px;
1537 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301538}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301539button.btn.small, input[type="submit"].btn.small {
1540 *padding-top: 3px;
1541 *padding-bottom: 3px;
1542}
1543.btn-group {
1544 position: relative;
1545 *zoom: 1;
1546 *margin-left: .3em;
1547}
1548.btn-group:before, .btn-group:after {
1549 display: table;
1550 content: "";
1551}
1552.btn-group:after {
1553 clear: both;
1554}
1555.btn-group:first-child {
1556 *margin-left: 0;
1557}
1558.btn-group + .btn-group {
1559 margin-left: 5px;
1560}
1561.btn-toolbar {
1562 margin-top: 9px;
1563 margin-bottom: 9px;
1564}
1565.btn-toolbar .btn-group {
1566 display: inline-block;
1567 *display: inline;
1568 /* IE7 inline-block hack */
1569
1570 *zoom: 1;
1571}
1572.btn-group .btn {
1573 position: relative;
1574 float: left;
1575 margin-left: -1px;
1576 -webkit-border-radius: 0;
1577 -moz-border-radius: 0;
1578 border-radius: 0;
1579}
1580.btn-group .btn:first-child {
1581 margin-left: 0;
1582 -webkit-border-top-left-radius: 4px;
1583 -moz-border-radius-topleft: 4px;
1584 border-top-left-radius: 4px;
1585 -webkit-border-bottom-left-radius: 4px;
1586 -moz-border-radius-bottomleft: 4px;
1587 border-bottom-left-radius: 4px;
1588}
1589.btn-group .btn:last-child, .btn-group .dropdown-toggle {
1590 -webkit-border-top-right-radius: 4px;
1591 -moz-border-radius-topright: 4px;
1592 border-top-right-radius: 4px;
1593 -webkit-border-bottom-right-radius: 4px;
1594 -moz-border-radius-bottomright: 4px;
1595 border-bottom-right-radius: 4px;
1596}
1597.btn-group .btn.large:first-child {
1598 margin-left: 0;
1599 -webkit-border-top-left-radius: 6px;
1600 -moz-border-radius-topleft: 6px;
1601 border-top-left-radius: 6px;
1602 -webkit-border-bottom-left-radius: 6px;
1603 -moz-border-radius-bottomleft: 6px;
1604 border-bottom-left-radius: 6px;
1605}
1606.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
1607 -webkit-border-top-right-radius: 6px;
1608 -moz-border-radius-topright: 6px;
1609 border-top-right-radius: 6px;
1610 -webkit-border-bottom-right-radius: 6px;
1611 -moz-border-radius-bottomright: 6px;
1612 border-bottom-right-radius: 6px;
1613}
1614.btn-group .btn:hover,
1615.btn-group .btn:focus,
1616.btn-group .btn:active,
1617.btn-group .btn.active {
1618 z-index: 2;
1619}
1620.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
1621 outline: 0;
1622}
1623.btn-group .dropdown-toggle {
1624 padding-left: 8px;
1625 padding-right: 8px;
1626 -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);
1627 -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);
1628 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);
1629 *padding-top: 5px;
1630 *padding-bottom: 5px;
1631}
1632.btn-group.open {
1633 *z-index: 1000;
1634}
1635.btn-group.open .dropdown-menu {
1636 display: block;
1637 margin-top: 1px;
1638 -webkit-border-radius: 5px;
1639 -moz-border-radius: 5px;
1640 border-radius: 5px;
1641}
1642.btn-group.open .dropdown-toggle {
1643 background-image: none;
1644 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1645 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1646 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1647}
1648.btn .caret {
1649 margin-top: 7px;
1650 margin-left: 0;
1651}
1652.btn:hover .caret, .open.btn-group .caret {
1653 opacity: 1;
1654 filter: alpha(opacity=100);
1655}
1656.btn-primary .caret,
1657.btn-danger .caret,
1658.btn-info .caret,
1659.btn-success .caret {
1660 border-top-color: #ffffff;
1661 opacity: 0.75;
1662 filter: alpha(opacity=75);
1663}
1664.btn-small .caret {
1665 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301666}
1667/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301668 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301669 */.nav {
1670 margin-left: 0;
1671 margin-bottom: 18px;
1672 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301673}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301674.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301675 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301676}
1677.nav > li > a:hover {
1678 text-decoration: none;
1679 background-color: #eeeeee;
1680}
1681.nav-list {
1682 padding-left: 14px;
1683 padding-right: 14px;
1684 margin-bottom: 0;
1685}
1686.nav-list > li > a, .nav-list .nav-header {
1687 display: block;
1688 padding: 3px 15px;
1689 margin-left: -15px;
1690 margin-right: -15px;
1691 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1692}
1693.nav-list .nav-header {
1694 font-size: 11px;
1695 font-weight: bold;
1696 line-height: 18px;
1697 color: #999999;
1698 text-transform: uppercase;
1699}
1700.nav-list > li + .nav-header {
1701 margin-top: 9px;
1702}
1703.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301704 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301705 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
1706 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301707}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301708.nav-list [class^="icon-"] {
1709 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301710}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301711.nav-tabs, .nav-pills {
1712 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301713}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301714.nav-tabs:before,
1715.nav-pills:before,
1716.nav-tabs:after,
1717.nav-pills:after {
1718 display: table;
1719 content: "";
1720}
1721.nav-tabs:after, .nav-pills:after {
1722 clear: both;
1723}
1724.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301725 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301726}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301727.nav-tabs > li > a, .nav-pills > li > a {
1728 padding-right: 12px;
1729 padding-left: 12px;
1730 margin-right: 2px;
1731 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301732}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301733.nav-tabs {
1734 border-bottom: 1px solid #ddd;
1735}
1736.nav-tabs > li {
1737 margin-bottom: -1px;
1738}
1739.nav-tabs > li > a {
1740 padding-top: 9px;
1741 padding-bottom: 9px;
1742 border: 1px solid transparent;
1743 -webkit-border-radius: 4px 4px 0 0;
1744 -moz-border-radius: 4px 4px 0 0;
1745 border-radius: 4px 4px 0 0;
1746}
1747.nav-tabs > li > a:hover {
1748 border-color: #eeeeee #eeeeee #dddddd;
1749}
1750.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
1751 color: #555555;
1752 background-color: #ffffff;
1753 border: 1px solid #ddd;
1754 border-bottom-color: transparent;
1755 cursor: default;
1756}
1757.nav-pills > li > a {
1758 padding-top: 8px;
1759 padding-bottom: 8px;
1760 margin-top: 2px;
1761 margin-bottom: 2px;
1762 -webkit-border-radius: 5px;
1763 -moz-border-radius: 5px;
1764 border-radius: 5px;
1765}
1766.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301767 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301768 background-color: #0088cc;
1769}
1770.nav-stacked > li {
1771 float: none;
1772}
1773.nav-stacked > li > a {
1774 margin-right: 0;
1775}
1776.nav-tabs.nav-stacked {
1777 border-bottom: 0;
1778}
1779.nav-tabs.nav-stacked > li > a {
1780 border: 1px solid #ddd;
1781 -webkit-border-radius: 0;
1782 -moz-border-radius: 0;
1783 border-radius: 0;
1784}
1785.nav-tabs.nav-stacked > li:first-child > a {
1786 -webkit-border-radius: 4px 4px 0 0;
1787 -moz-border-radius: 4px 4px 0 0;
1788 border-radius: 4px 4px 0 0;
1789}
1790.nav-tabs.nav-stacked > li:last-child > a {
1791 -webkit-border-radius: 0 0 4px 4px;
1792 -moz-border-radius: 0 0 4px 4px;
1793 border-radius: 0 0 4px 4px;
1794}
1795.nav-tabs.nav-stacked > li > a:hover {
1796 border-color: #ddd;
1797 z-index: 2;
1798}
1799.nav-pills.nav-stacked > li > a {
1800 margin-bottom: 3px;
1801}
1802.nav-pills.nav-stacked > li:last-child > a {
1803 margin-bottom: 1px;
1804}
1805.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1806 margin-top: 1px;
1807 border-width: 1px;
1808}
1809.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301810 -webkit-border-radius: 4px;
1811 -moz-border-radius: 4px;
1812 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301813}
1814.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1815 border-top-color: #0088cc;
1816 margin-top: 6px;
1817}
1818.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1819 border-top-color: #005580;
1820}
1821.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1822 border-top-color: #333333;
1823}
1824.nav > .dropdown.active > a:hover {
1825 color: #000000;
1826 cursor: pointer;
1827}
1828.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1829 color: #ffffff;
1830 background-color: #999999;
1831 border-color: #999999;
1832}
1833.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1834 border-top-color: #ffffff;
1835 opacity: 1;
1836 filter: alpha(opacity=100);
1837}
1838
1839.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301840 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301841 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301842}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301843.navbar-inner {
1844 padding-left: 20px;
1845 padding-right: 20px;
1846 background-color: #2c2c2c;
1847 background-image: -moz-linear-gradient(top, #333333, #222222);
1848 background-image: -ms-linear-gradient(top, #333333, #222222);
1849 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1850 background-image: -webkit-linear-gradient(top, #333333, #222222);
1851 background-image: -o-linear-gradient(top, #333333, #222222);
1852 background-image: linear-gradient(top, #333333, #222222);
1853 background-repeat: repeat-x;
1854 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1855 -webkit-border-radius: 4px;
1856 -moz-border-radius: 4px;
1857 border-radius: 4px;
1858 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1859 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1860 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1861}
1862.btn-navbar {
1863 display: none;
1864 float: right;
1865 padding: 7px 10px;
1866 margin-left: 5px;
1867 margin-right: 5px;
1868 background-color: #2c2c2c;
1869 background-image: -moz-linear-gradient(top, #333333, #222222);
1870 background-image: -ms-linear-gradient(top, #333333, #222222);
1871 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1872 background-image: -webkit-linear-gradient(top, #333333, #222222);
1873 background-image: -o-linear-gradient(top, #333333, #222222);
1874 background-image: linear-gradient(top, #333333, #222222);
1875 background-repeat: repeat-x;
1876 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1877 border-color: #222222 #222222 #000000;
1878 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1879 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1880 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1881 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1882 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1883}
1884.btn-navbar:hover,
1885.btn-navbar:active,
1886.btn-navbar.active,
1887.btn-navbar.disabled,
1888.btn-navbar[disabled] {
1889 background-color: #222222;
1890}
1891.btn-navbar:active, .btn-navbar.active {
1892 background-color: #080808 \9;
1893}
1894.btn-navbar .icon-bar {
1895 display: block;
1896 width: 18px;
1897 height: 2px;
1898 background-color: #f5f5f5;
1899 -webkit-border-radius: 1px;
1900 -moz-border-radius: 1px;
1901 border-radius: 1px;
1902 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1903 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1904 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1905}
1906.btn-navbar .icon-bar + .icon-bar {
1907 margin-top: 3px;
1908}
1909.nav-collapse.collapse {
1910 height: auto;
1911}
1912.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301913 text-decoration: none;
1914}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301915.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301916 float: left;
1917 display: block;
1918 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301919 font-size: 20px;
1920 font-weight: 200;
1921 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301922 color: #ffffff;
1923}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301924.navbar .navbar-text {
1925 margin-bottom: 0;
1926 line-height: 40px;
1927 color: #999999;
1928}
1929.navbar .navbar-text a:hover {
1930 color: #ffffff;
1931 background-color: transparent;
1932}
1933.navbar .btn, .navbar .btn-group {
1934 margin-top: 5px;
1935}
1936.navbar .btn-group .btn {
1937 margin-top: 0;
1938}
1939.navbar-form {
1940 margin-bottom: 0;
1941 *zoom: 1;
1942}
1943.navbar-form:before, .navbar-form:after {
1944 display: table;
1945 content: "";
1946}
1947.navbar-form:after {
1948 clear: both;
1949}
1950.navbar-form input, .navbar-form select {
1951 display: inline-block;
1952 margin-top: 5px;
1953 margin-bottom: 0;
1954}
1955.navbar-form .radio, .navbar-form .checkbox {
1956 margin-top: 5px;
1957}
1958.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1959 margin-top: 3px;
1960}
1961.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301962 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301963 float: left;
1964 margin-top: 6px;
1965 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301966}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301967.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301968 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301969 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1970 font-size: 13px;
1971 font-weight: normal;
1972 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301973 color: #ffffff;
1974 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301975 background: #666;
1976 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301977 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301978 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1979 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1980 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 +05301981 -webkit-transition: none;
1982 -moz-transition: none;
1983 -ms-transition: none;
1984 -o-transition: none;
1985 transition: none;
1986}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301987.navbar-search .search-query :-moz-placeholder {
1988 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301989}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301990.navbar-search .search-query::-webkit-input-placeholder {
1991 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301992}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301993.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301994 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301995 background-color: #999999;
1996 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301997}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301998.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301999 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302000 color: #333333;
2001 text-shadow: 0 1px 0 #ffffff;
2002 background-color: #ffffff;
2003 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302004 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2005 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2006 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302007 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302008}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302009.navbar-fixed-top {
2010 position: fixed;
2011 top: 0;
2012 right: 0;
2013 left: 0;
2014 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302015}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302016.navbar-fixed-top .navbar-inner {
2017 padding-left: 0;
2018 padding-right: 0;
2019 -webkit-border-radius: 0;
2020 -moz-border-radius: 0;
2021 border-radius: 0;
2022}
2023.navbar .nav {
2024 position: relative;
2025 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302026 display: block;
2027 float: left;
2028 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302029}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302030.navbar .nav.pull-right {
2031 float: right;
2032}
2033.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302034 display: block;
2035 float: left;
2036}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302037.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302038 float: none;
2039 padding: 10px 10px 11px;
2040 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302041 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302042 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302043 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302044}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302045.navbar .nav > li > a:hover {
2046 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302047 color: #ffffff;
2048 text-decoration: none;
2049}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302050.navbar .nav .active > a, .navbar .nav .active > a:hover {
2051 color: #ffffff;
2052 text-decoration: none;
2053 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302054 background-color: rgba(0, 0, 0, 0.5);
2055}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302056.navbar .divider-vertical {
2057 height: 40px;
2058 width: 1px;
2059 margin: 0 9px;
2060 overflow: hidden;
2061 background-color: #222222;
2062 border-right: 1px solid #333333;
2063}
2064.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302065 margin-left: 10px;
2066 margin-right: 0;
2067}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302068.navbar .dropdown-menu {
2069 margin-top: 1px;
2070 -webkit-border-radius: 4px;
2071 -moz-border-radius: 4px;
2072 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302073}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302074.navbar .dropdown-menu:before {
2075 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302076 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302077 border-left: 7px solid transparent;
2078 border-right: 7px solid transparent;
2079 border-bottom: 7px solid #ccc;
2080 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302081 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302082 top: -7px;
2083 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302084}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302085.navbar .dropdown-menu:after {
2086 content: '';
2087 display: inline-block;
2088 border-left: 6px solid transparent;
2089 border-right: 6px solid transparent;
2090 border-bottom: 6px solid #ffffff;
2091 position: absolute;
2092 top: -6px;
2093 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302094}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302095.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2096 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302097}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302098.navbar .nav .active .caret {
2099 opacity: 1;
2100 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302101}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302102.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2103 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302104}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302105.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302106 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302107}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302108.navbar .nav.pull-right .dropdown-menu {
2109 left: auto;
2110 right: 0;
2111}
2112.navbar .nav.pull-right .dropdown-menu:before {
2113 left: auto;
2114 right: 12px;
2115}
2116.navbar .nav.pull-right .dropdown-menu:after {
2117 left: auto;
2118 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302119}
2120
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302121/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302122.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302123 display: block;
2124 float: right;
2125 width: 20px;
2126 margin-bottom: -5px;
2127 margin-top: 10px;
2128 visibility: hidden;
2129}
2130
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302131.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302132 padding: 0px 20px;
2133}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302134
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302135/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302136 * lib/css/bootstrap/dropdown.css
2137 */.dropdown {
2138 position: relative;
2139}
2140.dropdown-toggle {
2141 *margin-bottom: -3px;
2142}
2143.dropdown-toggle:active, .open .dropdown-toggle {
2144 outline: 0;
2145}
2146.caret {
2147 display: inline-block;
2148 width: 0;
2149 height: 0;
2150 text-indent: -99999px;
2151 *text-indent: 0;
2152 vertical-align: top;
2153 border-left: 4px solid transparent;
2154 border-right: 4px solid transparent;
2155 border-top: 4px solid #000000;
2156 opacity: 0.3;
2157 filter: alpha(opacity=30);
2158 content: "\2193";
2159}
2160.dropdown .caret {
2161 margin-top: 8px;
2162 margin-left: 2px;
2163}
2164.dropdown:hover .caret, .open.dropdown .caret {
2165 opacity: 1;
2166 filter: alpha(opacity=100);
2167}
2168.dropdown-menu {
2169 position: absolute;
2170 top: 100%;
2171 left: 0;
2172 z-index: 1000;
2173 float: left;
2174 display: none;
2175 min-width: 160px;
2176 max-width: 220px;
2177 _width: 160px;
2178 padding: 4px 0;
2179 margin: 0;
2180 list-style: none;
2181 background-color: #ffffff;
2182 border-color: #ccc;
2183 border-color: rgba(0, 0, 0, 0.2);
2184 border-style: solid;
2185 border-width: 1px;
2186 -webkit-border-radius: 0 0 5px 5px;
2187 -moz-border-radius: 0 0 5px 5px;
2188 border-radius: 0 0 5px 5px;
2189 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2190 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2191 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2192 -webkit-background-clip: padding-box;
2193 -moz-background-clip: padding;
2194 background-clip: padding-box;
2195 *border-right-width: 2px;
2196 *border-bottom-width: 2px;
2197}
2198.dropdown-menu.bottom-up {
2199 top: auto;
2200 bottom: 100%;
2201 margin-bottom: 2px;
2202}
2203.dropdown-menu .divider {
2204 height: 1px;
2205 margin: 5px 1px;
2206 overflow: hidden;
2207 background-color: #e5e5e5;
2208 border-bottom: 1px solid #ffffff;
2209 *width: 100%;
2210 *margin: -5px 0 5px;
2211}
2212.dropdown-menu a {
2213 display: block;
2214 padding: 3px 15px;
2215 clear: both;
2216 font-weight: normal;
2217 line-height: 18px;
2218 color: #555555;
2219 white-space: nowrap;
2220}
2221.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2222 color: #ffffff;
2223 text-decoration: none;
2224 background-color: #0088cc;
2225}
2226.dropdown.open {
2227 *z-index: 1000;
2228}
2229.dropdown.open .dropdown-toggle {
2230 color: #ffffff;
2231 background: #ccc;
2232 background: rgba(0, 0, 0, 0.3);
2233}
2234.dropdown.open .dropdown-menu {
2235 display: block;
2236}
2237/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302238 * lib/css/bootstrap/tooltip.css
2239 */.tooltip {
2240 position: absolute;
2241 z-index: 1020;
2242 display: block;
2243 visibility: visible;
2244 padding: 5px;
2245 font-size: 11px;
2246 opacity: 0;
2247 filter: alpha(opacity=0);
2248}
2249.tooltip.in {
2250 opacity: 0.8;
2251 filter: alpha(opacity=80);
2252}
2253.tooltip.top {
2254 margin-top: -2px;
2255}
2256.tooltip.right {
2257 margin-left: 2px;
2258}
2259.tooltip.bottom {
2260 margin-top: 2px;
2261}
2262.tooltip.left {
2263 margin-left: -2px;
2264}
2265.tooltip.top .tooltip-arrow {
2266 bottom: 0;
2267 left: 50%;
2268 margin-left: -5px;
2269 border-left: 5px solid transparent;
2270 border-right: 5px solid transparent;
2271 border-top: 5px solid #000000;
2272}
2273.tooltip.left .tooltip-arrow {
2274 top: 50%;
2275 right: 0;
2276 margin-top: -5px;
2277 border-top: 5px solid transparent;
2278 border-bottom: 5px solid transparent;
2279 border-left: 5px solid #000000;
2280}
2281.tooltip.bottom .tooltip-arrow {
2282 top: 0;
2283 left: 50%;
2284 margin-left: -5px;
2285 border-left: 5px solid transparent;
2286 border-right: 5px solid transparent;
2287 border-bottom: 5px solid #000000;
2288}
2289.tooltip.right .tooltip-arrow {
2290 top: 50%;
2291 left: 0;
2292 margin-top: -5px;
2293 border-top: 5px solid transparent;
2294 border-bottom: 5px solid transparent;
2295 border-right: 5px solid #000000;
2296}
2297.tooltip-inner {
2298 max-width: 200px;
2299 padding: 3px 8px;
2300 color: #ffffff;
2301 text-align: center;
2302 text-decoration: none;
2303 background-color: #000000;
2304 -webkit-border-radius: 4px;
2305 -moz-border-radius: 4px;
2306 border-radius: 4px;
2307}
2308.tooltip-arrow {
2309 position: absolute;
2310 width: 0;
2311 height: 0;
2312}
2313.popover {
2314 position: absolute;
2315 top: 0;
2316 left: 0;
2317 z-index: 1010;
2318 display: none;
2319 padding: 5px;
2320}
2321.popover.top {
2322 margin-top: -5px;
2323}
2324.popover.right {
2325 margin-left: 5px;
2326}
2327.popover.bottom {
2328 margin-top: 5px;
2329}
2330.popover.left {
2331 margin-left: -5px;
2332}
2333.popover.top .arrow {
2334 bottom: 0;
2335 left: 50%;
2336 margin-left: -5px;
2337 border-left: 5px solid transparent;
2338 border-right: 5px solid transparent;
2339 border-top: 5px solid #000000;
2340}
2341.popover.right .arrow {
2342 top: 50%;
2343 left: 0;
2344 margin-top: -5px;
2345 border-top: 5px solid transparent;
2346 border-bottom: 5px solid transparent;
2347 border-right: 5px solid #000000;
2348}
2349.popover.bottom .arrow {
2350 top: 0;
2351 left: 50%;
2352 margin-left: -5px;
2353 border-left: 5px solid transparent;
2354 border-right: 5px solid transparent;
2355 border-bottom: 5px solid #000000;
2356}
2357.popover.left .arrow {
2358 top: 50%;
2359 right: 0;
2360 margin-top: -5px;
2361 border-top: 5px solid transparent;
2362 border-bottom: 5px solid transparent;
2363 border-left: 5px solid #000000;
2364}
2365.popover .arrow {
2366 position: absolute;
2367 width: 0;
2368 height: 0;
2369}
2370.popover-inner {
2371 padding: 3px;
2372 width: 280px;
2373 overflow: hidden;
2374 background: #000000;
2375 background: rgba(0, 0, 0, 0.8);
2376 -webkit-border-radius: 6px;
2377 -moz-border-radius: 6px;
2378 border-radius: 6px;
2379 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2380 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2381 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2382}
2383.popover-title {
2384 padding: 9px 15px;
2385 line-height: 1;
2386 background-color: #f5f5f5;
2387 border-bottom: 1px solid #eee;
2388 -webkit-border-radius: 3px 3px 0 0;
2389 -moz-border-radius: 3px 3px 0 0;
2390 border-radius: 3px 3px 0 0;
2391}
2392.popover-content {
2393 padding: 14px;
2394 background-color: #ffffff;
2395 -webkit-border-radius: 0 0 3px 3px;
2396 -moz-border-radius: 0 0 3px 3px;
2397 border-radius: 0 0 3px 3px;
2398 -webkit-background-clip: padding-box;
2399 -moz-background-clip: padding-box;
2400 background-clip: padding-box;
2401}
2402.popover-content p, .popover-content ul, .popover-content ol {
2403 margin-bottom: 0;
2404}
2405/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302406 * lib/css/bootstrap/label.css
2407 */.label {
2408 padding: 2px 4px 3px;
2409 font-size: 11.049999999999999px;
2410 font-weight: bold;
2411 color: #ffffff;
2412 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2413 background-color: #999999;
2414 -webkit-border-radius: 3px;
2415 -moz-border-radius: 3px;
2416 border-radius: 3px;
2417}
2418.label:hover {
2419 color: #ffffff;
2420 text-decoration: none;
2421}
2422.label-important {
2423 background-color: #b94a48;
2424}
2425.label-important:hover {
2426 background-color: #953b39;
2427}
2428.label-warning {
2429 background-color: #f89406;
2430}
2431.label-warning:hover {
2432 background-color: #c67605;
2433}
2434.label-success {
2435 background-color: #468847;
2436}
2437.label-success:hover {
2438 background-color: #356635;
2439}
2440.label-info {
2441 background-color: #3a87ad;
2442}
2443.label-info:hover {
2444 background-color: #2d6987;
2445}
2446/*
2447 * lib/css/bootstrap/icons.css
2448 */[class^="icon-"], [class*=" icon-"] {
2449 display: inline-block;
2450 width: 14px;
2451 height: 14px;
2452 line-height: 14px;
2453 vertical-align: text-top;
2454 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2455 background-position: 14px 14px;
2456 background-repeat: no-repeat;
2457 *margin-right: .3em;
2458}
2459[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
2460 *margin-left: 0;
2461}
2462.icon-white {
2463 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
2464}
2465.icon-glass {
2466 background-position: 0 0;
2467}
2468.icon-music {
2469 background-position: -24px 0;
2470}
2471.icon-search {
2472 background-position: -48px 0;
2473}
2474.icon-envelope {
2475 background-position: -72px 0;
2476}
2477.icon-heart {
2478 background-position: -96px 0;
2479}
2480.icon-star {
2481 background-position: -120px 0;
2482}
2483.icon-star-empty {
2484 background-position: -144px 0;
2485}
2486.icon-user {
2487 background-position: -168px 0;
2488}
2489.icon-film {
2490 background-position: -192px 0;
2491}
2492.icon-th-large {
2493 background-position: -216px 0;
2494}
2495.icon-th {
2496 background-position: -240px 0;
2497}
2498.icon-th-list {
2499 background-position: -264px 0;
2500}
2501.icon-ok {
2502 background-position: -288px 0;
2503}
2504.icon-remove {
2505 background-position: -312px 0;
2506}
2507.icon-zoom-in {
2508 background-position: -336px 0;
2509}
2510.icon-zoom-out {
2511 background-position: -360px 0;
2512}
2513.icon-off {
2514 background-position: -384px 0;
2515}
2516.icon-signal {
2517 background-position: -408px 0;
2518}
2519.icon-cog {
2520 background-position: -432px 0;
2521}
2522.icon-trash {
2523 background-position: -456px 0;
2524}
2525.icon-home {
2526 background-position: 0 -24px;
2527}
2528.icon-file {
2529 background-position: -24px -24px;
2530}
2531.icon-time {
2532 background-position: -48px -24px;
2533}
2534.icon-road {
2535 background-position: -72px -24px;
2536}
2537.icon-download-alt {
2538 background-position: -96px -24px;
2539}
2540.icon-download {
2541 background-position: -120px -24px;
2542}
2543.icon-upload {
2544 background-position: -144px -24px;
2545}
2546.icon-inbox {
2547 background-position: -168px -24px;
2548}
2549.icon-play-circle {
2550 background-position: -192px -24px;
2551}
2552.icon-repeat {
2553 background-position: -216px -24px;
2554}
2555.icon-refresh {
2556 background-position: -240px -24px;
2557}
2558.icon-list-alt {
2559 background-position: -264px -24px;
2560}
2561.icon-lock {
2562 background-position: -287px -24px;
2563}
2564.icon-flag {
2565 background-position: -312px -24px;
2566}
2567.icon-headphones {
2568 background-position: -336px -24px;
2569}
2570.icon-volume-off {
2571 background-position: -360px -24px;
2572}
2573.icon-volume-down {
2574 background-position: -384px -24px;
2575}
2576.icon-volume-up {
2577 background-position: -408px -24px;
2578}
2579.icon-qrcode {
2580 background-position: -432px -24px;
2581}
2582.icon-barcode {
2583 background-position: -456px -24px;
2584}
2585.icon-tag {
2586 background-position: 0 -48px;
2587}
2588.icon-tags {
2589 background-position: -25px -48px;
2590}
2591.icon-book {
2592 background-position: -48px -48px;
2593}
2594.icon-bookmark {
2595 background-position: -72px -48px;
2596}
2597.icon-print {
2598 background-position: -96px -48px;
2599}
2600.icon-camera {
2601 background-position: -120px -48px;
2602}
2603.icon-font {
2604 background-position: -144px -48px;
2605}
2606.icon-bold {
2607 background-position: -167px -48px;
2608}
2609.icon-italic {
2610 background-position: -192px -48px;
2611}
2612.icon-text-height {
2613 background-position: -216px -48px;
2614}
2615.icon-text-width {
2616 background-position: -240px -48px;
2617}
2618.icon-align-left {
2619 background-position: -264px -48px;
2620}
2621.icon-align-center {
2622 background-position: -288px -48px;
2623}
2624.icon-align-right {
2625 background-position: -312px -48px;
2626}
2627.icon-align-justify {
2628 background-position: -336px -48px;
2629}
2630.icon-list {
2631 background-position: -360px -48px;
2632}
2633.icon-indent-left {
2634 background-position: -384px -48px;
2635}
2636.icon-indent-right {
2637 background-position: -408px -48px;
2638}
2639.icon-facetime-video {
2640 background-position: -432px -48px;
2641}
2642.icon-picture {
2643 background-position: -456px -48px;
2644}
2645.icon-pencil {
2646 background-position: 0 -72px;
2647}
2648.icon-map-marker {
2649 background-position: -24px -72px;
2650}
2651.icon-adjust {
2652 background-position: -48px -72px;
2653}
2654.icon-tint {
2655 background-position: -72px -72px;
2656}
2657.icon-edit {
2658 background-position: -96px -72px;
2659}
2660.icon-share {
2661 background-position: -120px -72px;
2662}
2663.icon-check {
2664 background-position: -144px -72px;
2665}
2666.icon-move {
2667 background-position: -168px -72px;
2668}
2669.icon-step-backward {
2670 background-position: -192px -72px;
2671}
2672.icon-fast-backward {
2673 background-position: -216px -72px;
2674}
2675.icon-backward {
2676 background-position: -240px -72px;
2677}
2678.icon-play {
2679 background-position: -264px -72px;
2680}
2681.icon-pause {
2682 background-position: -288px -72px;
2683}
2684.icon-stop {
2685 background-position: -312px -72px;
2686}
2687.icon-forward {
2688 background-position: -336px -72px;
2689}
2690.icon-fast-forward {
2691 background-position: -360px -72px;
2692}
2693.icon-step-forward {
2694 background-position: -384px -72px;
2695}
2696.icon-eject {
2697 background-position: -408px -72px;
2698}
2699.icon-chevron-left {
2700 background-position: -432px -72px;
2701}
2702.icon-chevron-right {
2703 background-position: -456px -72px;
2704}
2705.icon-plus-sign {
2706 background-position: 0 -96px;
2707}
2708.icon-minus-sign {
2709 background-position: -24px -96px;
2710}
2711.icon-remove-sign {
2712 background-position: -48px -96px;
2713}
2714.icon-ok-sign {
2715 background-position: -72px -96px;
2716}
2717.icon-question-sign {
2718 background-position: -96px -96px;
2719}
2720.icon-info-sign {
2721 background-position: -120px -96px;
2722}
2723.icon-screenshot {
2724 background-position: -144px -96px;
2725}
2726.icon-remove-circle {
2727 background-position: -168px -96px;
2728}
2729.icon-ok-circle {
2730 background-position: -192px -96px;
2731}
2732.icon-ban-circle {
2733 background-position: -216px -96px;
2734}
2735.icon-arrow-left {
2736 background-position: -240px -96px;
2737}
2738.icon-arrow-right {
2739 background-position: -264px -96px;
2740}
2741.icon-arrow-up {
2742 background-position: -289px -96px;
2743}
2744.icon-arrow-down {
2745 background-position: -312px -96px;
2746}
2747.icon-share-alt {
2748 background-position: -336px -96px;
2749}
2750.icon-resize-full {
2751 background-position: -360px -96px;
2752}
2753.icon-resize-small {
2754 background-position: -384px -96px;
2755}
2756.icon-plus {
2757 background-position: -408px -96px;
2758}
2759.icon-minus {
2760 background-position: -433px -96px;
2761}
2762.icon-asterisk {
2763 background-position: -456px -96px;
2764}
2765.icon-exclamation-sign {
2766 background-position: 0 -120px;
2767}
2768.icon-gift {
2769 background-position: -24px -120px;
2770}
2771.icon-leaf {
2772 background-position: -48px -120px;
2773}
2774.icon-fire {
2775 background-position: -72px -120px;
2776}
2777.icon-eye-open {
2778 background-position: -96px -120px;
2779}
2780.icon-eye-close {
2781 background-position: -120px -120px;
2782}
2783.icon-warning-sign {
2784 background-position: -144px -120px;
2785}
2786.icon-plane {
2787 background-position: -168px -120px;
2788}
2789.icon-calendar {
2790 background-position: -192px -120px;
2791}
2792.icon-random {
2793 background-position: -216px -120px;
2794}
2795.icon-comment {
2796 background-position: -240px -120px;
2797}
2798.icon-magnet {
2799 background-position: -264px -120px;
2800}
2801.icon-chevron-up {
2802 background-position: -288px -120px;
2803}
2804.icon-chevron-down {
2805 background-position: -313px -119px;
2806}
2807.icon-retweet {
2808 background-position: -336px -120px;
2809}
2810.icon-shopping-cart {
2811 background-position: -360px -120px;
2812}
2813.icon-folder-close {
2814 background-position: -384px -120px;
2815}
2816.icon-folder-open {
2817 background-position: -408px -120px;
2818}
2819.icon-resize-vertical {
2820 background-position: -432px -119px;
2821}
2822.icon-resize-horizontal {
2823 background-position: -456px -118px;
2824}
2825/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302826 * erpnext/startup/startup.css
2827 */h1, h2, h3, h4, h5 {
2828 font-family: Tahoma, Arial, Verdana, sans-serif;
2829 font-weight: bold;
2830}
2831
2832body {
2833 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
2834 font-size: 12px;
2835}
2836
2837span, div, td, input, textarea, button, select {
2838 font-family: inherit;
2839}
2840
2841body {
Rushabh Mehta5d267a42012-03-01 18:53:06 +05302842 background: url(../images/stripedbg.png) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302843}
2844
2845.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05302846 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302847 text-align: center;
2848}
2849
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302850.module-icons {
2851 background: url(../images/module-icons.png) no-repeat top left;
2852 width:16px;
2853 height:16px;
2854}
2855
2856.module-icons-accounts{ background-position: 0 0; }
2857.module-icons-analysis{ background-position: 0 -66px; }
2858.module-icons-buying{ background-position: 0 -132px; }
2859.module-icons-home{ background-position: 0 -198px; }
2860.module-icons-hr{ background-position: 0 -264px; }
2861.module-icons-people{ background-position: 0 -330px; }
2862.module-icons-production{ background-position: 0 -396px; }
2863.module-icons-projects{ background-position: 0 -462px; }
2864.module-icons-selling{ background-position: 0 -528px; }
2865.module-icons-setup{ background-position: 0 -594px; }
2866.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05302867.module-icons-support{ background-position: 0 -726px; }
2868
Anand Doshidb628762012-02-24 17:56:00 +05302869.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05302870 margin: -3px 0px;
2871 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05302872 min-width: 20px;
2873 text-align: center;
2874 display: inline-block;
2875 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302876 color: #999999;
2877 background-color: #333131;
2878}
2879
2880.navbar-new-comments:hover,
2881.navbar-new-comments:active,
2882.navbar-new-comments:focus {
2883 color: #fff;
2884}
2885
2886
2887.navbar-new-comments-true {
2888 color: #fff;
2889 background-color: #B00D07;
2890}
2891
2892.navbar-icon-home {
2893 vertical-align: middle;
2894 opacity:0.4;
2895 Filter:alpha(opacity=40); /* For IE8 and earlier */
2896}
2897
2898.navbar-icon-home:hover,
2899.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05302900.navbar-icon-home:active,
2901.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302902 opacity:1;
2903 Filter:alpha(opacity=100); /* For IE8 and earlier */
2904}
2905
2906/*extra size menus for recent*/
2907.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2908 min-width: 160px !important;
2909 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05302910}