blob: c818a940da57bade9172294258e1b0fcda1dab3d [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 Mehtaafaac602012-02-14 11:44:13 +053068a:active { outline:none; }
69
70:focus { -moz-outline-style:none; }
71
72table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
73table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
74
75div.fix_ff_cursor { overflow: auto; }
76
77/* --- Layout --- */
78
79div.comment { color: #444; }
80
81div#body_div {
82 position: relative;
83 display: none;
84 margin-top: 56px;
85 padding-right: 7px;
86}
87
88div.no_script {
89 display: none;
90}
91
92div.loading_div {
93 position: absolute;
94 background-color: #FFFFCC;
95 z-index: 1999;
96 right: 5px;
97 width: 90px;
98 display: none;
99 text-align: center;
100 padding: 2px;
101 font-size: 12px;
102 border: 1px solid #FF4;
103}
104
105
106div#head_div { background-color: #FFF; }
107
108#head_banner { background-color: #FFF; }
109
110.link_type {
111 padding:2px;
112 color: #00b;
113 text-decoration: underline;
114 cursor: pointer;
115}
116
117.link_type:hover {
118 color: #fff !important;
119 background-color: #07b;
120 text-decoration: none;
121}
122
123div.std-footer {
124 margin: 13px 0px;
125 border-top: 1px solid #AAA;
126 padding: 13px;
127}
128
129div.std-footer-item {
130 margin: 0px 13px 13px 0px;
131}
132
133.shadow {
134 -moz-box-shadow: 0px 2px 2px #888;
135 -webkit-box-shadow: 0px 2px 2px #888;
136 box-shadow: 0px 2px 2px #888;
137}
138
139.round {
140 -webkit-border-radius: 5px;
141 -moz-border-radius: 5px;
142 border-radius: 5px;
143}
144.gradient {
145 background: #ededed; /* Old browsers */
146 background: -moz-linear-gradient(top, #ededed 0%, #d1d1d1 47%, #b7b7b7 100%); /* FF3.6+ */
147 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(47%,#d1d1d1), color-stop(100%,#b7b7b7)); /* Chrome,Safari4+ */
148 background: -webkit-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Chrome10+,Safari5.1+ */
149 background: -o-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Opera11.10+ */
150 background: -ms-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* IE10+ */
151 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#b7b7b7',GradientType=0 ); /* IE6-9 */
152 background: linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* W3C */
153}
154
155.header-gradient {
156 background: #84827c; /* Old browsers */
157 background: -moz-linear-gradient(top, #84827c 0%, #27211c 100%); /* FF3.6+ */
158 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#84827c), color-stop(100%,#27211c)); /* Chrome,Safari4+ */
159 background: -webkit-linear-gradient(top, #84827c 0%,#27211c 100%); /* Chrome10+,Safari5.1+ */
160 background: -o-linear-gradient(top, #84827c 0%,#27211c 100%); /* Opera11.10+ */
161 background: -ms-linear-gradient(top, #84827c 0%,#27211c 100%); /* IE10+ */
162 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84827c', endColorstr='#27211c',GradientType=0 ); /* IE6-9 */
163 background: linear-gradient(top, #84827c 0%,#27211c 100%); /* W3C */
164 color: #FFF;
165}
166
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530167.layout_wrapper, .layout-wrapper {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530168 -moz-box-shadow: 1px 1px 6px #AAA;
169 -webkit-box-shadow: 1px 1px 6px #AAA;
170 box-shadow: 1px 1px 6px #AAA;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530171 background-color: #fff;
172 padding: 15px;
173}
174
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530175.layout-wrapper-background {
176 background-color: #f2f2f2 !important;
177 padding: 0px;
178}
179
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530180.layout-main-section {
181 width: 68%;
182 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530183 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530184 background-color: #FFF;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530185 min-height: 450px;
186}
187
188.layout-side-section {
189 width: 24%;
190 float: right;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530191 color: #606060;
192 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530193 padding: 15px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530194 min-height: 450px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530195}
196
197/* from bootstrap */
198.container {
199 margin-left: auto;
200 margin-right: auto;
201 zoom: 1;
202}
203.container:before, .container:after {
204 display: table;
205 content: "";
206 zoom: 1;
207}
208.container:after {
209 clear: both;
210}
211
212/*
213 * lib/css/legacy/menus.css
214 */
215/******** Menus - menu.js ************/
216
217ul.menu_toolbar {
218 z-index: 30;
219 padding: 0px;
220 margin: 0px;
221 margin-top: 1px;
222}
223
224ul.menu_toolbar li {
225 list-style: none;
226 margin: 0px;
227 float: left;
228}
229
230.top_menu {
231 margin: 0px;
232 padding: 4px;
233 cursor: pointer;
234 color: #FFF;
235 margin-right: 8px;
236}
237
238.top_menu_mo {
239 background-color: #000;
240
241 -moz-border-radius: 5px;
242 -webkit-border-radius: 5px;
243}
244
245div.menu_toolbar_dropdown {
246 position: absolute;
247 margin-top: 4px;
248 margin-left: 8px;
249 width: 140px;
250 background-color: #FFF;
251 color: #000;
252 display: none;
253 border: 2px solid #333;
254 z-index: 31;
255 overflow-y: auto;
256 overflow-x: hidden;
257}
258
259div.dd_item {
260 cursor: pointer;
261 padding: 4px;
262 background-color: #FFF;
263}
264div.dd_item_mo { background-color: #FE8; }
265/*
266 * lib/css/legacy/messages.css
267 */
268/* FLOATING MESSAGE */
269
270.btn-img { cursor: pointer; }
271
272div.fetching { color: #888; text-align:right; }
273
274div.notice {
275 postion: absolute;
276 background-color: #000;
277 -moz-border-radius: 5px; -webkit-border-radius: 5px;
278 opacity: 0.6;
279 right: 0;
280 top: 0;
281 margin-top: 8px;
282 z-index: -1;
283 padding: 8px;
284}
285
286/** help **/
287
288.info-box {
289 background-color: #F8F8F8;
290 border: 1px solid #CCCCCC;
291 border-radius: 3px 3px 3px 3px;
292 line-height: 1.6em;
293 overflow: auto;
294 padding: 6px 10px;
295 margin-bottom: 9px;
296}
297
298.help_box, .help-box {
299 background-color:#FFC;
300 font-size: 13px;
301 color: #864;
302 padding: 7px;
303 margin: 11px 0px;
304 border: 1px solid #EEB;
305}
306
307.help_box_big {
308 background-color:#FFC;
309 color: #864;
310 padding: 7px;
311 margin: 7px 0px;
312 border: 1px solid #EEB;
313 text-align: center;
314 font-size: 14px;
315}
316/*
317 * lib/css/legacy/forms.css
318 *//* FORMS */
319
320
321div.frm_print_wrapper {
322 background-color:#FFF;
323 border:1px solid #444;
324 padding: 40px;
325
326 box-shadow:1px 1px 8px #229;
327 -moz-box-shadow: 1px 1px 8px #229;
328 -webkit-box-shadow: 1px 1px 8px #229;
329}
330
331div.page_break {
332 margin: 24px 0px;
333 border-top: 1px dashed #888;
334}
335
336div.grid_tbarlinks {
337 border-bottom: 0px;
338 background-color: #CCC;
339 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530340 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530341 float: right;
342
343 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
344 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
345}
346
347
348div.frm_tip_box {
349 margin: 0px;
350 padding: 8px;
351 background-color: #FFC;
352 display: none;
353 font-size: 11px;
354 border: 1px solid #FFB;
355}
356
357div.frm_tip_box table {
358 border-collapse: collapse;
359 vertical-align: top;
360}
361
362td.frm_tray_area {
363 width: 122px;
364}
365
366div.dialog_frm {
367 position: relative;
368 margin: 10px;
369}
370
371
372
373/*------------------*/
374
375.top_cell {
376 height: 50px;
377}
378
379div.attach_area {
380 padding: 8px;
381 margin: 8px;
382 background-color: #EEE;
383}
384
385div.attach_area table {
386 width: 100%;
387}
388
389.tablabel_normal {
390 margin: 0 4px 0 0;
391 padding: 3px 5px;
392 line-height: 1.3em;
393 display: inline;
394 cursor: pointer;
395}
396
397.tablabel_selected {
398 margin: 0 4px 0 0;
399 padding: 3px 5px;
400 line-height: 1.3em;
401 font-weight: bold;
402 display: inline;
403 cursor: pointer;
404 color: #000;
405}
406
407.scrollhead_wrapper {
408 position: absolute;
409 z-index: 1;
410 height: 30px;
411}
412
413.treeimg {
414 cursor: pointer;
415 margin-right: 3px;
416}
417
418
419.sectionCell {
420 padding: 5px;
421 vertical-align: top;
422}
423
424.code_area {
425 width: 80%;
426 margin: 8px;
427 padding: 4px;
428 background-color: #F8F8F8;
429 border: 1px solid #CCC;
430 overflow-x: auto;
431}
432
433.code_text {
434 width: 100%;
435 height: 360px;
436 margin-top: 3px;
437 font-family: Courier, Fixed;
438 font-size: 12px;
439}
440
441div.time_field select{
442 display: inline;
443 margin: 2px;
444 width: 45px;
445}
446
447/* Documents */
448
449.frm_field_table {
450 width: 100%;
451 border-collapse: collapse;
452}
453
454.datalabelcell {
455 padding: 2px 0px;
456 width: 160px;
457 vertical-align: top;
458}
459.datainputcell { padding: 2px 0px; }
460
461
462.field_description, .help {
463 margin: 3px 0px 11px 0px;
464 color: #888;
465 font-style: italic;
466}
467
468.field_description_top {
469 margin-bottom: 3px;
470}
471
472.field_label {
473 font-size:11px;
474}
475.input_area input, select, textarea {
476 font-size: 14px;
477 padding: 2px;
478}
479
480.input_area input {
481 width: 80%;
482 margin: 0px;
483}
484.input_area select {
485 width: 80%;
486}
487.input_area textarea {
488 width: 90%;
489}
490
491.disp_area {
492 width: 80%;
493 padding: 2px 0px;
494 font-size: 12px;
495}
496.disp_area_no_val {
497 height: 14px;
498}
499
500.no_img {
501 padding: 40px;
502 width: 100px;
503 height: 20px;
504 color: #888;
505 text-align: center;
506 border: 1px solid #AAA;
507}
508
509.input-mandatory {
510 font-size: 14px !important;
511 font-weight: bold;
512}
513
514.field-to-update {
515 background-color:#FEE;
516}
517
518/* sidebar */
519
520div.sidebar-comment-wrapper input {
521 width: 50%;
522}
523div.sidebar-comment-message {
524 margin-top: 8px;
525 font-size: 11px;
526 color: #777;
527}
528
529div.sidebar-comment-text {
530 font-size: 12px;
531 font-weight: bold;
532 margin-top: 8px;
533 color: #444;
534}
535div.sidebar-comment-info {
536 font-size: 10px;
537 color: #777;
538}
539/*
540 * lib/css/legacy/grid.css
541 */
542
543/* Grid */
544
545
546/* --- Simple --- */
547.grid_wrapper_simple {
548 width: 100%;
549 margin-bottom: 8px;
550 border: 1px solid #AA9;
551}
552
553.grid_head_wrapper_simple {
554 padding: 0px;
555 border-bottom: 2px solid #AAA;
556}
557
558.grid_head_wrapper_simple td {
559 border-right: 1px solid #AA9;
560}
561
562.grid_head_wrapper_simple td div {
563 padding: 2px;
564}
565
566.grid_tab_wrapper_simple {
567}
568
569.grid_cell_simple {
570 padding: 2px;
571 background-color: #fff;
572 border-right: 1px solid #AA9;
573}
574
575
576/* --- Normal --- */
577.grid_wrapper {
578 position: relative;
579 overflow: auto;
580 border: 1px solid #AAA;
581 width: 100%;
582 margin-bottom: 8px;
583 background-color: #fff;
584}
585
586.grid_tab_wrapper {
587 position: absolute;
588 top: 40px;
589 border-bottom: 1px solid #DDD;
590}
591
592.grid_table, .grid_head_table {
593 table-layout: fixed;
594 border-collapse: collapse;
595 /*width: 100%;*/
596}
597
598.grid_cell {
599 border-right: 1px solid #ddd;
600 padding: 0px;
601 background-color: #fff;
602}
603
604.grid_head_wrapper {
605 position: absolute;
606 z-index: 1;
607 height: 40px;
608 padding: 0px;
609 overflow: hidden;
610 /*background-color: #fff;*/
611}
612
613.grid_head_table td {
614 background-color: #EEE;
615 border-right: 1px solid #AAA;
616 border-bottom: 1px solid #AAA;
617 height: 40px;
618 padding: 0px;
619}
620
621.grid_head_table td div {
622 color: #222;
623 font-weight: bold;
624 overflow: hidden;
625 padding: 2px 0px;
626 text-align: center;
627}
628
629.grid_selector {
630 padding: 1px;
631 border-right: 1px solid #DDD;
632 width: 20px;
633 background-color: #fff;
634}
635
636.grid_cell_div {
637 padding: 2px;
638 cursor: pointer;
639 overflow: hidden;
640 border: 2px solid #FFF;
641}
642
643.grid_cell_div_selected {
644 border: 2px solid #88f;
645}
646
647.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
648 margin: 0px;
649 border: 0px;
650 width: 100%;
651 margin: 0px;
652 }
653
654.grid_cell_div textarea {
655 border: 3px solid #abf;
656 height:200px;
657 width: 300px;
658 z-index: 10;
659 position:absolute;
660}
661
662.gridDivSelected option { border: 0px; }
663/*
664 * lib/css/legacy/listing.css
665 *//* listing 2.0 */
666
667div.listing-more {
668 margin: 7px 0px 17px 0px;
669 text-align: center;
670 display: none;
671}
672
673div.listing-toolbar {
674 margin: 7px 0px;
675}
676
677/* SRS */
678
679table.srs_result_tab {
680 border: 2px solid #AAA;
681 border-collapse: collapse;
682}
683
684/* firefox bug fix for disappering borders */
685table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
686 position: static;
687}
688
689table.srs_result_tab td {
690 padding: 3px 2px;
691 position: static;
692}
693
694div.srs_body_area {
695}
696
697div.srs_results_area {
698}
699
700div.srs_filter_wrapper {
701 border: 1px solid #CCF;
702
703 background-color: #EEF;
704 margin:0px 0px 8px 0px;
705
706 -moz-border-radius: 5px;
707 -webkit-border-radius: 5px;
708 border-radius: 5px;
709}
710
711div.srs_filter_area {
712 padding: 8px;
713}
714
715div.srs_filter_area td {
716 vertical-align: middle;
717}
718
719
720
721
722/*
723 * lib/css/legacy/report.css
724 */
725/* Reports */
726
727div.report_grid_area {
728 position: relative;
729 padding: 8px;
730}
731
732
733div.report_tab {
734 border: 1px solid #AAA;
735 position: relative;
736 overflow: auto;
737}
738
739div.report_no_data {
740 padding: 8px;
741 background-color: #EEE;
742 border: 1px solid #DDD;
743 position: absolute;
744 margin-left: 40%;
745 margin-top: 50px;
746 display: none;
747}
748
749div.report_htitle {
750 float: left;
751 padding: 2px;
752 font-size: 14px;
753 font-weight: bold;
754 margin-left: 4px;
755 color: #665;
756 /*font-weight: bold;*/
757}
758
759div.report_tbar {
760 background-color: #EEF;
761 border: 1px solid #CCF;
762 border-bottom: 0px;
763 height: 28px;
764}
765
766div.report_tbar table{
767 width: 100%;
768}
769div.report_tbar table td {
770
771}
772div.report_tbar table td div {
773 position: relative;
774}
775div.report_tbar button, div.report_tbar select, div.report_tbar img {
776 font-size: 11px;
777 margin: 0px;
778}
779
780div.report_head_wrapper {
781 position: absolute;
782 height: 24px;
783 top: 0px;
784 z-index: 1;
785}
786
787div.report_tab_wrapper {
788 position: absolute;
789 border-bottom: 1px solid #AAA;
790 border-top: 1px solid #AAA;
791}
792
793div.report_tab_wrapper table, div.report_head_wrapper table {
794 table-layout: fixed;
795 border-collapse: collapse;
796 /*width: 100%;*/
797}
798
799div.report_tab_wrapper table td, div.report_head_wrapper table td {
800 border-left: 1px solid #AAA;
801 border-right: 1px solid #AAA;
802 border-bottom: 1px solid #AAA;
803 overflow: hidden;
804 padding: 0px;
805}
806
807div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
808 padding: 3px;
809 overflow: hidden;
810}
811
812.report_head_cell {
813 background-color: #EEE;
814 border-bottom: 1px solid #AA9;
815 text-align: center;
816 font-weight: bold;
817}
818.report_head_cell div {
819 color:#222;
820 height: 18px;
821}
822
823
824/* FINDER */
825
826div.finder_wrapper {
827}
828
829div.finder_body_area {
830 margin: 16px;
831}
832
833div.finder_body {
834 display: none;
835}
836
837div.finder_advanced_area table {
838 width: 80%;
839}
840
841div.finder_advanced_area textarea {
842 width: 80%;
843}
844
845div.finder_filter_area {
846 position: relative;
847}
848
849div.filter_head {
850 font-size: 14px;
851 margin-bottom: 2px;
852}
853div.filter_dt_head {
854 font-size: 14px;
855 font-weight: bold;
856 margin-bottom: 2px;
857}
858table.filter_tab {
859 width: 96%;
860 border-collapse: collapse;
861}
862
863table.filter_tab td {
864 width: 50%;
865}
866
867div.finder_picker_area {
868
869}
870div.builder_field {
871 margin: 0px;
872}
873div.builder_dt_head {
874 font-size: 14px;
875 font-weight: bold;
876 margin-bottom: 2px;
877}
878
879div.builder_field table {
880 width: 90%;
881 border-collapse: collapse;
882}
883
884div.builder_label {
885 height: 20px;
886}
887
888div.builder_head {
889 font-size: 16px;
890 font-weight: bold;
891 color: #AB6;
892}
893
894table.builder_tab {
895 width: 96%;
896 border-collapse: collapse;
897}
898
899table.builder_tab td {
900 width: 33%;
901 padding: 2px;
902}
903/*
904 * lib/css/legacy/calendar.css
905 *//**** CALENDAR ****/
906
907.caldiv {
908 position:absolute;
909 visibility:hidden;
910 background-color:white;
911 width: 144px;
912 z-index: 301; /* always on top(?) */
913}
914
915
916
917div.cal_wrapper { }
918div.cal_body {
919 margin: 16px;
920 background-color: #DDD;
921 position: relative;
922 border-radius: 5px;
923 -moz-border-radius: 5px;
924 -webkit-border-radius: 5px;
925}
926
927div.cal_head {
928 margin: 16px;
929 margin-bottom: 0px;
930}
931div.cal_head div {
932 font-size: 18px;
933 color: #666;
934 padding-top: 8px;
935}
936
937div.cal_view_body {
938 margin: 16px;
939}
940
941div.cal_view_body_plain {
942 margin: 16px;
943}
944
945div.cal_month_head {
946}
947
948div.cal_month_body {
949 border-top: 1px solid #888;
950}
951
952.cal_month_headtable {
953 /*table-layout:fixed;*/
954 width: 100%;
955}
956
957.cal_month_name {
958 width: 100%;
959 color: #888;
960 font-size: 14px;
961 font-weight: bold;
962 text-align: center;
963 padding: 4px;
964}
965
966.cal_month_headtable tr td{
967 font-size: 12px;
968 font-weight: bold;
969 text-align: center;
970 padding: 4px;
971}
972
973table.cal_month_table {
974 border-collapse: collapse;
975 /*table-layout:fixed;*/
976 height: 100%;
977 width: 100%;
978}
979
980table.cal_month_table td {
981 width: 14.29%;
982 height: 20%;
983 /*overflow:hidden;*/
984 padding:0px;
985}
986
987div.cal_month_date {
988 width:100%;
989 height:25%;
990 font-size: 10px;
991 overflow:hidden;
992 /*background-color: #EEF;*/
993}
994
995div.cal_month_date_holiday {
996 /*background-color: #FFF;*/
997}
998
999div.cal_month_unit {
1000 width:100%;
1001 height:75%;
1002 overflow:hidden;
1003 cursor:pointer;
1004 /*background-color:#FFF;*/
1005}
1006
1007div.cal_vu_disabled {
1008 background-color:#FFF;
1009 cursor:default;
1010}
1011
1012table.cal_day_table {
1013 border-collapse: collapse;
1014 width: 100%;
1015}
1016
1017table.cal_day_table td {
1018}
1019
1020div.cal_day_body {
1021 width: 100%;
1022 height: 80%;
1023 overflow-y: auto;
1024 overflow-x: hidden;
1025 border-top: 1px solid #AAA;
1026}
1027
1028div.cal_day_unit{
1029 width:100%;
1030 cursor:pointer;
1031}
1032
1033table.cal_week_table {
1034 border-collapse: collapse;
1035 width: 100%;
1036}
1037
1038table.cal_week_table td {
1039 width: 12.5%;
1040}
1041
1042div.cal_week_body {
1043 width: 100%;
1044 height: 80%;
1045 overflow-y: auto;
1046 overflow-x: hidden;
1047 border-top: 1px solid #888;
1048}
1049
1050div.cal_week_unit{
1051 width: 100%;
1052 cursor:pointer;
1053}
1054
1055div.cal_event {
1056 width: 100%;
1057 height: 12px;
1058 overflow: hidden;
1059 font-size: 11px;
1060 color: #00B;
1061 margin-bottom: 2px;
1062 text-decoration: underline;
1063}
1064
1065div.cal_event_Public {
1066 color: GREEN;
1067}
1068
1069div.cal_event_Private {
1070 color: BLUE;
1071}
1072
1073div.cal_event_hover {
1074 text-decoration: underline;
1075}
1076
1077/*
1078 * lib/css/legacy/autosuggest.css
1079 *//*
1080================================================
1081autosuggest, inquisitor style
1082================================================
1083*/
1084
1085div.autosuggest
1086{
1087 position: absolute;
1088 margin-top: 3px;
1089 border: 1px solid #222;
1090}
1091
1092div.autosuggest ul
1093{
1094 list-style: none;
1095 margin: 0px;
1096 padding: 2px;
1097 overflow: hidden;
1098 background-color: #FFF;
1099}
1100
1101div.autosuggest ul li
1102{
1103 color: #444;
1104 padding: 0;
1105 margin: 0;
1106 text-align: left;
1107}
1108
1109div.autosuggest ul li a
1110{
1111 color: #444;
1112 display: block;
1113 text-decoration: none;
1114 position: relative;
1115 padding: 0;
1116 width: 100%;
1117}
1118div.autosuggest ul li a:hover
1119{
1120
1121}
1122div.autosuggest ul li.as_highlight a:hover
1123{
1124 background-color: #45A;
1125 color: #FFF;
1126}
1127
1128div.autosuggest ul li a span
1129{
1130 display: block;
1131 padding: 3px 6px;
1132 color: #444;
1133 border-bottom:1px solid #DDD;
1134}
1135
1136div.autosuggest ul li a span small
1137{
1138 display: block;
1139 font-weight: normal;
1140 color: #444;
1141}
1142
1143div.autosuggest ul li.as_highlight a span small
1144{
1145 color: #FFF;
1146}
1147
1148div.autosuggest ul li.as_highlight a span {
1149 color: #FFF;
1150}
1151
1152div.autosuggest ul li.as_highlight a
1153{
1154 color: #FFF;
1155 background-color: #45A;
1156 cursor: pointer;
1157}
1158
1159div.autosuggest ul li.as_warning
1160{
1161 font-weight: bold;
1162 text-align: center;
1163}
1164
1165div.autosuggest ul em
1166{
1167 font-style: normal;
1168 font-weight: bold;
1169}
1170
1171/*
1172 * lib/css/legacy/dialog.css
1173 *//***** Dialogs *******/
1174
1175div.dialog_wrapper {
1176 position: absolute;
1177 width: 440px;
1178 display: none;
1179 z-index: 90;
1180 background-color: #FFF;
1181 border: 3px solid #222;
1182 box-shadow:1px 1px 5px #777;
1183 -moz-box-shadow: 1px 1px 5px #777;
1184 -webkit-box-shadow: 1px 1px 5px #777;
1185
1186 border-radius: 5px;
1187 -moz-border-radius: 5px;
1188 -webkit-border-radius: 5px;
1189}
1190
1191div.dialog_head {
1192 height: 22px;
1193 padding: 4px;
1194 background-color: #222;
1195 color: #FFF;
1196}
1197
1198div.dialog_body {
1199 padding: 8px 4px 16px 4px;
1200 border-radius: 5px;
1201 -moz-border-radius: 5px;
1202 -webkit-border-radius: 5px;
1203}
1204
1205div.dialog_back {
1206 position: fixed;
1207 display: none;
1208 top: 0px;
1209 left: 0px;
1210 bottom: 0px;
1211 right: 0px;
1212 background-color: #EEE;
1213 opacity: 0.6;
1214 z-index: 50;
1215 text-align: center;
1216}
1217
1218div.dialog_message {
1219 display: none;
1220 position: absolute;
1221 width: 250px;
1222 font-size: 12px;
1223 z-index: 91;
1224 background-color:#FFF;
1225 padding: 12px;
1226 border: 1px solid #444;
1227}
1228
1229div.dialog_row {
1230 padding: 8px 8px 0px 8px;
1231}
1232
1233div.dialog_row table {
1234 width: 100%;
1235}
1236
1237div.dialog_row table td {
1238}
1239
1240div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
1241 width: 80%;
1242 font-size: 14px;
1243}
1244
1245div.dialog_row table td textarea {
1246 width: 80%;
1247 height: 200px;
1248 font-size: 12px;
1249}
1250
1251/*
1252 * lib/css/legacy/tabs.css
1253 */
1254/******* TABS ********/
1255
1256div.box_label_wrapper {
1257 border-bottom: 6px solid #777;
1258}
1259
1260div.box_label_body {
1261 height: 22px;
1262}
1263
1264ul.box_tabs {
1265 margin: 0px;
1266 padding: 0px;
1267 list-style: none;
1268}
1269
1270ul.box_tabs li {
1271 height: 22px;
1272 float:left;
1273 font-size: 12px;
1274 text-decoration: underline;
1275
1276 background-color: #DDD;
1277
1278 margin:0;
1279 margin-left: 4px;
1280 padding:0 0 0 9px;
1281 cursor: pointer;
1282}
1283
1284ul.box_tabs a {
1285 display:block;
1286 padding:3px 15px 3px 6px;
1287 text-decoration:none;
1288}
1289
1290ul.box_tabs li.box_tab_mouseover {
1291 background-color: #BBB;
1292}
1293
1294
1295ul.box_tabs li.box_tab_selected {
1296 background-color: #777;
1297
1298 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1299 background: -moz-linear-gradient(top, #999, #777);
1300
1301 color: #FFF;
1302 font-weight:bold;
1303
1304}
1305ul.box_tabs li.box_tab_selected a {
1306
1307}
1308
1309/*
1310 * lib/css/legacy/bw-icons.css
1311 */
1312/** general icons **/
1313
1314.wn-icon { background: url('../lib/images/icons/icons.png'); width: 16px; height: 16px; cursor: pointer; }
1315.ic-2x2_grid { background-position: 0 0; }
1316.ic-3x3_grid { background-position: 0 -36px; }
1317.ic-3x3_grid_2 { background-position: 0 -72px; }
1318.ic-air_signal { background-position: 0 -108px; }
1319.ic-align_center { background-position: 0 -144px; }
1320.ic-align_just { background-position: 0 -180px; }
1321.ic-align_left { background-position: 0 -216px; }
1322.ic-align_right { background-position: 0 -252px; }
1323.ic-app_window { background-position: 0 -288px; }
1324.ic-arrow_bottom { background-position: 0 -324px; }
1325.ic-arrow_bottom_left { background-position: 0 -360px; }
1326.ic-arrow_bottom_right { background-position: 0 -396px; }
1327.ic-arrow_l { background-position: 0 -432px; }
1328.ic-arrow_left { background-position: 0 -468px; }
1329.ic-arrow_r { background-position: 0 -504px; }
1330.ic-arrow_right { background-position: 0 -540px; }
1331.ic-arrow_top { background-position: 0 -576px; }
1332.ic-arrow_top_left { background-position: 0 -612px; }
1333.ic-arrow_top_right { background-position: 0 -648px; }
1334.ic-arrow_two_head { background-position: 0 -684px; }
1335.ic-arrow_two_head_2 { background-position: 0 -720px; }
1336.ic-attention { background-position: 0 -756px; }
1337.ic-battery { background-position: 0 -792px; }
1338.ic-bell { background-position: 0 -828px; }
1339.ic-book { background-position: 0 -864px; }
1340.ic-bookmark_1 { background-position: 0 -900px; }
1341.ic-bookmark_2 { background-position: 0 -936px; }
1342.ic-box { background-position: 0 -972px; }
1343.ic-br_down { background-position: 0 -1008px; }
1344.ic-br_next { background-position: 0 -1044px; }
1345.ic-br_prev { background-position: 0 -1080px; }
1346.ic-br_up { background-position: 0 -1116px; }
1347.ic-brackets { background-position: 0 -1152px; }
1348.ic-browser { background-position: 0 -1188px; }
1349.ic-brush { background-position: 0 -1224px; }
1350.ic-bug { background-position: 0 -1260px; }
1351.ic-burst { background-position: 0 -1296px; }
1352.ic-calc { background-position: 0 -1332px; }
1353.ic-calendar_1 { background-position: 0 -1368px; }
1354.ic-calendar_2 { background-position: 0 -1404px; }
1355.ic-cancel { background-position: 0 -1440px; }
1356.ic-case { background-position: 0 -1476px; }
1357.ic-cc { background-position: 0 -1512px; }
1358.ic-cert { background-position: 0 -1548px; }
1359.ic-chart_bar { background-position: 0 -1584px; }
1360.ic-chart_line { background-position: 0 -1620px; }
1361.ic-chart_line_2 { background-position: 0 -1656px; }
1362.ic-chart_pie { background-position: 0 -1692px; }
1363.ic-checkbox_checked { background-position: 0 -1728px; }
1364.ic-checkbox_unchecked { background-position: 0 -1764px; }
1365.ic-checkmark { background-position: 0 -1800px; }
1366.ic-clip { background-position: 0 -1836px; }
1367.ic-clipboard_copy { background-position: 0 -1872px; }
1368.ic-clipboard_cut { background-position: 0 -1908px; }
1369.ic-clipboard_past { background-position: 0 -1944px; }
1370.ic-clock { background-position: -36px 0; }
1371.ic-cloud { background-position: -36px -36px; }
1372.ic-cloud_rain { background-position: -36px -72px; }
1373.ic-cog { background-position: -36px -108px; }
1374.ic-comp { background-position: -36px -144px; }
1375.ic-compass { background-position: -36px -180px; }
1376.ic-contact_card { background-position: -36px -216px; }
1377.ic-cube { background-position: -36px -252px; }
1378.ic-cur_bp { background-position: -36px -288px; }
1379.ic-cur_dollar { background-position: -36px -324px; }
1380.ic-cur_euro { background-position: -36px -360px; }
1381.ic-cur_yen { background-position: -36px -396px; }
1382.ic-cursor_H_split { background-position: -36px -432px; }
1383.ic-cursor_V_split { background-position: -36px -468px; }
1384.ic-cursor_arrow { background-position: -36px -504px; }
1385.ic-cursor_drag_arrow { background-position: -36px -540px; }
1386.ic-cursor_drag_arrow_2 { background-position: -36px -576px; }
1387.ic-cursor_drag_hand { background-position: -36px -612px; }
1388.ic-cursor_hand { background-position: -36px -648px; }
1389.ic-db { background-position: -36px -684px; }
1390.ic-delete { background-position: -36px -720px; }
1391.ic-doc_delete { background-position: -36px -756px; }
1392.ic-doc_edit { background-position: -36px -792px; }
1393.ic-doc_empty { background-position: -36px -828px; }
1394.ic-doc_export { background-position: -36px -864px; }
1395.ic-doc_import { background-position: -36px -900px; }
1396.ic-doc_lines { background-position: -36px -936px; }
1397.ic-doc_lines_stright { background-position: -36px -972px; }
1398.ic-doc_minus { background-position: -36px -1008px; }
1399.ic-doc_new { background-position: -36px -1044px; }
1400.ic-doc_plus { background-position: -36px -1080px; }
1401.ic-document { background-position: -36px -1116px; }
1402.ic-download { background-position: -36px -1152px; }
1403.ic-emotion_sad { background-position: -36px -1188px; }
1404.ic-emotion_smile { background-position: -36px -1224px; }
1405.ic-expand { background-position: -36px -1260px; }
1406.ic-eye { background-position: -36px -1296px; }
1407.ic-eye_inv { background-position: -36px -1332px; }
1408.ic-facebook { background-position: -36px -1368px; }
1409.ic-filter { background-position: -36px -1404px; }
1410.ic-fire { background-position: -36px -1440px; }
1411.ic-flag { background-position: -36px -1476px; }
1412.ic-folder { background-position: -36px -1512px; }
1413.ic-folder_arrow { background-position: -36px -1548px; }
1414.ic-folder_delete { background-position: -36px -1584px; }
1415.ic-folder_minus { background-position: -36px -1620px; }
1416.ic-folder_open { background-position: -36px -1656px; }
1417.ic-folder_plus { background-position: -36px -1692px; }
1418.ic-font_bold { background-position: -36px -1728px; }
1419.ic-font_italic { background-position: -36px -1764px; }
1420.ic-font_size { background-position: -36px -1800px; }
1421.ic-font_strokethrough { background-position: -36px -1836px; }
1422.ic-font_underline { background-position: -36px -1872px; }
1423.ic-game_pad { background-position: -36px -1908px; }
1424.ic-globe_1 { background-position: -36px -1944px; }
1425.ic-globe_2 { background-position: -72px 0; }
1426.ic-globe_3 { background-position: -72px -36px; }
1427.ic-google { background-position: -72px -72px; }
1428.ic-hand_1 { background-position: -72px -108px; }
1429.ic-hand_2 { background-position: -72px -144px; }
1430.ic-hand_contra { background-position: -72px -180px; }
1431.ic-hand_pro { background-position: -72px -216px; }
1432.ic-headphones { background-position: -72px -252px; }
1433.ic-heart { background-position: -72px -288px; }
1434.ic-heart_empty { background-position: -72px -324px; }
1435.ic-home { background-position: -72px -360px; }
1436.ic-image_text { background-position: -72px -396px; }
1437.ic-inbox { background-position: -72px -432px; }
1438.ic-indent_decrease { background-position: -72px -468px; }
1439.ic-indent_increase { background-position: -72px -504px; }
1440.ic-info { background-position: -72px -540px; }
1441.ic-iphone { background-position: -72px -576px; }
1442.ic-key { background-position: -72px -612px; }
1443.ic-layers_1 { background-position: -72px -648px; }
1444.ic-layers_2 { background-position: -72px -684px; }
1445.ic-lightbulb { background-position: -72px -720px; }
1446.ic-lighting { background-position: -72px -756px; }
1447.ic-link { background-position: -72px -792px; }
1448.ic-list_bullets { background-position: -72px -828px; }
1449.ic-list_num { background-position: -72px -864px; }
1450.ic-magic_wand { background-position: -72px -900px; }
1451.ic-mail { background-position: -72px -936px; }
1452.ic-mail_2 { background-position: -72px -972px; }
1453.ic-mic { background-position: -72px -1008px; }
1454.ic-monitor { background-position: -72px -1044px; }
1455.ic-movie { background-position: -72px -1080px; }
1456.ic-music { background-position: -72px -1116px; }
1457.ic-net_comp { background-position: -72px -1152px; }
1458.ic-network { background-position: -72px -1188px; }
1459.ic-notepad { background-position: -72px -1224px; }
1460.ic-notepad_2 { background-position: -72px -1260px; }
1461.ic-on-off { background-position: -72px -1296px; }
1462.ic-openid { background-position: -72px -1332px; }
1463.ic-padlock_closed { background-position: -72px -1368px; }
1464.ic-padlock_open { background-position: -72px -1404px; }
1465.ic-page_layout { background-position: -72px -1440px; }
1466.ic-paragraph { background-position: -72px -1476px; }
1467.ic-pencil { background-position: -72px -1512px; }
1468.ic-phone { background-position: -72px -1548px; }
1469.ic-phone_1 { background-position: -72px -1584px; }
1470.ic-phone_2 { background-position: -72px -1620px; }
1471.ic-phone_touch { background-position: -72px -1656px; }
1472.ic-photo { background-position: -72px -1692px; }
1473.ic-picture { background-position: -72px -1728px; }
1474.ic-pin { background-position: -72px -1764px; }
1475.ic-pin_2 { background-position: -72px -1800px; }
1476.ic-pin_map { background-position: -72px -1836px; }
1477.ic-pin_map_down { background-position: -72px -1872px; }
1478.ic-pin_map_left { background-position: -72px -1908px; }
1479.ic-pin_map_right { background-position: -72px -1944px; }
1480.ic-pin_map_top { background-position: -108px 0; }
1481.ic-pin_sq_down { background-position: -108px -36px; }
1482.ic-pin_sq_left { background-position: -108px -72px; }
1483.ic-pin_sq_right { background-position: -108px -108px; }
1484.ic-pin_sq_top { background-position: -108px -144px; }
1485.ic-playback_ff { background-position: -108px -180px; }
1486.ic-playback_next { background-position: -108px -216px; }
1487.ic-playback_pause { background-position: -108px -252px; }
1488.ic-playback_play { background-position: -108px -288px; }
1489.ic-playback_prev { background-position: -108px -324px; }
1490.ic-playback_rec { background-position: -108px -360px; }
1491.ic-playback_reload { background-position: -108px -396px; }
1492.ic-playback_rew { background-position: -108px -432px; }
1493.ic-playback_stop { background-position: -108px -468px; }
1494.ic-preso { background-position: -108px -504px; }
1495.ic-print { background-position: -108px -540px; }
1496.ic-question { background-position: -108px -576px; }
1497.ic-redo { background-position: -108px -612px; }
1498.ic-rnd_br_down { background-position: -108px -648px; }
1499.ic-rnd_br_first { background-position: -108px -684px; }
1500.ic-rnd_br_last { background-position: -108px -720px; }
1501.ic-rnd_br_next { background-position: -108px -756px; }
1502.ic-rnd_br_prev { background-position: -108px -792px; }
1503.ic-rnd_br_up { background-position: -108px -828px; }
1504.ic-round { background-position: -108px -864px; }
1505.ic-round_and_up { background-position: -108px -900px; }
1506.ic-round_arrow_left { background-position: -108px -936px; }
1507.ic-round_arrow_right { background-position: -108px -972px; }
1508.ic-round_checkmark { background-position: -108px -1008px; }
1509.ic-round_delete { background-position: -108px -1044px; }
1510.ic-round_minus { background-position: -108px -1080px; }
1511.ic-round_plus { background-position: -108px -1116px; }
1512.ic-rss { background-position: -108px -1152px; }
1513.ic-rss_sq { background-position: -108px -1188px; }
1514.ic-sand { background-position: -108px -1224px; }
1515.ic-sat_dish { background-position: -108px -1260px; }
1516.ic-save { background-position: -108px -1296px; }
1517.ic-server { background-position: -108px -1332px; }
1518.ic-share { background-position: -108px -1368px; }
1519.ic-shop_cart { background-position: -108px -1404px; }
1520.ic-sound_high { background-position: -108px -1440px; }
1521.ic-sound_low { background-position: -108px -1476px; }
1522.ic-sound_mute { background-position: -108px -1512px; }
1523.ic-spechbubble { background-position: -108px -1548px; }
1524.ic-spechbubble_2 { background-position: -108px -1584px; }
1525.ic-spechbubble_sq { background-position: -108px -1620px; }
1526.ic-spechbubble_sq_line { background-position: -108px -1656px; }
1527.ic-sq_br_down { background-position: -108px -1692px; }
1528.ic-sq_br_first { background-position: -108px -1728px; }
1529.ic-sq_br_last { background-position: -108px -1764px; }
1530.ic-sq_br_next { background-position: -108px -1800px; }
1531.ic-sq_br_prev { background-position: -108px -1836px; }
1532.ic-sq_br_up { background-position: -108px -1872px; }
1533.ic-sq_down { background-position: -108px -1908px; }
1534.ic-sq_minus { background-position: -108px -1944px; }
1535.ic-sq_next { background-position: -144px 0; }
1536.ic-sq_plus { background-position: -144px -36px; }
1537.ic-sq_prev { background-position: -144px -72px; }
1538.ic-sq_up { background-position: -144px -108px; }
1539.ic-square_shape { background-position: -144px -144px; }
1540.ic-star { background-position: -144px -180px; }
1541.ic-star_fav { background-position: -144px -216px; }
1542.ic-star_fav_empty { background-position: -144px -252px; }
1543.ic-sun { background-position: -144px -288px; }
1544.ic-tag { background-position: -144px -324px; }
1545.ic-tape { background-position: -144px -360px; }
1546.ic-target { background-position: -144px -396px; }
1547.ic-text_curstor { background-position: -144px -432px; }
1548.ic-text_letter_t { background-position: -144px -468px; }
1549.ic-top_right_expand { background-position: -144px -504px; }
1550.ic-trash { background-position: -144px -540px; }
1551.ic-twitter { background-position: -144px -576px; }
1552.ic-twitter_2 { background-position: -144px -612px; }
1553.ic-undo { background-position: -144px -648px; }
1554.ic-user { background-position: -144px -684px; }
1555.ic-users { background-position: -144px -720px; }
1556.ic-wrench { background-position: -144px -756px; }
1557.ic-wrench_plus { background-position: -144px -792px; }
1558.ic-wrench_plus_2 { background-position: -144px -828px; }
1559.ic-zoom { background-position: -144px -864px; }
1560
1561
1562/*
1563 * lib/css/legacy/sidebar.css
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301564 */div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301565}
1566
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301567div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301568 font-size: 14px;
1569 font-weight: bold;
1570 color: #555;
1571 margin-bottom: 12px;
1572}
1573
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301574div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301575 margin-bottom: 11px;
1576 overflow: hidden;
1577}
1578
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301579div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301580 font-size: 12px;
1581 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301582 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301583}
1584
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301585div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301586 margin: 7px 11px 11px 11px;
1587}
1588
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301589div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301590 margin-bottom: 7px;
1591}
1592
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301593div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301594 font-size: 11px;
1595 color: #666;
1596}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301597/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301598 * lib/css/bootstrap/headings.css
1599 *//* heading from bootstrap */
1600
1601h1,
1602h2,
1603h3,
1604h4,
1605h5,
1606h6 {
1607 margin: 0;
1608 font-weight: bold;
1609 color: #333333;
1610 text-rendering: optimizelegibility;
1611 margin-bottom: 0.3em;
1612}
1613h1 small,
1614h2 small,
1615h3 small,
1616h4 small,
1617h5 small,
1618h6 small {
1619 font-weight: normal;
1620 color: #999999;
1621}
1622h1 {
1623 font-size: 30px;
1624 line-height: 36px;
1625}
1626h1 small {
1627 font-size: 18px;
1628}
1629h2 {
1630 font-size: 24px;
1631 line-height: 36px;
1632}
1633h2 small {
1634 font-size: 18px;
1635}
1636h3 {
1637 line-height: 27px;
1638 font-size: 18px;
1639}
1640h3 small {
1641 font-size: 14px;
1642}
1643h4, h5, h6 {
1644 line-height: 18px;
1645}
1646h4 {
1647 font-size: 14px;
1648}
1649h4 small {
1650 font-size: 12px;
1651}
1652h5 {
1653 font-size: 12px;
1654}
1655h6 {
1656 font-size: 11px;
1657 color: #999999;
1658 text-transform: uppercase;
1659}
1660/*
1661 * lib/css/bootstrap/buttons.css
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301662 */.btn.danger,
1663.alert-message.danger,
1664.btn.danger:hover,
1665.alert-message.danger:hover,
1666.btn.error,
1667.alert-message.error,
1668.btn.error:hover,
1669.alert-message.error:hover,
1670.btn.success,
1671.alert-message.success,
1672.btn.success:hover,
1673.alert-message.success:hover,
1674.btn.info,
1675.alert-message.info,
1676.btn.info:hover,
1677.alert-message.info:hover {
1678 color: #ffffff;
1679}
1680.btn .close, .alert-message .close {
1681 font-family: Arial, sans-serif;
1682 line-height: 18px;
1683}
1684.btn.danger,
1685.alert-message.danger,
1686.btn.error,
1687.alert-message.error {
1688 background-color: #c43c35;
1689 background-repeat: repeat-x;
1690 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
1691 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
1692 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
1693 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
1694 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
1695 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
1696 background-image: linear-gradient(top, #ee5f5b, #c43c35);
1697 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
1698 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1699 border-color: #c43c35 #c43c35 #882a25;
1700 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1701}
1702.btn.success, .alert-message.success {
1703 background-color: #57a957;
1704 background-repeat: repeat-x;
1705 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
1706 background-image: -moz-linear-gradient(top, #62c462, #57a957);
1707 background-image: -ms-linear-gradient(top, #62c462, #57a957);
1708 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
1709 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
1710 background-image: -o-linear-gradient(top, #62c462, #57a957);
1711 background-image: linear-gradient(top, #62c462, #57a957);
1712 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
1713 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1714 border-color: #57a957 #57a957 #3d773d;
1715 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1716}
1717.btn.info, .alert-message.info {
1718 background-color: #339bb9;
1719 background-repeat: repeat-x;
1720 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
1721 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
1722 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
1723 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
1724 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
1725 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
1726 background-image: linear-gradient(top, #5bc0de, #339bb9);
1727 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
1728 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1729 border-color: #339bb9 #339bb9 #22697d;
1730 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1731}
1732.btn {
1733 cursor: pointer;
1734 display: inline-block;
1735 background-color: #e6e6e6;
1736 background-repeat: no-repeat;
1737 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1738 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1739 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1740 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1741 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1742 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1743 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
1744 padding: 5px 14px 6px;
1745 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1746 color: #333;
1747 font-size: 11px;
1748 line-height: normal;
1749 border: 1px solid #ccc;
1750 border-bottom-color: #bbb;
1751 -webkit-border-radius: 4px;
1752 -moz-border-radius: 4px;
1753 border-radius: 4px;
1754 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1755 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1756 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1757 -webkit-transition: 0.1s linear all;
1758 -moz-transition: 0.1s linear all;
1759 -ms-transition: 0.1s linear all;
1760 -o-transition: 0.1s linear all;
1761 transition: 0.1s linear all;
1762}
1763.btn:hover {
1764 background-position: 0 -15px;
1765 color: #333;
1766 text-decoration: none;
1767}
1768.btn:focus {
1769 outline: 1px dotted #666;
1770}
1771.btn.primary {
1772 color: #ffffff;
1773 background-color: #0064cd;
1774 background-repeat: repeat-x;
1775 background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
1776 background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
1777 background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
1778 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
1779 background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
1780 background-image: -o-linear-gradient(top, #049cdb, #0064cd);
1781 background-image: linear-gradient(top, #049cdb, #0064cd);
1782 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
1783 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1784 border-color: #0064cd #0064cd #003f81;
1785 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1786}
1787.btn.active, .btn :active {
1788 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1789 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1790 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1791}
1792.btn.disabled {
1793 cursor: default;
1794 background-image: none;
1795 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1796 filter: alpha(opacity=65);
1797 -khtml-opacity: 0.65;
1798 -moz-opacity: 0.65;
1799 opacity: 0.65;
1800 -webkit-box-shadow: none;
1801 -moz-box-shadow: none;
1802 box-shadow: none;
1803}
1804.btn[disabled] {
1805 cursor: default;
1806 background-image: none;
1807 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1808 filter: alpha(opacity=65);
1809 -khtml-opacity: 0.65;
1810 -moz-opacity: 0.65;
1811 opacity: 0.65;
1812 -webkit-box-shadow: none;
1813 -moz-box-shadow: none;
1814 box-shadow: none;
1815}
1816.btn.large {
1817 font-size: 15px;
1818 line-height: normal;
1819 padding: 9px 14px 9px;
1820 -webkit-border-radius: 6px;
1821 -moz-border-radius: 6px;
1822 border-radius: 6px;
1823}
1824.btn.small {
1825 padding: 5px 7px 5px;
1826 font-size: 11px;
1827}
1828:root .alert-message, :root .btn {
1829 border-radius: 0 \0;
1830}
1831button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1832 padding: 0;
1833 border: 0;
1834}
1835
1836/* CLose */
1837
1838.close {
1839 float: right;
1840 color: #000000;
1841 font-size: 15px;
1842 font-weight: bold;
1843 line-height: 13.5px;
1844 margin-bottom: -2px;
1845 text-shadow: 0 1px 0 #ffffff;
1846 filter: alpha(opacity=25);
1847 -khtml-opacity: 0.25;
1848 -moz-opacity: 0.25;
1849 opacity: 0.25;
1850 text-decoration: none;
1851}
1852.close:hover {
1853 color: #000000;
1854 text-decoration: none;
1855 filter: alpha(opacity=40);
1856 -khtml-opacity: 0.4;
1857 -moz-opacity: 0.4;
1858 opacity: 0.4;
1859 cursor: pointer;
1860 font-weight: bold;
1861}
1862/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301863 * lib/css/bootstrap/navbar.css
1864 */.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301865 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301866 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301867}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301868.navbar-inner {
1869 padding-left: 20px;
1870 padding-right: 20px;
1871 background-color: #2c2c2c;
1872 background-image: -moz-linear-gradient(top, #333333, #222222);
1873 background-image: -ms-linear-gradient(top, #333333, #222222);
1874 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1875 background-image: -webkit-linear-gradient(top, #333333, #222222);
1876 background-image: -o-linear-gradient(top, #333333, #222222);
1877 background-image: linear-gradient(top, #333333, #222222);
1878 background-repeat: repeat-x;
1879 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1880 -webkit-border-radius: 4px;
1881 -moz-border-radius: 4px;
1882 border-radius: 4px;
1883 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1884 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1885 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1886}
1887.btn-navbar {
1888 display: none;
1889 float: right;
1890 padding: 7px 10px;
1891 margin-left: 5px;
1892 margin-right: 5px;
1893 background-color: #2c2c2c;
1894 background-image: -moz-linear-gradient(top, #333333, #222222);
1895 background-image: -ms-linear-gradient(top, #333333, #222222);
1896 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1897 background-image: -webkit-linear-gradient(top, #333333, #222222);
1898 background-image: -o-linear-gradient(top, #333333, #222222);
1899 background-image: linear-gradient(top, #333333, #222222);
1900 background-repeat: repeat-x;
1901 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1902 border-color: #222222 #222222 #000000;
1903 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1904 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1905 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1906 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1907 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1908}
1909.btn-navbar:hover,
1910.btn-navbar:active,
1911.btn-navbar.active,
1912.btn-navbar.disabled,
1913.btn-navbar[disabled] {
1914 background-color: #222222;
1915}
1916.btn-navbar:active, .btn-navbar.active {
1917 background-color: #080808 \9;
1918}
1919.btn-navbar .icon-bar {
1920 display: block;
1921 width: 18px;
1922 height: 2px;
1923 background-color: #f5f5f5;
1924 -webkit-border-radius: 1px;
1925 -moz-border-radius: 1px;
1926 border-radius: 1px;
1927 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1928 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1929 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1930}
1931.btn-navbar .icon-bar + .icon-bar {
1932 margin-top: 3px;
1933}
1934.nav-collapse.collapse {
1935 height: auto;
1936}
1937.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301938 text-decoration: none;
1939}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301940.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301941 float: left;
1942 display: block;
1943 padding: 8px 20px 12px;
1944 margin-left: -20px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301945 font-size: 20px;
1946 font-weight: 200;
1947 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301948 color: #ffffff;
1949}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301950.navbar .navbar-text {
1951 margin-bottom: 0;
1952 line-height: 40px;
1953 color: #999999;
1954}
1955.navbar .navbar-text a:hover {
1956 color: #ffffff;
1957 background-color: transparent;
1958}
1959.navbar .btn, .navbar .btn-group {
1960 margin-top: 5px;
1961}
1962.navbar .btn-group .btn {
1963 margin-top: 0;
1964}
1965.navbar-form {
1966 margin-bottom: 0;
1967 *zoom: 1;
1968}
1969.navbar-form:before, .navbar-form:after {
1970 display: table;
1971 content: "";
1972}
1973.navbar-form:after {
1974 clear: both;
1975}
1976.navbar-form input, .navbar-form select {
1977 display: inline-block;
1978 margin-top: 5px;
1979 margin-bottom: 0;
1980}
1981.navbar-form .radio, .navbar-form .checkbox {
1982 margin-top: 5px;
1983}
1984.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1985 margin-top: 3px;
1986}
1987.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301988 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301989 float: left;
1990 margin-top: 6px;
1991 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301992}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301993.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301994 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301995 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1996 font-size: 13px;
1997 font-weight: normal;
1998 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301999 color: #ffffff;
2000 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302001 background: #666;
2002 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302003 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302004 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2005 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2006 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 +05302007 -webkit-transition: none;
2008 -moz-transition: none;
2009 -ms-transition: none;
2010 -o-transition: none;
2011 transition: none;
2012}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302013.navbar-search .search-query :-moz-placeholder {
2014 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302015}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302016.navbar-search .search-query::-webkit-input-placeholder {
2017 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302018}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302019.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302020 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302021 background-color: #999999;
2022 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302023}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302024.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302025 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302026 color: #333333;
2027 text-shadow: 0 1px 0 #ffffff;
2028 background-color: #ffffff;
2029 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302030 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2031 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2032 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302033 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302034}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302035.navbar-fixed-top {
2036 position: fixed;
2037 top: 0;
2038 right: 0;
2039 left: 0;
2040 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302041}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302042.navbar-fixed-top .navbar-inner {
2043 padding-left: 0;
2044 padding-right: 0;
2045 -webkit-border-radius: 0;
2046 -moz-border-radius: 0;
2047 border-radius: 0;
2048}
2049.navbar .nav {
2050 position: relative;
2051 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302052 display: block;
2053 float: left;
2054 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302055}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302056.navbar .nav.pull-right {
2057 float: right;
2058}
2059.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302060 display: block;
2061 float: left;
2062}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302063.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302064 float: none;
2065 padding: 10px 10px 11px;
2066 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302067 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302068 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302069 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302070}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302071.navbar .nav > li > a:hover {
2072 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302073 color: #ffffff;
2074 text-decoration: none;
2075}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302076.navbar .nav .active > a, .navbar .nav .active > a:hover {
2077 color: #ffffff;
2078 text-decoration: none;
2079 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302080 background-color: rgba(0, 0, 0, 0.5);
2081}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302082.navbar .divider-vertical {
2083 height: 40px;
2084 width: 1px;
2085 margin: 0 9px;
2086 overflow: hidden;
2087 background-color: #222222;
2088 border-right: 1px solid #333333;
2089}
2090.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302091 margin-left: 10px;
2092 margin-right: 0;
2093}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302094.navbar .dropdown-menu {
2095 margin-top: 1px;
2096 -webkit-border-radius: 4px;
2097 -moz-border-radius: 4px;
2098 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302099}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302100.navbar .dropdown-menu:before {
2101 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302102 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302103 border-left: 7px solid transparent;
2104 border-right: 7px solid transparent;
2105 border-bottom: 7px solid #ccc;
2106 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302107 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302108 top: -7px;
2109 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302110}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302111.navbar .dropdown-menu:after {
2112 content: '';
2113 display: inline-block;
2114 border-left: 6px solid transparent;
2115 border-right: 6px solid transparent;
2116 border-bottom: 6px solid #ffffff;
2117 position: absolute;
2118 top: -6px;
2119 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302120}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302121.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2122 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302123}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302124.navbar .nav .active .caret {
2125 opacity: 1;
2126 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302127}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302128.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2129 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302130}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302131.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302132 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302133}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302134.navbar .nav.pull-right .dropdown-menu {
2135 left: auto;
2136 right: 0;
2137}
2138.navbar .nav.pull-right .dropdown-menu:before {
2139 left: auto;
2140 right: 12px;
2141}
2142.navbar .nav.pull-right .dropdown-menu:after {
2143 left: auto;
2144 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302145}
2146
2147/*extra size menus for recent*/
2148.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2149 width: 260px !important;
2150 max-width: 260px !important;
2151}
2152
2153/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302154.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302155 display: block;
2156 float: right;
2157 width: 20px;
2158 margin-bottom: -5px;
2159 margin-top: 10px;
2160 visibility: hidden;
2161}
2162
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302163.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302164 padding: 0px 20px;
2165}
2166/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302167 * lib/css/bootstrap/dropdown.css
2168 */.dropdown {
2169 position: relative;
2170}
2171.dropdown-toggle {
2172 *margin-bottom: -3px;
2173}
2174.dropdown-toggle:active, .open .dropdown-toggle {
2175 outline: 0;
2176}
2177.caret {
2178 display: inline-block;
2179 width: 0;
2180 height: 0;
2181 text-indent: -99999px;
2182 *text-indent: 0;
2183 vertical-align: top;
2184 border-left: 4px solid transparent;
2185 border-right: 4px solid transparent;
2186 border-top: 4px solid #000000;
2187 opacity: 0.3;
2188 filter: alpha(opacity=30);
2189 content: "\2193";
2190}
2191.dropdown .caret {
2192 margin-top: 8px;
2193 margin-left: 2px;
2194}
2195.dropdown:hover .caret, .open.dropdown .caret {
2196 opacity: 1;
2197 filter: alpha(opacity=100);
2198}
2199.dropdown-menu {
2200 position: absolute;
2201 top: 100%;
2202 left: 0;
2203 z-index: 1000;
2204 float: left;
2205 display: none;
2206 min-width: 160px;
2207 max-width: 220px;
2208 _width: 160px;
2209 padding: 4px 0;
2210 margin: 0;
2211 list-style: none;
2212 background-color: #ffffff;
2213 border-color: #ccc;
2214 border-color: rgba(0, 0, 0, 0.2);
2215 border-style: solid;
2216 border-width: 1px;
2217 -webkit-border-radius: 0 0 5px 5px;
2218 -moz-border-radius: 0 0 5px 5px;
2219 border-radius: 0 0 5px 5px;
2220 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2221 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2222 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2223 -webkit-background-clip: padding-box;
2224 -moz-background-clip: padding;
2225 background-clip: padding-box;
2226 *border-right-width: 2px;
2227 *border-bottom-width: 2px;
2228}
2229.dropdown-menu.bottom-up {
2230 top: auto;
2231 bottom: 100%;
2232 margin-bottom: 2px;
2233}
2234.dropdown-menu .divider {
2235 height: 1px;
2236 margin: 5px 1px;
2237 overflow: hidden;
2238 background-color: #e5e5e5;
2239 border-bottom: 1px solid #ffffff;
2240 *width: 100%;
2241 *margin: -5px 0 5px;
2242}
2243.dropdown-menu a {
2244 display: block;
2245 padding: 3px 15px;
2246 clear: both;
2247 font-weight: normal;
2248 line-height: 18px;
2249 color: #555555;
2250 white-space: nowrap;
2251}
2252.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2253 color: #ffffff;
2254 text-decoration: none;
2255 background-color: #0088cc;
2256}
2257.dropdown.open {
2258 *z-index: 1000;
2259}
2260.dropdown.open .dropdown-toggle {
2261 color: #ffffff;
2262 background: #ccc;
2263 background: rgba(0, 0, 0, 0.3);
2264}
2265.dropdown.open .dropdown-menu {
2266 display: block;
2267}
2268/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302269 * erpnext/startup/startup.css
2270 */h1, h2, h3, h4, h5 {
2271 font-family: Tahoma, Arial, Verdana, sans-serif;
2272 font-weight: bold;
2273}
2274
2275body {
2276 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
2277 font-size: 12px;
2278}
2279
2280span, div, td, input, textarea, button, select {
2281 font-family: inherit;
2282}
2283
2284body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302285}
2286
2287.erpnext-footer {
2288 margin: 3px auto;
2289 color: #888;
2290 text-align: center;
2291}
2292
2293.erpnext-footer a, .erpnext-footer a:hover, .erpnext-footer a:visited {
2294 color: #666;
2295}
2296
2297.module-icons {
2298 background: url(../images/module-icons.png) no-repeat top left;
2299 width:16px;
2300 height:16px;
2301}
2302
2303.module-icons-accounts{ background-position: 0 0; }
2304.module-icons-analysis{ background-position: 0 -66px; }
2305.module-icons-buying{ background-position: 0 -132px; }
2306.module-icons-home{ background-position: 0 -198px; }
2307.module-icons-hr{ background-position: 0 -264px; }
2308.module-icons-people{ background-position: 0 -330px; }
2309.module-icons-production{ background-position: 0 -396px; }
2310.module-icons-projects{ background-position: 0 -462px; }
2311.module-icons-selling{ background-position: 0 -528px; }
2312.module-icons-setup{ background-position: 0 -594px; }
2313.module-icons-stock{ background-position: 0 -660px; }
2314.module-icons-support{ background-position: 0 -726px; }