blob: 367404c54ae1d630924bec1b15039727a50a7288 [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
3 * lib/css/legacy/body.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5html {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05306 margin: 0px;
7 padding: 0px;
8}
9
10body {
11 margin: 0px;
12 padding: 0px;
13 font-family: Arial, Helvetica, Sans;
14 font-size: 12px;
15 color: #000;
Rushabh Mehta3f29b852012-02-20 15:40:29 +053016 background-color: #e2e2e2;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053017}
18
Rushabh Mehtaafaac602012-02-14 11:44:13 +053019pre { margin: 0px; padding: 0px; }
20
21button { margin: 2px; margin-left: 0px; }
22
23label {
24 padding-top: 15px;
25 color: #404040;
26}
27
28select, input, textarea {
29 border: 1px solid #AAA;
30 -moz-border-radius: 4px;
31 -webkit-border-radius: 4px;
32 font-size: 13px;
33 padding: 4px;
34 color: #222;
35}
36
37textarea {
38 font-family: inherit;
39 height: 120px;
40 width: 90%;
41 font-size: 12px;
42 white-space: normal;
43}
44
45table { padding: 0px; border-collapse: 'collapse'}
46
47td {
48 padding:0px;
49 margin: 0px;
50 vertical-align: top;
51}
52
53p {
54 margin: 0px 0px 9px 0px;
55 line-height: 1.5em;
56}
57
58li {
59 line-height: 1.5em;
60}
61
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053062hr {
63 margin: 18px 0;
64 border: 0;
65 border-top: 1px solid #e5e5e5;
66 border-bottom: 1px solid #ffffff;
67}
68
Rushabh Mehtad0251332012-02-21 17:26:50 +053069/* links */
70
Rushabh Mehtaafaac602012-02-14 11:44:13 +053071a:active { outline:none; }
72
Rushabh Mehtad0251332012-02-21 17:26:50 +053073a {
74 color: #0088cc;
75 text-decoration: none;
76}
77a:hover {
78 color: #005580;
79 text-decoration: underline;
80}
81
82.link_type {
83 padding:2px;
84 color: #0088cc;
85 cursor: pointer;
86}
87
88.link_type:hover {
89 color: #005580;
90 text-decoration: underline;
91}
92
Rushabh Mehtaafaac602012-02-14 11:44:13 +053093:focus { -moz-outline-style:none; }
94
95table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
96table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
97
98div.fix_ff_cursor { overflow: auto; }
99
100/* --- Layout --- */
101
102div.comment { color: #444; }
103
104div#body_div {
105 position: relative;
106 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530107 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530108 width: 900px;
109 margin: auto;
110 margin-top: 56px;
111}
112
113footer {
114 width: 900px;
115 margin: auto;
116}
117header .container {
118 width: 900px;
119 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530120}
121
122div.no_script {
123 display: none;
124}
125
126div.loading_div {
127 position: absolute;
128 background-color: #FFFFCC;
129 z-index: 1999;
130 right: 5px;
131 width: 90px;
132 display: none;
133 text-align: center;
134 padding: 2px;
135 font-size: 12px;
136 border: 1px solid #FF4;
137}
138
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530139div.std-footer {
140 margin: 13px 0px;
141 border-top: 1px solid #AAA;
142 padding: 13px;
143}
144
145div.std-footer-item {
146 margin: 0px 13px 13px 0px;
147}
148
149.shadow {
150 -moz-box-shadow: 0px 2px 2px #888;
151 -webkit-box-shadow: 0px 2px 2px #888;
152 box-shadow: 0px 2px 2px #888;
153}
154
155.round {
156 -webkit-border-radius: 5px;
157 -moz-border-radius: 5px;
158 border-radius: 5px;
159}
160.gradient {
161 background: #ededed; /* Old browsers */
162 background: -moz-linear-gradient(top, #ededed 0%, #d1d1d1 47%, #b7b7b7 100%); /* FF3.6+ */
163 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(47%,#d1d1d1), color-stop(100%,#b7b7b7)); /* Chrome,Safari4+ */
164 background: -webkit-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Chrome10+,Safari5.1+ */
165 background: -o-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Opera11.10+ */
166 background: -ms-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* IE10+ */
167 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#b7b7b7',GradientType=0 ); /* IE6-9 */
168 background: linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* W3C */
169}
170
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530171.layout_wrapper, .layout-wrapper {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530172 -moz-box-shadow: 1px 1px 8px #555;
173 -webkit-box-shadow: 1px 1px 8px #555;
174 box-shadow: 1px 1px 8px #555;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530175 background-color: #fff;
176 padding: 15px;
177}
178
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530179.layout-wrapper-background {
180 background-color: #f2f2f2 !important;
181 padding: 0px;
182}
183
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530184.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530185 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530186 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530187 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530188 background-color: #FFF;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530189 min-height: 450px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530190 -moz-box-shadow: 7px 0px 6px -2px #ddd;
191 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
192 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530193}
194
195.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530196 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530197 /*float: right;*/
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530198 color: #606060;
199 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530200 padding: 15px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530201 min-height: 450px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530202}
203
204/* from bootstrap */
205.container {
206 margin-left: auto;
207 margin-right: auto;
208 zoom: 1;
209}
210.container:before, .container:after {
211 display: table;
212 content: "";
213 zoom: 1;
214}
215.container:after {
216 clear: both;
217}
218
Anand Doshi40ee8d62012-02-24 19:21:47 +0530219.well {
220 min-height: 20px;
221 padding: 19px;
222 margin-bottom: 20px;
223 background-color: #f5f5f5;
224 border: 1px solid #eee;
225 border: 1px solid rgba(0, 0, 0, 0.05);
226 -webkit-border-radius: 4px;
227 -moz-border-radius: 4px;
228 border-radius: 4px;
229 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
230 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
231 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
232}
233
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530234.avatar-small {
235 display: inline-block;
236 min-width: 29px;
237}
238.avatar-small img {
239 height: 24px;
240 margin-bottom: -7px;
241 max-width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530242}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530243
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530244/*
245 * lib/css/legacy/messages.css
246 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530247
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530248/* FLOATING MESSAGE */
249
250.btn-img { cursor: pointer; }
251
252div.fetching { color: #888; text-align:right; }
253
254div.notice {
255 postion: absolute;
256 background-color: #000;
257 -moz-border-radius: 5px; -webkit-border-radius: 5px;
258 opacity: 0.6;
259 right: 0;
260 top: 0;
261 margin-top: 8px;
262 z-index: -1;
263 padding: 8px;
264}
265
266/** help **/
267
268.info-box {
269 background-color: #F8F8F8;
270 border: 1px solid #CCCCCC;
271 border-radius: 3px 3px 3px 3px;
272 line-height: 1.6em;
273 overflow: auto;
274 padding: 6px 10px;
275 margin-bottom: 9px;
276}
277
278.help_box, .help-box {
279 background-color:#FFC;
280 font-size: 13px;
281 color: #864;
282 padding: 7px;
283 margin: 11px 0px;
284 border: 1px solid #EEB;
285}
286
287.help_box_big {
288 background-color:#FFC;
289 color: #864;
290 padding: 7px;
291 margin: 7px 0px;
292 border: 1px solid #EEB;
293 text-align: center;
294 font-size: 14px;
295}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530296
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530297/*
298 * lib/css/legacy/forms.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530299 */
300/* FORMS */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530301
302
303div.frm_print_wrapper {
304 background-color:#FFF;
305 border:1px solid #444;
306 padding: 40px;
307
308 box-shadow:1px 1px 8px #229;
309 -moz-box-shadow: 1px 1px 8px #229;
310 -webkit-box-shadow: 1px 1px 8px #229;
311}
312
313div.page_break {
314 margin: 24px 0px;
315 border-top: 1px dashed #888;
316}
317
318div.grid_tbarlinks {
319 border-bottom: 0px;
320 background-color: #CCC;
321 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530322 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530323 float: right;
324
325 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
326 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
327}
328
329
330div.frm_tip_box {
331 margin: 0px;
332 padding: 8px;
333 background-color: #FFC;
334 display: none;
335 font-size: 11px;
336 border: 1px solid #FFB;
337}
338
339div.frm_tip_box table {
340 border-collapse: collapse;
341 vertical-align: top;
342}
343
344td.frm_tray_area {
345 width: 122px;
346}
347
348div.dialog_frm {
349 position: relative;
350 margin: 10px;
351}
352
353
354
355/*------------------*/
356
357.top_cell {
358 height: 50px;
359}
360
361div.attach_area {
362 padding: 8px;
363 margin: 8px;
364 background-color: #EEE;
365}
366
367div.attach_area table {
368 width: 100%;
369}
370
371.tablabel_normal {
372 margin: 0 4px 0 0;
373 padding: 3px 5px;
374 line-height: 1.3em;
375 display: inline;
376 cursor: pointer;
377}
378
379.tablabel_selected {
380 margin: 0 4px 0 0;
381 padding: 3px 5px;
382 line-height: 1.3em;
383 font-weight: bold;
384 display: inline;
385 cursor: pointer;
386 color: #000;
387}
388
389.scrollhead_wrapper {
390 position: absolute;
391 z-index: 1;
392 height: 30px;
393}
394
395.treeimg {
396 cursor: pointer;
397 margin-right: 3px;
398}
399
400
401.sectionCell {
402 padding: 5px;
403 vertical-align: top;
404}
405
406.code_area {
407 width: 80%;
408 margin: 8px;
409 padding: 4px;
410 background-color: #F8F8F8;
411 border: 1px solid #CCC;
412 overflow-x: auto;
413}
414
415.code_text {
416 width: 100%;
417 height: 360px;
418 margin-top: 3px;
419 font-family: Courier, Fixed;
420 font-size: 12px;
421}
422
423div.time_field select{
424 display: inline;
425 margin: 2px;
426 width: 45px;
427}
428
429/* Documents */
430
431.frm_field_table {
432 width: 100%;
433 border-collapse: collapse;
434}
435
436.datalabelcell {
437 padding: 2px 0px;
438 width: 160px;
439 vertical-align: top;
440}
441.datainputcell { padding: 2px 0px; }
442
443
444.field_description, .help {
445 margin: 3px 0px 11px 0px;
446 color: #888;
447 font-style: italic;
448}
449
450.field_description_top {
451 margin-bottom: 3px;
452}
453
454.field_label {
455 font-size:11px;
456}
457.input_area input, select, textarea {
458 font-size: 14px;
459 padding: 2px;
460}
461
462.input_area input {
463 width: 80%;
464 margin: 0px;
465}
466.input_area select {
467 width: 80%;
468}
469.input_area textarea {
470 width: 90%;
471}
472
473.disp_area {
474 width: 80%;
475 padding: 2px 0px;
476 font-size: 12px;
477}
478.disp_area_no_val {
479 height: 14px;
480}
481
482.no_img {
483 padding: 40px;
484 width: 100px;
485 height: 20px;
486 color: #888;
487 text-align: center;
488 border: 1px solid #AAA;
489}
490
491.input-mandatory {
492 font-size: 14px !important;
493 font-weight: bold;
494}
495
496.field-to-update {
497 background-color:#FEE;
498}
499
500/* sidebar */
501
502div.sidebar-comment-wrapper input {
503 width: 50%;
504}
505div.sidebar-comment-message {
506 margin-top: 8px;
507 font-size: 11px;
508 color: #777;
509}
510
511div.sidebar-comment-text {
512 font-size: 12px;
513 font-weight: bold;
514 margin-top: 8px;
515 color: #444;
516}
517div.sidebar-comment-info {
518 font-size: 10px;
519 color: #777;
520}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530521
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530522/*
523 * lib/css/legacy/grid.css
524 */
525
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530526
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530527/* Grid */
528
529
530/* --- Simple --- */
531.grid_wrapper_simple {
532 width: 100%;
533 margin-bottom: 8px;
534 border: 1px solid #AA9;
535}
536
537.grid_head_wrapper_simple {
538 padding: 0px;
539 border-bottom: 2px solid #AAA;
540}
541
542.grid_head_wrapper_simple td {
543 border-right: 1px solid #AA9;
544}
545
546.grid_head_wrapper_simple td div {
547 padding: 2px;
548}
549
550.grid_tab_wrapper_simple {
551}
552
553.grid_cell_simple {
554 padding: 2px;
555 background-color: #fff;
556 border-right: 1px solid #AA9;
557}
558
559
560/* --- Normal --- */
561.grid_wrapper {
562 position: relative;
563 overflow: auto;
564 border: 1px solid #AAA;
565 width: 100%;
566 margin-bottom: 8px;
567 background-color: #fff;
568}
569
570.grid_tab_wrapper {
571 position: absolute;
572 top: 40px;
573 border-bottom: 1px solid #DDD;
574}
575
576.grid_table, .grid_head_table {
577 table-layout: fixed;
578 border-collapse: collapse;
579 /*width: 100%;*/
580}
581
582.grid_cell {
583 border-right: 1px solid #ddd;
584 padding: 0px;
585 background-color: #fff;
586}
587
588.grid_head_wrapper {
589 position: absolute;
590 z-index: 1;
591 height: 40px;
592 padding: 0px;
593 overflow: hidden;
594 /*background-color: #fff;*/
595}
596
597.grid_head_table td {
598 background-color: #EEE;
599 border-right: 1px solid #AAA;
600 border-bottom: 1px solid #AAA;
601 height: 40px;
602 padding: 0px;
603}
604
605.grid_head_table td div {
606 color: #222;
607 font-weight: bold;
608 overflow: hidden;
609 padding: 2px 0px;
610 text-align: center;
611}
612
613.grid_selector {
614 padding: 1px;
615 border-right: 1px solid #DDD;
616 width: 20px;
617 background-color: #fff;
618}
619
620.grid_cell_div {
621 padding: 2px;
622 cursor: pointer;
623 overflow: hidden;
624 border: 2px solid #FFF;
625}
626
627.grid_cell_div_selected {
628 border: 2px solid #88f;
629}
630
631.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
632 margin: 0px;
633 border: 0px;
634 width: 100%;
635 margin: 0px;
636 }
637
638.grid_cell_div textarea {
639 border: 3px solid #abf;
640 height:200px;
641 width: 300px;
642 z-index: 10;
643 position:absolute;
644}
645
646.gridDivSelected option { border: 0px; }
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530647
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530648/*
649 * lib/css/legacy/listing.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530650 */
651/* listing 2.0 */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530652
653div.listing-more {
654 margin: 7px 0px 17px 0px;
655 text-align: center;
656 display: none;
657}
658
659div.listing-toolbar {
660 margin: 7px 0px;
661}
662
663/* SRS */
664
665table.srs_result_tab {
666 border: 2px solid #AAA;
667 border-collapse: collapse;
668}
669
670/* firefox bug fix for disappering borders */
671table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
672 position: static;
673}
674
675table.srs_result_tab td {
676 padding: 3px 2px;
677 position: static;
678}
679
680div.srs_body_area {
681}
682
683div.srs_results_area {
684}
685
686div.srs_filter_wrapper {
687 border: 1px solid #CCF;
688
689 background-color: #EEF;
690 margin:0px 0px 8px 0px;
691
692 -moz-border-radius: 5px;
693 -webkit-border-radius: 5px;
694 border-radius: 5px;
695}
696
697div.srs_filter_area {
698 padding: 8px;
699}
700
701div.srs_filter_area td {
702 vertical-align: middle;
703}
704
705
706
707
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530708
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530709/*
710 * lib/css/legacy/report.css
711 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530712
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530713/* Reports */
714
715div.report_grid_area {
716 position: relative;
717 padding: 8px;
718}
719
720
721div.report_tab {
722 border: 1px solid #AAA;
723 position: relative;
724 overflow: auto;
725}
726
727div.report_no_data {
728 padding: 8px;
729 background-color: #EEE;
730 border: 1px solid #DDD;
731 position: absolute;
732 margin-left: 40%;
733 margin-top: 50px;
734 display: none;
735}
736
737div.report_htitle {
738 float: left;
739 padding: 2px;
740 font-size: 14px;
741 font-weight: bold;
742 margin-left: 4px;
743 color: #665;
744 /*font-weight: bold;*/
745}
746
747div.report_tbar {
748 background-color: #EEF;
749 border: 1px solid #CCF;
750 border-bottom: 0px;
751 height: 28px;
752}
753
754div.report_tbar table{
755 width: 100%;
756}
757div.report_tbar table td {
758
759}
760div.report_tbar table td div {
761 position: relative;
762}
763div.report_tbar button, div.report_tbar select, div.report_tbar img {
764 font-size: 11px;
765 margin: 0px;
766}
767
768div.report_head_wrapper {
769 position: absolute;
770 height: 24px;
771 top: 0px;
772 z-index: 1;
773}
774
775div.report_tab_wrapper {
776 position: absolute;
777 border-bottom: 1px solid #AAA;
778 border-top: 1px solid #AAA;
779}
780
781div.report_tab_wrapper table, div.report_head_wrapper table {
782 table-layout: fixed;
783 border-collapse: collapse;
784 /*width: 100%;*/
785}
786
787div.report_tab_wrapper table td, div.report_head_wrapper table td {
788 border-left: 1px solid #AAA;
789 border-right: 1px solid #AAA;
790 border-bottom: 1px solid #AAA;
791 overflow: hidden;
792 padding: 0px;
793}
794
795div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
796 padding: 3px;
797 overflow: hidden;
798}
799
800.report_head_cell {
801 background-color: #EEE;
802 border-bottom: 1px solid #AA9;
803 text-align: center;
804 font-weight: bold;
805}
806.report_head_cell div {
807 color:#222;
808 height: 18px;
809}
810
811
812/* FINDER */
813
814div.finder_wrapper {
815}
816
817div.finder_body_area {
818 margin: 16px;
819}
820
821div.finder_body {
822 display: none;
823}
824
825div.finder_advanced_area table {
826 width: 80%;
827}
828
829div.finder_advanced_area textarea {
830 width: 80%;
831}
832
833div.finder_filter_area {
834 position: relative;
835}
836
837div.filter_head {
838 font-size: 14px;
839 margin-bottom: 2px;
840}
841div.filter_dt_head {
842 font-size: 14px;
843 font-weight: bold;
844 margin-bottom: 2px;
845}
846table.filter_tab {
847 width: 96%;
848 border-collapse: collapse;
849}
850
851table.filter_tab td {
852 width: 50%;
853}
854
855div.finder_picker_area {
856
857}
858div.builder_field {
859 margin: 0px;
860}
861div.builder_dt_head {
862 font-size: 14px;
863 font-weight: bold;
864 margin-bottom: 2px;
865}
866
867div.builder_field table {
868 width: 90%;
869 border-collapse: collapse;
870}
871
872div.builder_label {
873 height: 20px;
874}
875
876div.builder_head {
877 font-size: 16px;
878 font-weight: bold;
879 color: #AB6;
880}
881
882table.builder_tab {
883 width: 96%;
884 border-collapse: collapse;
885}
886
887table.builder_tab td {
888 width: 33%;
889 padding: 2px;
890}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530891
892/*
893 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530894 */
895/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530896
897div.dialog_wrapper {
898 position: absolute;
899 width: 440px;
900 display: none;
901 z-index: 90;
902 background-color: #FFF;
903 border: 3px solid #222;
904 box-shadow:1px 1px 5px #777;
905 -moz-box-shadow: 1px 1px 5px #777;
906 -webkit-box-shadow: 1px 1px 5px #777;
907
908 border-radius: 5px;
909 -moz-border-radius: 5px;
910 -webkit-border-radius: 5px;
911}
912
913div.dialog_head {
914 height: 22px;
915 padding: 4px;
916 background-color: #222;
917 color: #FFF;
918}
919
920div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530921 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530922 border-radius: 5px;
923 -moz-border-radius: 5px;
924 -webkit-border-radius: 5px;
925}
926
927div.dialog_back {
928 position: fixed;
929 display: none;
930 top: 0px;
931 left: 0px;
932 bottom: 0px;
933 right: 0px;
934 background-color: #EEE;
935 opacity: 0.6;
936 z-index: 50;
937 text-align: center;
938}
939
940div.dialog_message {
941 display: none;
942 position: absolute;
943 width: 250px;
944 font-size: 12px;
945 z-index: 91;
946 background-color:#FFF;
947 padding: 12px;
948 border: 1px solid #444;
949}
950
951div.dialog_row {
952 padding: 8px 8px 0px 8px;
953}
954
955div.dialog_row table {
956 width: 100%;
957}
958
959div.dialog_row table td {
960}
961
962div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
963 width: 80%;
964 font-size: 14px;
965}
966
967div.dialog_row table td textarea {
968 width: 80%;
969 height: 200px;
970 font-size: 12px;
971}
972
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530973
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530974/*
975 * lib/css/legacy/tabs.css
976 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530977
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530978/******* TABS ********/
979
980div.box_label_wrapper {
981 border-bottom: 6px solid #777;
982}
983
984div.box_label_body {
985 height: 22px;
986}
987
988ul.box_tabs {
989 margin: 0px;
990 padding: 0px;
991 list-style: none;
992}
993
994ul.box_tabs li {
995 height: 22px;
996 float:left;
997 font-size: 12px;
998 text-decoration: underline;
999
1000 background-color: #DDD;
1001
1002 margin:0;
1003 margin-left: 4px;
1004 padding:0 0 0 9px;
1005 cursor: pointer;
1006}
1007
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301008ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301009 display:block;
1010 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301011 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301012}
1013
1014ul.box_tabs li.box_tab_mouseover {
1015 background-color: #BBB;
1016}
1017
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301018ul.box_tabs li.box_tab_selected {
1019 background-color: #777;
1020
1021 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1022 background: -moz-linear-gradient(top, #999, #777);
1023
1024 color: #FFF;
1025 font-weight:bold;
1026
1027}
1028ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301029 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301030}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301031
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301032/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301033 * lib/css/legacy/sidebar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301034 */
1035div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301036}
1037
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301038div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301039 font-size: 14px;
1040 font-weight: bold;
1041 color: #555;
1042 margin-bottom: 12px;
1043}
1044
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301045div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301046 margin-bottom: 11px;
1047 overflow: hidden;
1048}
1049
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301050div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301051 font-size: 12px;
1052 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301053 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301054}
1055
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301056div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301057 margin: 7px 11px 11px 11px;
1058}
1059
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301060div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301061 margin-bottom: 7px;
1062}
1063
Rushabh Mehtad0251332012-02-21 17:26:50 +05301064div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301065 font-size: 11px;
1066 color: #666;
1067}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301068
1069/*
1070 * lib/css/Aristo/aristo.selected.css
1071 */
1072/*
1073 * jQuery UI CSS Framework 1.8.7
1074 *
1075 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1076 * Dual licensed under the MIT or GPL Version 2 licenses.
1077 * http://jquery.org/license
1078 *
1079 * http://docs.jquery.com/UI/Theming/API
1080 */
1081
1082/* Layout helpers
1083----------------------------------*/
1084.ui-helper-hidden { display: none; }
1085.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
1086.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
1087.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
1088.ui-helper-clearfix { display: inline-block; }
1089/* required comment for clearfix to work in Opera \*/
1090* html .ui-helper-clearfix { height:1%; }
1091.ui-helper-clearfix { display:block; }
1092/* end clearfix */
1093.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
1094
1095
1096/* Interaction Cues
1097----------------------------------*/
1098.ui-state-disabled { cursor: default !important; }
1099
1100
1101/* Icons
1102----------------------------------*/
1103
1104/* states and images */
1105.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
1106
1107
1108/* Misc visuals
1109----------------------------------*/
1110
1111/* Overlays */
1112.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1113
1114
1115/*
1116 * jQuery UI CSS Framework 1.8.7
1117 *
1118 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1119 * Dual licensed under the MIT or GPL Version 2 licenses.
1120 * http://jquery.org/license
1121 *
1122 * http://docs.jquery.com/UI/Theming/API
1123 *
1124 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
1125 */
1126
1127
1128/* Component containers
1129----------------------------------*/
1130.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
1131.ui-widget .ui-widget { font-size: 1em; }
1132.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
1133.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
1134.ui-widget-content a { color: #4F4F4F; }
1135.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
1136.ui-widget-header {
1137 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1138 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1139 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1140 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1141 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1142 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1143 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1144}
1145.ui-widget-header a { color: #4F4F4F; }
1146
1147/* Interaction states
1148----------------------------------*/
1149.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
1150.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1151 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1152 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1153 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1154 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1155 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1156 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1157 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1158 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1159 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1160 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1161}
1162.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
1163.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #9D9D9D; font-weight: normal; color: #313131; }
1164.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
1165.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
1166 outline: none;
1167 color: #1c4257; border: 1px solid #7096ab;
1168 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
1169 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
1170 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
1171 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
1172 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
1173 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
1174 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
1175 -webkit-box-shadow: none;
1176 -moz-box-shadow: none;
1177 box-shadow: none;
1178}
1179.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
1180.ui-widget :active { outline: none; }
1181
1182/* Interaction Cues
1183----------------------------------*/
1184.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight { border: 1px solid #d2dbf4; background: #f4f8fd; color: #0d2054; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
1185.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
1186.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error { border: 1px solid #e2d0d0; background: #fcf0f0; color: #280b0b; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
1187.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
1188.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
1189.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
1190.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
1191.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
1192
1193/* Icons
1194----------------------------------*/
1195
1196/* states and images */
1197.ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1198.ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1199.ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1200.ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1201.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1202.ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1203.ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1204.ui-state-error .ui-icon, .ui-state-error-text .ui-icon { background: url(../lib/css/Aristo/images/icon_sprite.png) -16px 0 no-repeat !important; }
1205.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
1206
1207/* positioning */
1208.ui-icon-carat-1-n { background-position: 0 0; }
1209.ui-icon-carat-1-ne { background-position: -16px 0; }
1210.ui-icon-carat-1-e { background-position: -32px 0; }
1211.ui-icon-carat-1-se { background-position: -48px 0; }
1212.ui-icon-carat-1-s { background-position: -64px 0; }
1213.ui-icon-carat-1-sw { background-position: -80px 0; }
1214.ui-icon-carat-1-w { background-position: -96px 0; }
1215.ui-icon-carat-1-nw { background-position: -112px 0; }
1216.ui-icon-carat-2-n-s { background-position: -128px 0; }
1217.ui-icon-carat-2-e-w { background-position: -144px 0; }
1218.ui-icon-triangle-1-n { background-position: 0 -16px; }
1219.ui-icon-triangle-1-ne { background-position: -16px -16px; }
1220.ui-icon-triangle-1-e { background-position: -32px -16px; }
1221.ui-icon-triangle-1-se { background-position: -48px -16px; }
1222.ui-icon-triangle-1-s { background-position: -64px -16px; }
1223.ui-icon-triangle-1-sw { background-position: -80px -16px; }
1224.ui-icon-triangle-1-w { background-position: -96px -16px; }
1225.ui-icon-triangle-1-nw { background-position: -112px -16px; }
1226.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
1227.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
1228.ui-icon-arrow-1-n { background-position: 0 -32px; }
1229.ui-icon-arrow-1-ne { background-position: -16px -32px; }
1230.ui-icon-arrow-1-e { background-position: -32px -32px; }
1231.ui-icon-arrow-1-se { background-position: -48px -32px; }
1232.ui-icon-arrow-1-s { background-position: -64px -32px; }
1233.ui-icon-arrow-1-sw { background-position: -80px -32px; }
1234.ui-icon-arrow-1-w { background-position: -96px -32px; }
1235.ui-icon-arrow-1-nw { background-position: -112px -32px; }
1236.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
1237.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
1238.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
1239.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
1240.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
1241.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
1242.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
1243.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
1244.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
1245.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
1246.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
1247.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
1248.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
1249.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
1250.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
1251.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
1252.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
1253.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
1254.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
1255.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
1256.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
1257.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
1258.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
1259.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
1260.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
1261.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
1262.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
1263.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
1264.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
1265.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
1266.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
1267.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
1268.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
1269.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
1270.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
1271.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
1272.ui-icon-arrow-4 { background-position: 0 -80px; }
1273.ui-icon-arrow-4-diag { background-position: -16px -80px; }
1274.ui-icon-extlink { background-position: -32px -80px; }
1275.ui-icon-newwin { background-position: -48px -80px; }
1276.ui-icon-refresh { background-position: -64px -80px; }
1277.ui-icon-shuffle { background-position: -80px -80px; }
1278.ui-icon-transfer-e-w { background-position: -96px -80px; }
1279.ui-icon-transferthick-e-w { background-position: -112px -80px; }
1280.ui-icon-folder-collapsed { background-position: 0 -96px; }
1281.ui-icon-folder-open { background-position: -16px -96px; }
1282.ui-icon-document { background-position: -32px -96px; }
1283.ui-icon-document-b { background-position: -48px -96px; }
1284.ui-icon-note { background-position: -64px -96px; }
1285.ui-icon-mail-closed { background-position: -80px -96px; }
1286.ui-icon-mail-open { background-position: -96px -96px; }
1287.ui-icon-suitcase { background-position: -112px -96px; }
1288.ui-icon-comment { background-position: -128px -96px; }
1289.ui-icon-person { background-position: -144px -96px; }
1290.ui-icon-print { background-position: -160px -96px; }
1291.ui-icon-trash { background-position: -176px -96px; }
1292.ui-icon-locked { background-position: -192px -96px; }
1293.ui-icon-unlocked { background-position: -208px -96px; }
1294.ui-icon-bookmark { background-position: -224px -96px; }
1295.ui-icon-tag { background-position: -240px -96px; }
1296.ui-icon-home { background-position: 0 -112px; }
1297.ui-icon-flag { background-position: -16px -112px; }
1298.ui-icon-calendar { background-position: -32px -112px; }
1299.ui-icon-cart { background-position: -48px -112px; }
1300.ui-icon-pencil { background-position: -64px -112px; }
1301.ui-icon-clock { background-position: -80px -112px; }
1302.ui-icon-disk { background-position: -96px -112px; }
1303.ui-icon-calculator { background-position: -112px -112px; }
1304.ui-icon-zoomin { background-position: -128px -112px; }
1305.ui-icon-zoomout { background-position: -144px -112px; }
1306.ui-icon-search { background-position: -160px -112px; }
1307.ui-icon-wrench { background-position: -176px -112px; }
1308.ui-icon-gear { background-position: -192px -112px; }
1309.ui-icon-heart { background-position: -208px -112px; }
1310.ui-icon-star { background-position: -224px -112px; }
1311.ui-icon-link { background-position: -240px -112px; }
1312.ui-icon-cancel { background-position: 0 -128px; }
1313.ui-icon-plus { background-position: -16px -128px; }
1314.ui-icon-plusthick { background-position: -32px -128px; }
1315.ui-icon-minus { background-position: -48px -128px; }
1316.ui-icon-minusthick { background-position: -64px -128px; }
1317.ui-icon-close { background-position: -80px -128px; }
1318.ui-icon-closethick { background-position: -96px -128px; }
1319.ui-icon-key { background-position: -112px -128px; }
1320.ui-icon-lightbulb { background-position: -128px -128px; }
1321.ui-icon-scissors { background-position: -144px -128px; }
1322.ui-icon-clipboard { background-position: -160px -128px; }
1323.ui-icon-copy { background-position: -176px -128px; }
1324.ui-icon-contact { background-position: -192px -128px; }
1325.ui-icon-image { background-position: -208px -128px; }
1326.ui-icon-video { background-position: -224px -128px; }
1327.ui-icon-script { background-position: -240px -128px; }
1328.ui-icon-alert { background-position: 0 -144px; }
1329.ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
1330.ui-icon-notice { background-position: -32px -144px; }
1331.ui-icon-help { background-position: -48px -144px; }
1332.ui-icon-check { background-position: -64px -144px; }
1333.ui-icon-bullet { background-position: -80px -144px; }
1334.ui-icon-radio-off { background-position: -96px -144px; }
1335.ui-icon-radio-on { background-position: -112px -144px; }
1336.ui-icon-pin-w { background-position: -128px -144px; }
1337.ui-icon-pin-s { background-position: -144px -144px; }
1338.ui-icon-play { background-position: 0 -160px; }
1339.ui-icon-pause { background-position: -16px -160px; }
1340.ui-icon-seek-next { background-position: -32px -160px; }
1341.ui-icon-seek-prev { background-position: -48px -160px; }
1342.ui-icon-seek-end { background-position: -64px -160px; }
1343.ui-icon-seek-start { background-position: -80px -160px; }
1344/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1345.ui-icon-seek-first { background-position: -80px -160px; }
1346.ui-icon-stop { background-position: -96px -160px; }
1347.ui-icon-eject { background-position: -112px -160px; }
1348.ui-icon-volume-off { background-position: -128px -160px; }
1349.ui-icon-volume-on { background-position: -144px -160px; }
1350.ui-icon-power { background-position: 0 -176px; }
1351.ui-icon-signal-diag { background-position: -16px -176px; }
1352.ui-icon-signal { background-position: -32px -176px; }
1353.ui-icon-battery-0 { background-position: -48px -176px; }
1354.ui-icon-battery-1 { background-position: -64px -176px; }
1355.ui-icon-battery-2 { background-position: -80px -176px; }
1356.ui-icon-battery-3 { background-position: -96px -176px; }
1357.ui-icon-circle-plus { background-position: 0 -192px; }
1358.ui-icon-circle-minus { background-position: -16px -192px; }
1359.ui-icon-circle-close { background-position: -32px -192px; }
1360.ui-icon-circle-triangle-e { background-position: -48px -192px; }
1361.ui-icon-circle-triangle-s { background-position: -64px -192px; }
1362.ui-icon-circle-triangle-w { background-position: -80px -192px; }
1363.ui-icon-circle-triangle-n { background-position: -96px -192px; }
1364.ui-icon-circle-arrow-e { background-position: -112px -192px; }
1365.ui-icon-circle-arrow-s { background-position: -128px -192px; }
1366.ui-icon-circle-arrow-w { background-position: -144px -192px; }
1367.ui-icon-circle-arrow-n { background-position: -160px -192px; }
1368.ui-icon-circle-zoomin { background-position: -176px -192px; }
1369.ui-icon-circle-zoomout { background-position: -192px -192px; }
1370.ui-icon-circle-check { background-position: -208px -192px; }
1371.ui-icon-circlesmall-plus { background-position: 0 -208px; }
1372.ui-icon-circlesmall-minus { background-position: -16px -208px; }
1373.ui-icon-circlesmall-close { background-position: -32px -208px; }
1374.ui-icon-squaresmall-plus { background-position: -48px -208px; }
1375.ui-icon-squaresmall-minus { background-position: -64px -208px; }
1376.ui-icon-squaresmall-close { background-position: -80px -208px; }
1377.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
1378.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
1379.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
1380.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
1381.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
1382.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
1383
1384
1385/* Misc visuals
1386----------------------------------*/
1387
1388/* Corner radius */
1389.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
1390.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
1391.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
1392.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1393.ui-corner-top { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
1394.ui-corner-bottom { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1395.ui-corner-right { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1396.ui-corner-left { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
1397.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
1398
1399/* Overlays */
1400.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
1401.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #000000; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
1402
1403/*
1404 * jQuery UI Autocomplete 1.8.7
1405 *
1406 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1407 * Dual licensed under the MIT or GPL Version 2 licenses.
1408 * http://jquery.org/license
1409 *
1410 * http://docs.jquery.com/UI/Autocomplete#theming
1411 */
1412.ui-autocomplete {
1413 position: absolute; cursor: default; z-index: 3;
1414 -moz-border-radius: 0;
1415 -webkit-border-radius: 0;
1416 border-radius: 0;
1417 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1418 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1419 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1420}
1421
1422/* workarounds */
1423* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
1424
1425/*
1426 * jQuery UI Menu 1.8.7
1427 *
1428 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1429 * Dual licensed under the MIT or GPL Version 2 licenses.
1430 * http://jquery.org/license
1431 *
1432 * http://docs.jquery.com/UI/Menu#theming
1433 */
1434.ui-menu {
1435 list-style:none;
1436 padding: 2px;
1437 margin: 0;
1438 display:block;
1439 float: left;
1440}
1441.ui-menu .ui-menu {
1442 margin-top: -3px;
1443}
1444.ui-menu .ui-menu-item {
1445 margin:0;
1446 padding: 0;
1447 zoom: 1;
1448 float: left;
1449 clear: left;
1450 width: 100%;
1451}
1452.ui-menu .ui-menu-item a {
1453 text-decoration:none;
1454 display:block;
1455 padding:.2em .4em;
1456 line-height:1.5;
1457 zoom:1;
1458}
1459.ui-menu .ui-menu-item a.ui-state-hover,
1460.ui-menu .ui-menu-item a.ui-state-active {
1461 font-weight: normal;
1462 margin: -1px;
1463 background: #5f83b9;
1464 color: #FFFFFF;
1465 text-shadow: 0px 1px 1px #234386;
1466 border-color: #466086;
1467 -moz-border-radius: 0;
1468 -webkit-border-radius: 0;
1469 border-radius: 0;
1470}
1471
1472/*
1473 * jQuery UI Datepicker 1.8.7
1474 *
1475 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1476 * Dual licensed under the MIT or GPL Version 2 licenses.
1477 * http://jquery.org/license
1478 *
1479 * http://docs.jquery.com/UI/Datepicker#theming
1480 */
1481.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
1482.ui-datepicker {
1483 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1484 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1485 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1486}
1487.ui-datepicker .ui-datepicker-header { position:relative; padding:.35em 0; border: none; border-bottom: 1px solid #B6B6B6; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; }
1488.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
1489.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
1490.ui-datepicker .ui-datepicker-prev { left:2px; }
1491.ui-datepicker .ui-datepicker-next { right:2px; }
1492.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
1493.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
1494.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
1495.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
1496.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; background: url(../lib/css/Aristo/images/icon_sprite.png) no-repeat; }
1497.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; font-size: 12px; text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
1498.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
1499.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
1500.ui-datepicker select.ui-datepicker-month,
1501.ui-datepicker select.ui-datepicker-year { width: 49%;}
1502.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
1503.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
1504.ui-datepicker td { border: 0; padding: 1px; }
1505.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
1506.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
1507.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
1508.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
1509.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
1510.ui-datepicker table .ui-state-hover { background: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; -webkit-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; -moz-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; border-color: #5F83B9; }
1511.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
1512.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
1513
1514/* with multiple calendars */
1515.ui-datepicker.ui-datepicker-multi { width:auto; }
1516.ui-datepicker-multi .ui-datepicker-group { float:left; }
1517.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
1518.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
1519.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
1520.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
1521.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
1522.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
1523.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
1524.ui-datepicker-row-break { clear:both; width:100%; }
1525
1526/* RTL support */
1527.ui-datepicker-rtl { direction: rtl; }
1528.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
1529.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
1530.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
1531.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
1532.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
1533.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
1534.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
1535.ui-datepicker-rtl .ui-datepicker-group { float:right; }
1536.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1537.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1538
1539/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1540.ui-datepicker-cover {
1541 display: none; /*sorry for IE5*/
1542 display/**/: block; /*sorry for IE5*/
1543 position: absolute; /*must have*/
1544 z-index: -1; /*must have*/
1545 filter: mask(); /*must have*/
1546 top: -4px; /*must have*/
1547 left: -4px; /*must have*/
1548 width: 200px; /*must have*/
1549 height: 200px; /*must have*/
1550}
1551
1552
1553
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301554/*
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301555 * lib/css/ui/list.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301556 */
1557.hide {
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301558 display: none;
1559}
1560
1561.list-filters {
1562 margin: 7px 0px;
1563}
1564
1565.wnlist .img-load {
1566 display: none;
1567 float: left;
1568 margin-left: 11px;
1569 margin-top: 8px;
1570}
1571
1572div.list-row {
1573 border-bottom: 1px solid #eee;
1574 padding: 3px 0px;
1575}
1576div.list-row:hover {
1577 background-color: #eef
1578}
1579
1580div.show_filters {
1581 display: none;
1582}
1583
1584div.filter_list {
1585 padding: 13px;
1586}
1587
1588div.show_filters.well {
1589 margin-top: 11px;
1590 margin-bottom: 11px;
1591}
1592
1593div.filter_list .run_btn {
1594 text-align: right;
1595}
1596
1597div.filter_list .add_filter {
1598 margin: 3px 0px;
1599}
1600
1601div.list_filter {
1602 margin: 7px 0px;
1603}
1604
1605div.list_filter input, div.list_filter select {
1606 width: 130px;
1607 margin-right: 7px;
1608}
1609
1610span.bar-outer {
1611 display: inline-block;
1612 margin: 0px 7px;
1613 margin-top: 3px;
1614 background-color: #fff;
1615 border: 1px solid #aaa;
1616 height: 10px;
1617}
1618
1619span.bar-inner {
1620 display: inline-block;
1621 background-color: #bdf;
1622 height: 100%;
1623 margin-bottom: 2px;
1624}
1625span.bar-complete {
1626 background-color: green;
1627}
1628
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301629
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301630/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301631 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301632 */
1633/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301634
1635h1,
1636h2,
1637h3,
1638h4,
1639h5,
1640h6 {
1641 margin: 0;
1642 font-weight: bold;
1643 color: #333333;
1644 text-rendering: optimizelegibility;
1645 margin-bottom: 0.3em;
1646}
1647h1 small,
1648h2 small,
1649h3 small,
1650h4 small,
1651h5 small,
1652h6 small {
1653 font-weight: normal;
1654 color: #999999;
1655}
1656h1 {
1657 font-size: 30px;
1658 line-height: 36px;
1659}
1660h1 small {
1661 font-size: 18px;
1662}
1663h2 {
1664 font-size: 24px;
1665 line-height: 36px;
1666}
1667h2 small {
1668 font-size: 18px;
1669}
1670h3 {
1671 line-height: 27px;
1672 font-size: 18px;
1673}
1674h3 small {
1675 font-size: 14px;
1676}
1677h4, h5, h6 {
1678 line-height: 18px;
1679}
1680h4 {
1681 font-size: 14px;
1682}
1683h4 small {
1684 font-size: 12px;
1685}
1686h5 {
1687 font-size: 12px;
1688}
1689h6 {
1690 font-size: 11px;
1691 color: #999999;
1692 text-transform: uppercase;
1693}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301694
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301695/*
1696 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301697 */
1698.close {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301699 float: right;
1700 font-size: 20px;
1701 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301702 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301703 color: #000000;
1704 text-shadow: 0 1px 0 #ffffff;
1705 opacity: 0.2;
1706 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301707}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301708.close:hover {
1709 color: #000000;
1710 text-decoration: none;
1711 opacity: 0.4;
1712 filter: alpha(opacity=40);
1713 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301714}
1715.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301716 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301717 padding: 4px 10px 4px;
1718 font-size: 13px;
1719 line-height: 18px;
1720 color: #333333;
1721 text-align: center;
1722 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1723 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301724 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1725 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1726 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1727 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1728 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1729 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301730 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301731 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301732 border: 1px solid #ccc;
1733 border-bottom-color: #bbb;
1734 -webkit-border-radius: 4px;
1735 -moz-border-radius: 4px;
1736 border-radius: 4px;
1737 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1738 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1739 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 +05301740 cursor: pointer;
1741 *margin-left: .3em;
1742}
1743.btn:first-child {
1744 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301745}
1746.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301747 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301748 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301749 background-color: #e6e6e6;
1750 background-position: 0 -15px;
1751 -webkit-transition: background-position 0.1s linear;
1752 -moz-transition: background-position 0.1s linear;
1753 -ms-transition: background-position 0.1s linear;
1754 -o-transition: background-position 0.1s linear;
1755 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301756}
1757.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301758 outline: thin dotted;
1759 outline: 5px auto -webkit-focus-ring-color;
1760 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301761}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301762.btn.active, .btn:active {
1763 background-image: none;
1764 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1765 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1766 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1767 background-color: #e6e6e6;
1768 background-color: #d9d9d9 \9;
1769 color: rgba(0, 0, 0, 0.5);
1770 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301771}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301772.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301773 cursor: default;
1774 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301775 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301776 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301777 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301778 -webkit-box-shadow: none;
1779 -moz-box-shadow: none;
1780 box-shadow: none;
1781}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301782.btn-large {
1783 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301784 font-size: 15px;
1785 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301786 -webkit-border-radius: 5px;
1787 -moz-border-radius: 5px;
1788 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301789}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301790.btn-large .icon {
1791 margin-top: 1px;
1792}
1793.btn-small {
1794 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301795 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301796 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301797}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301798.btn-small .icon {
1799 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301800}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301801.btn-primary,
1802.btn-primary:hover,
1803.btn-warning,
1804.btn-warning:hover,
1805.btn-danger,
1806.btn-danger:hover,
1807.btn-success,
1808.btn-success:hover,
1809.btn-info,
1810.btn-info:hover {
1811 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1812 color: #ffffff;
1813}
1814.btn-primary.active,
1815.btn-warning.active,
1816.btn-danger.active,
1817.btn-success.active,
1818.btn-info.active {
1819 color: rgba(255, 255, 255, 0.75);
1820}
1821.btn-primary {
1822 background-color: #006dcc;
1823 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1824 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1825 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1826 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1827 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1828 background-image: linear-gradient(top, #0088cc, #0044cc);
1829 background-repeat: repeat-x;
1830 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1831 border-color: #0044cc #0044cc #002a80;
1832 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1833 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1834}
1835.btn-primary:hover,
1836.btn-primary:active,
1837.btn-primary.active,
1838.btn-primary.disabled,
1839.btn-primary[disabled] {
1840 background-color: #0044cc;
1841}
1842.btn-primary:active, .btn-primary.active {
1843 background-color: #003399 \9;
1844}
1845.btn-warning {
1846 background-color: #faa732;
1847 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1848 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1849 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1850 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1851 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1852 background-image: linear-gradient(top, #fbb450, #f89406);
1853 background-repeat: repeat-x;
1854 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1855 border-color: #f89406 #f89406 #ad6704;
1856 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1857 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1858}
1859.btn-warning:hover,
1860.btn-warning:active,
1861.btn-warning.active,
1862.btn-warning.disabled,
1863.btn-warning[disabled] {
1864 background-color: #f89406;
1865}
1866.btn-warning:active, .btn-warning.active {
1867 background-color: #c67605 \9;
1868}
1869.btn-danger {
1870 background-color: #da4f49;
1871 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1872 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1873 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1874 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1875 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1876 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1877 background-repeat: repeat-x;
1878 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1879 border-color: #bd362f #bd362f #802420;
1880 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1881 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1882}
1883.btn-danger:hover,
1884.btn-danger:active,
1885.btn-danger.active,
1886.btn-danger.disabled,
1887.btn-danger[disabled] {
1888 background-color: #bd362f;
1889}
1890.btn-danger:active, .btn-danger.active {
1891 background-color: #942a25 \9;
1892}
1893.btn-success {
1894 background-color: #5bb75b;
1895 background-image: -moz-linear-gradient(top, #62c462, #51a351);
1896 background-image: -ms-linear-gradient(top, #62c462, #51a351);
1897 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1898 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1899 background-image: -o-linear-gradient(top, #62c462, #51a351);
1900 background-image: linear-gradient(top, #62c462, #51a351);
1901 background-repeat: repeat-x;
1902 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1903 border-color: #51a351 #51a351 #387038;
1904 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1905 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1906}
1907.btn-success:hover,
1908.btn-success:active,
1909.btn-success.active,
1910.btn-success.disabled,
1911.btn-success[disabled] {
1912 background-color: #51a351;
1913}
1914.btn-success:active, .btn-success.active {
1915 background-color: #408140 \9;
1916}
1917.btn-info {
1918 background-color: #49afcd;
1919 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1920 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1921 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1922 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1923 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1924 background-image: linear-gradient(top, #5bc0de, #2f96b4);
1925 background-repeat: repeat-x;
1926 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1927 border-color: #2f96b4 #2f96b4 #1f6377;
1928 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1929 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1930}
1931.btn-info:hover,
1932.btn-info:active,
1933.btn-info.active,
1934.btn-info.disabled,
1935.btn-info[disabled] {
1936 background-color: #2f96b4;
1937}
1938.btn-info:active, .btn-info.active {
1939 background-color: #24748c \9;
1940}
1941button.btn, input[type="submit"].btn {
1942 *padding-top: 2px;
1943 *padding-bottom: 2px;
1944}
1945button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301946 padding: 0;
1947 border: 0;
1948}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301949button.btn.large, input[type="submit"].btn.large {
1950 *padding-top: 7px;
1951 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301952}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301953button.btn.small, input[type="submit"].btn.small {
1954 *padding-top: 3px;
1955 *padding-bottom: 3px;
1956}
1957.btn-group {
1958 position: relative;
1959 *zoom: 1;
1960 *margin-left: .3em;
1961}
1962.btn-group:before, .btn-group:after {
1963 display: table;
1964 content: "";
1965}
1966.btn-group:after {
1967 clear: both;
1968}
1969.btn-group:first-child {
1970 *margin-left: 0;
1971}
1972.btn-group + .btn-group {
1973 margin-left: 5px;
1974}
1975.btn-toolbar {
1976 margin-top: 9px;
1977 margin-bottom: 9px;
1978}
1979.btn-toolbar .btn-group {
1980 display: inline-block;
1981 *display: inline;
1982 /* IE7 inline-block hack */
1983
1984 *zoom: 1;
1985}
1986.btn-group .btn {
1987 position: relative;
1988 float: left;
1989 margin-left: -1px;
1990 -webkit-border-radius: 0;
1991 -moz-border-radius: 0;
1992 border-radius: 0;
1993}
1994.btn-group .btn:first-child {
1995 margin-left: 0;
1996 -webkit-border-top-left-radius: 4px;
1997 -moz-border-radius-topleft: 4px;
1998 border-top-left-radius: 4px;
1999 -webkit-border-bottom-left-radius: 4px;
2000 -moz-border-radius-bottomleft: 4px;
2001 border-bottom-left-radius: 4px;
2002}
2003.btn-group .btn:last-child, .btn-group .dropdown-toggle {
2004 -webkit-border-top-right-radius: 4px;
2005 -moz-border-radius-topright: 4px;
2006 border-top-right-radius: 4px;
2007 -webkit-border-bottom-right-radius: 4px;
2008 -moz-border-radius-bottomright: 4px;
2009 border-bottom-right-radius: 4px;
2010}
2011.btn-group .btn.large:first-child {
2012 margin-left: 0;
2013 -webkit-border-top-left-radius: 6px;
2014 -moz-border-radius-topleft: 6px;
2015 border-top-left-radius: 6px;
2016 -webkit-border-bottom-left-radius: 6px;
2017 -moz-border-radius-bottomleft: 6px;
2018 border-bottom-left-radius: 6px;
2019}
2020.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
2021 -webkit-border-top-right-radius: 6px;
2022 -moz-border-radius-topright: 6px;
2023 border-top-right-radius: 6px;
2024 -webkit-border-bottom-right-radius: 6px;
2025 -moz-border-radius-bottomright: 6px;
2026 border-bottom-right-radius: 6px;
2027}
2028.btn-group .btn:hover,
2029.btn-group .btn:focus,
2030.btn-group .btn:active,
2031.btn-group .btn.active {
2032 z-index: 2;
2033}
2034.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2035 outline: 0;
2036}
2037.btn-group .dropdown-toggle {
2038 padding-left: 8px;
2039 padding-right: 8px;
2040 -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);
2041 -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);
2042 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);
2043 *padding-top: 5px;
2044 *padding-bottom: 5px;
2045}
2046.btn-group.open {
2047 *z-index: 1000;
2048}
2049.btn-group.open .dropdown-menu {
2050 display: block;
2051 margin-top: 1px;
2052 -webkit-border-radius: 5px;
2053 -moz-border-radius: 5px;
2054 border-radius: 5px;
2055}
2056.btn-group.open .dropdown-toggle {
2057 background-image: none;
2058 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2059 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2060 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2061}
2062.btn .caret {
2063 margin-top: 7px;
2064 margin-left: 0;
2065}
2066.btn:hover .caret, .open.btn-group .caret {
2067 opacity: 1;
2068 filter: alpha(opacity=100);
2069}
2070.btn-primary .caret,
2071.btn-danger .caret,
2072.btn-info .caret,
2073.btn-success .caret {
2074 border-top-color: #ffffff;
2075 opacity: 0.75;
2076 filter: alpha(opacity=75);
2077}
2078.btn-small .caret {
2079 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302080}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302081
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302082/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302083 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302084 */
2085.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302086 margin-left: 0;
2087 margin-bottom: 18px;
2088 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302089}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302090.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302091 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302092}
2093.nav > li > a:hover {
2094 text-decoration: none;
2095 background-color: #eeeeee;
2096}
2097.nav-list {
2098 padding-left: 14px;
2099 padding-right: 14px;
2100 margin-bottom: 0;
2101}
2102.nav-list > li > a, .nav-list .nav-header {
2103 display: block;
2104 padding: 3px 15px;
2105 margin-left: -15px;
2106 margin-right: -15px;
2107 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2108}
2109.nav-list .nav-header {
2110 font-size: 11px;
2111 font-weight: bold;
2112 line-height: 18px;
2113 color: #999999;
2114 text-transform: uppercase;
2115}
2116.nav-list > li + .nav-header {
2117 margin-top: 9px;
2118}
2119.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302120 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302121 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2122 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302123}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302124.nav-list [class^="icon-"] {
2125 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302126}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302127.nav-tabs, .nav-pills {
2128 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302129}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302130.nav-tabs:before,
2131.nav-pills:before,
2132.nav-tabs:after,
2133.nav-pills:after {
2134 display: table;
2135 content: "";
2136}
2137.nav-tabs:after, .nav-pills:after {
2138 clear: both;
2139}
2140.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302141 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302142}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302143.nav-tabs > li > a, .nav-pills > li > a {
2144 padding-right: 12px;
2145 padding-left: 12px;
2146 margin-right: 2px;
2147 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302148}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302149.nav-tabs {
2150 border-bottom: 1px solid #ddd;
2151}
2152.nav-tabs > li {
2153 margin-bottom: -1px;
2154}
2155.nav-tabs > li > a {
2156 padding-top: 9px;
2157 padding-bottom: 9px;
2158 border: 1px solid transparent;
2159 -webkit-border-radius: 4px 4px 0 0;
2160 -moz-border-radius: 4px 4px 0 0;
2161 border-radius: 4px 4px 0 0;
2162}
2163.nav-tabs > li > a:hover {
2164 border-color: #eeeeee #eeeeee #dddddd;
2165}
2166.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2167 color: #555555;
2168 background-color: #ffffff;
2169 border: 1px solid #ddd;
2170 border-bottom-color: transparent;
2171 cursor: default;
2172}
2173.nav-pills > li > a {
2174 padding-top: 8px;
2175 padding-bottom: 8px;
2176 margin-top: 2px;
2177 margin-bottom: 2px;
2178 -webkit-border-radius: 5px;
2179 -moz-border-radius: 5px;
2180 border-radius: 5px;
2181}
2182.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302183 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302184 background-color: #0088cc;
2185}
2186.nav-stacked > li {
2187 float: none;
2188}
2189.nav-stacked > li > a {
2190 margin-right: 0;
2191}
2192.nav-tabs.nav-stacked {
2193 border-bottom: 0;
2194}
2195.nav-tabs.nav-stacked > li > a {
2196 border: 1px solid #ddd;
2197 -webkit-border-radius: 0;
2198 -moz-border-radius: 0;
2199 border-radius: 0;
2200}
2201.nav-tabs.nav-stacked > li:first-child > a {
2202 -webkit-border-radius: 4px 4px 0 0;
2203 -moz-border-radius: 4px 4px 0 0;
2204 border-radius: 4px 4px 0 0;
2205}
2206.nav-tabs.nav-stacked > li:last-child > a {
2207 -webkit-border-radius: 0 0 4px 4px;
2208 -moz-border-radius: 0 0 4px 4px;
2209 border-radius: 0 0 4px 4px;
2210}
2211.nav-tabs.nav-stacked > li > a:hover {
2212 border-color: #ddd;
2213 z-index: 2;
2214}
2215.nav-pills.nav-stacked > li > a {
2216 margin-bottom: 3px;
2217}
2218.nav-pills.nav-stacked > li:last-child > a {
2219 margin-bottom: 1px;
2220}
2221.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2222 margin-top: 1px;
2223 border-width: 1px;
2224}
2225.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302226 -webkit-border-radius: 4px;
2227 -moz-border-radius: 4px;
2228 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302229}
2230.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2231 border-top-color: #0088cc;
2232 margin-top: 6px;
2233}
2234.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2235 border-top-color: #005580;
2236}
2237.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2238 border-top-color: #333333;
2239}
2240.nav > .dropdown.active > a:hover {
2241 color: #000000;
2242 cursor: pointer;
2243}
2244.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2245 color: #ffffff;
2246 background-color: #999999;
2247 border-color: #999999;
2248}
2249.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2250 border-top-color: #ffffff;
2251 opacity: 1;
2252 filter: alpha(opacity=100);
2253}
2254
2255.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302256 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302257 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302258}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302259.navbar-inner {
2260 padding-left: 20px;
2261 padding-right: 20px;
2262 background-color: #2c2c2c;
2263 background-image: -moz-linear-gradient(top, #333333, #222222);
2264 background-image: -ms-linear-gradient(top, #333333, #222222);
2265 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2266 background-image: -webkit-linear-gradient(top, #333333, #222222);
2267 background-image: -o-linear-gradient(top, #333333, #222222);
2268 background-image: linear-gradient(top, #333333, #222222);
2269 background-repeat: repeat-x;
2270 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2271 -webkit-border-radius: 4px;
2272 -moz-border-radius: 4px;
2273 border-radius: 4px;
2274 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2275 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2276 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2277}
2278.btn-navbar {
2279 display: none;
2280 float: right;
2281 padding: 7px 10px;
2282 margin-left: 5px;
2283 margin-right: 5px;
2284 background-color: #2c2c2c;
2285 background-image: -moz-linear-gradient(top, #333333, #222222);
2286 background-image: -ms-linear-gradient(top, #333333, #222222);
2287 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2288 background-image: -webkit-linear-gradient(top, #333333, #222222);
2289 background-image: -o-linear-gradient(top, #333333, #222222);
2290 background-image: linear-gradient(top, #333333, #222222);
2291 background-repeat: repeat-x;
2292 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2293 border-color: #222222 #222222 #000000;
2294 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2295 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2296 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2297 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2298 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2299}
2300.btn-navbar:hover,
2301.btn-navbar:active,
2302.btn-navbar.active,
2303.btn-navbar.disabled,
2304.btn-navbar[disabled] {
2305 background-color: #222222;
2306}
2307.btn-navbar:active, .btn-navbar.active {
2308 background-color: #080808 \9;
2309}
2310.btn-navbar .icon-bar {
2311 display: block;
2312 width: 18px;
2313 height: 2px;
2314 background-color: #f5f5f5;
2315 -webkit-border-radius: 1px;
2316 -moz-border-radius: 1px;
2317 border-radius: 1px;
2318 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2319 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2320 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2321}
2322.btn-navbar .icon-bar + .icon-bar {
2323 margin-top: 3px;
2324}
2325.nav-collapse.collapse {
2326 height: auto;
2327}
2328.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302329 text-decoration: none;
2330}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302331.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302332 float: left;
2333 display: block;
2334 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302335 font-size: 20px;
2336 font-weight: 200;
2337 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302338 color: #ffffff;
2339}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302340.navbar .navbar-text {
2341 margin-bottom: 0;
2342 line-height: 40px;
2343 color: #999999;
2344}
2345.navbar .navbar-text a:hover {
2346 color: #ffffff;
2347 background-color: transparent;
2348}
2349.navbar .btn, .navbar .btn-group {
2350 margin-top: 5px;
2351}
2352.navbar .btn-group .btn {
2353 margin-top: 0;
2354}
2355.navbar-form {
2356 margin-bottom: 0;
2357 *zoom: 1;
2358}
2359.navbar-form:before, .navbar-form:after {
2360 display: table;
2361 content: "";
2362}
2363.navbar-form:after {
2364 clear: both;
2365}
2366.navbar-form input, .navbar-form select {
2367 display: inline-block;
2368 margin-top: 5px;
2369 margin-bottom: 0;
2370}
2371.navbar-form .radio, .navbar-form .checkbox {
2372 margin-top: 5px;
2373}
2374.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2375 margin-top: 3px;
2376}
2377.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302378 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302379 float: left;
2380 margin-top: 6px;
2381 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302382}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302383.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302384 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302385 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2386 font-size: 13px;
2387 font-weight: normal;
2388 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302389 color: #ffffff;
2390 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302391 background: #666;
2392 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302393 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302394 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2395 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2396 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 +05302397 -webkit-transition: none;
2398 -moz-transition: none;
2399 -ms-transition: none;
2400 -o-transition: none;
2401 transition: none;
2402}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302403.navbar-search .search-query :-moz-placeholder {
2404 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302405}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302406.navbar-search .search-query::-webkit-input-placeholder {
2407 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302408}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302409.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302410 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302411 background-color: #999999;
2412 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302413}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302414.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302415 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302416 color: #333333;
2417 text-shadow: 0 1px 0 #ffffff;
2418 background-color: #ffffff;
2419 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302420 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2421 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2422 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302423 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302424}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302425.navbar-fixed-top {
2426 position: fixed;
2427 top: 0;
2428 right: 0;
2429 left: 0;
2430 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302431}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302432.navbar-fixed-top .navbar-inner {
2433 padding-left: 0;
2434 padding-right: 0;
2435 -webkit-border-radius: 0;
2436 -moz-border-radius: 0;
2437 border-radius: 0;
2438}
2439.navbar .nav {
2440 position: relative;
2441 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302442 display: block;
2443 float: left;
2444 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302445}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302446.navbar .nav.pull-right {
2447 float: right;
2448}
2449.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302450 display: block;
2451 float: left;
2452}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302453.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302454 float: none;
2455 padding: 10px 10px 11px;
2456 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302457 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302458 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302459 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302460}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302461.navbar .nav > li > a:hover {
2462 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302463 color: #ffffff;
2464 text-decoration: none;
2465}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302466.navbar .nav .active > a, .navbar .nav .active > a:hover {
2467 color: #ffffff;
2468 text-decoration: none;
2469 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302470 background-color: rgba(0, 0, 0, 0.5);
2471}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302472.navbar .divider-vertical {
2473 height: 40px;
2474 width: 1px;
2475 margin: 0 9px;
2476 overflow: hidden;
2477 background-color: #222222;
2478 border-right: 1px solid #333333;
2479}
2480.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302481 margin-left: 10px;
2482 margin-right: 0;
2483}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302484.navbar .dropdown-menu {
2485 margin-top: 1px;
2486 -webkit-border-radius: 4px;
2487 -moz-border-radius: 4px;
2488 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302489}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302490.navbar .dropdown-menu:before {
2491 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302492 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302493 border-left: 7px solid transparent;
2494 border-right: 7px solid transparent;
2495 border-bottom: 7px solid #ccc;
2496 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302497 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302498 top: -7px;
2499 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302500}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302501.navbar .dropdown-menu:after {
2502 content: '';
2503 display: inline-block;
2504 border-left: 6px solid transparent;
2505 border-right: 6px solid transparent;
2506 border-bottom: 6px solid #ffffff;
2507 position: absolute;
2508 top: -6px;
2509 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302510}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302511.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2512 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302513}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302514.navbar .nav .active .caret {
2515 opacity: 1;
2516 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302517}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302518.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2519 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302520}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302521.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302522 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302523}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302524.navbar .nav.pull-right .dropdown-menu {
2525 left: auto;
2526 right: 0;
2527}
2528.navbar .nav.pull-right .dropdown-menu:before {
2529 left: auto;
2530 right: 12px;
2531}
2532.navbar .nav.pull-right .dropdown-menu:after {
2533 left: auto;
2534 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302535}
2536
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302537/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302538.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302539 display: block;
2540 float: right;
2541 width: 20px;
2542 margin-bottom: -5px;
2543 margin-top: 10px;
2544 visibility: hidden;
2545}
2546
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302547.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302548 padding: 0px 20px;
2549}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302550
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302551
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302552/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302553 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302554 */
2555.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302556 position: relative;
2557}
2558.dropdown-toggle {
2559 *margin-bottom: -3px;
2560}
2561.dropdown-toggle:active, .open .dropdown-toggle {
2562 outline: 0;
2563}
2564.caret {
2565 display: inline-block;
2566 width: 0;
2567 height: 0;
2568 text-indent: -99999px;
2569 *text-indent: 0;
2570 vertical-align: top;
2571 border-left: 4px solid transparent;
2572 border-right: 4px solid transparent;
2573 border-top: 4px solid #000000;
2574 opacity: 0.3;
2575 filter: alpha(opacity=30);
2576 content: "\2193";
2577}
2578.dropdown .caret {
2579 margin-top: 8px;
2580 margin-left: 2px;
2581}
2582.dropdown:hover .caret, .open.dropdown .caret {
2583 opacity: 1;
2584 filter: alpha(opacity=100);
2585}
2586.dropdown-menu {
2587 position: absolute;
2588 top: 100%;
2589 left: 0;
2590 z-index: 1000;
2591 float: left;
2592 display: none;
2593 min-width: 160px;
2594 max-width: 220px;
2595 _width: 160px;
2596 padding: 4px 0;
2597 margin: 0;
2598 list-style: none;
2599 background-color: #ffffff;
2600 border-color: #ccc;
2601 border-color: rgba(0, 0, 0, 0.2);
2602 border-style: solid;
2603 border-width: 1px;
2604 -webkit-border-radius: 0 0 5px 5px;
2605 -moz-border-radius: 0 0 5px 5px;
2606 border-radius: 0 0 5px 5px;
2607 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2608 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2609 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2610 -webkit-background-clip: padding-box;
2611 -moz-background-clip: padding;
2612 background-clip: padding-box;
2613 *border-right-width: 2px;
2614 *border-bottom-width: 2px;
2615}
2616.dropdown-menu.bottom-up {
2617 top: auto;
2618 bottom: 100%;
2619 margin-bottom: 2px;
2620}
2621.dropdown-menu .divider {
2622 height: 1px;
2623 margin: 5px 1px;
2624 overflow: hidden;
2625 background-color: #e5e5e5;
2626 border-bottom: 1px solid #ffffff;
2627 *width: 100%;
2628 *margin: -5px 0 5px;
2629}
2630.dropdown-menu a {
2631 display: block;
2632 padding: 3px 15px;
2633 clear: both;
2634 font-weight: normal;
2635 line-height: 18px;
2636 color: #555555;
2637 white-space: nowrap;
2638}
2639.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2640 color: #ffffff;
2641 text-decoration: none;
2642 background-color: #0088cc;
2643}
2644.dropdown.open {
2645 *z-index: 1000;
2646}
2647.dropdown.open .dropdown-toggle {
2648 color: #ffffff;
2649 background: #ccc;
2650 background: rgba(0, 0, 0, 0.3);
2651}
2652.dropdown.open .dropdown-menu {
2653 display: block;
2654}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302655
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302656/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302657 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302658 */
2659.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05302660 position: absolute;
2661 z-index: 1020;
2662 display: block;
2663 visibility: visible;
2664 padding: 5px;
2665 font-size: 11px;
2666 opacity: 0;
2667 filter: alpha(opacity=0);
2668}
2669.tooltip.in {
2670 opacity: 0.8;
2671 filter: alpha(opacity=80);
2672}
2673.tooltip.top {
2674 margin-top: -2px;
2675}
2676.tooltip.right {
2677 margin-left: 2px;
2678}
2679.tooltip.bottom {
2680 margin-top: 2px;
2681}
2682.tooltip.left {
2683 margin-left: -2px;
2684}
2685.tooltip.top .tooltip-arrow {
2686 bottom: 0;
2687 left: 50%;
2688 margin-left: -5px;
2689 border-left: 5px solid transparent;
2690 border-right: 5px solid transparent;
2691 border-top: 5px solid #000000;
2692}
2693.tooltip.left .tooltip-arrow {
2694 top: 50%;
2695 right: 0;
2696 margin-top: -5px;
2697 border-top: 5px solid transparent;
2698 border-bottom: 5px solid transparent;
2699 border-left: 5px solid #000000;
2700}
2701.tooltip.bottom .tooltip-arrow {
2702 top: 0;
2703 left: 50%;
2704 margin-left: -5px;
2705 border-left: 5px solid transparent;
2706 border-right: 5px solid transparent;
2707 border-bottom: 5px solid #000000;
2708}
2709.tooltip.right .tooltip-arrow {
2710 top: 50%;
2711 left: 0;
2712 margin-top: -5px;
2713 border-top: 5px solid transparent;
2714 border-bottom: 5px solid transparent;
2715 border-right: 5px solid #000000;
2716}
2717.tooltip-inner {
2718 max-width: 200px;
2719 padding: 3px 8px;
2720 color: #ffffff;
2721 text-align: center;
2722 text-decoration: none;
2723 background-color: #000000;
2724 -webkit-border-radius: 4px;
2725 -moz-border-radius: 4px;
2726 border-radius: 4px;
2727}
2728.tooltip-arrow {
2729 position: absolute;
2730 width: 0;
2731 height: 0;
2732}
2733.popover {
2734 position: absolute;
2735 top: 0;
2736 left: 0;
2737 z-index: 1010;
2738 display: none;
2739 padding: 5px;
2740}
2741.popover.top {
2742 margin-top: -5px;
2743}
2744.popover.right {
2745 margin-left: 5px;
2746}
2747.popover.bottom {
2748 margin-top: 5px;
2749}
2750.popover.left {
2751 margin-left: -5px;
2752}
2753.popover.top .arrow {
2754 bottom: 0;
2755 left: 50%;
2756 margin-left: -5px;
2757 border-left: 5px solid transparent;
2758 border-right: 5px solid transparent;
2759 border-top: 5px solid #000000;
2760}
2761.popover.right .arrow {
2762 top: 50%;
2763 left: 0;
2764 margin-top: -5px;
2765 border-top: 5px solid transparent;
2766 border-bottom: 5px solid transparent;
2767 border-right: 5px solid #000000;
2768}
2769.popover.bottom .arrow {
2770 top: 0;
2771 left: 50%;
2772 margin-left: -5px;
2773 border-left: 5px solid transparent;
2774 border-right: 5px solid transparent;
2775 border-bottom: 5px solid #000000;
2776}
2777.popover.left .arrow {
2778 top: 50%;
2779 right: 0;
2780 margin-top: -5px;
2781 border-top: 5px solid transparent;
2782 border-bottom: 5px solid transparent;
2783 border-left: 5px solid #000000;
2784}
2785.popover .arrow {
2786 position: absolute;
2787 width: 0;
2788 height: 0;
2789}
2790.popover-inner {
2791 padding: 3px;
2792 width: 280px;
2793 overflow: hidden;
2794 background: #000000;
2795 background: rgba(0, 0, 0, 0.8);
2796 -webkit-border-radius: 6px;
2797 -moz-border-radius: 6px;
2798 border-radius: 6px;
2799 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2800 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2801 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2802}
2803.popover-title {
2804 padding: 9px 15px;
2805 line-height: 1;
2806 background-color: #f5f5f5;
2807 border-bottom: 1px solid #eee;
2808 -webkit-border-radius: 3px 3px 0 0;
2809 -moz-border-radius: 3px 3px 0 0;
2810 border-radius: 3px 3px 0 0;
2811}
2812.popover-content {
2813 padding: 14px;
2814 background-color: #ffffff;
2815 -webkit-border-radius: 0 0 3px 3px;
2816 -moz-border-radius: 0 0 3px 3px;
2817 border-radius: 0 0 3px 3px;
2818 -webkit-background-clip: padding-box;
2819 -moz-background-clip: padding-box;
2820 background-clip: padding-box;
2821}
2822.popover-content p, .popover-content ul, .popover-content ol {
2823 margin-bottom: 0;
2824}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302825
Rushabh Mehtad0251332012-02-21 17:26:50 +05302826/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302827 * lib/css/bootstrap/label.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302828 */
2829.label {
Rushabh Mehta2886b952012-02-24 11:26:31 +05302830 padding: 2px 4px 3px;
2831 font-size: 11.049999999999999px;
2832 font-weight: bold;
2833 color: #ffffff;
2834 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2835 background-color: #999999;
2836 -webkit-border-radius: 3px;
2837 -moz-border-radius: 3px;
2838 border-radius: 3px;
2839}
2840.label:hover {
2841 color: #ffffff;
2842 text-decoration: none;
2843}
2844.label-important {
2845 background-color: #b94a48;
2846}
2847.label-important:hover {
2848 background-color: #953b39;
2849}
2850.label-warning {
2851 background-color: #f89406;
2852}
2853.label-warning:hover {
2854 background-color: #c67605;
2855}
2856.label-success {
2857 background-color: #468847;
2858}
2859.label-success:hover {
2860 background-color: #356635;
2861}
2862.label-info {
2863 background-color: #3a87ad;
2864}
2865.label-info:hover {
2866 background-color: #2d6987;
2867}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302868
Rushabh Mehta2886b952012-02-24 11:26:31 +05302869/*
2870 * lib/css/bootstrap/icons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302871 */
2872[class^="icon-"], [class*=" icon-"] {
Rushabh Mehta2886b952012-02-24 11:26:31 +05302873 display: inline-block;
2874 width: 14px;
2875 height: 14px;
2876 line-height: 14px;
2877 vertical-align: text-top;
2878 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2879 background-position: 14px 14px;
2880 background-repeat: no-repeat;
2881 *margin-right: .3em;
2882}
2883[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
2884 *margin-left: 0;
2885}
2886.icon-white {
2887 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
2888}
2889.icon-glass {
2890 background-position: 0 0;
2891}
2892.icon-music {
2893 background-position: -24px 0;
2894}
2895.icon-search {
2896 background-position: -48px 0;
2897}
2898.icon-envelope {
2899 background-position: -72px 0;
2900}
2901.icon-heart {
2902 background-position: -96px 0;
2903}
2904.icon-star {
2905 background-position: -120px 0;
2906}
2907.icon-star-empty {
2908 background-position: -144px 0;
2909}
2910.icon-user {
2911 background-position: -168px 0;
2912}
2913.icon-film {
2914 background-position: -192px 0;
2915}
2916.icon-th-large {
2917 background-position: -216px 0;
2918}
2919.icon-th {
2920 background-position: -240px 0;
2921}
2922.icon-th-list {
2923 background-position: -264px 0;
2924}
2925.icon-ok {
2926 background-position: -288px 0;
2927}
2928.icon-remove {
2929 background-position: -312px 0;
2930}
2931.icon-zoom-in {
2932 background-position: -336px 0;
2933}
2934.icon-zoom-out {
2935 background-position: -360px 0;
2936}
2937.icon-off {
2938 background-position: -384px 0;
2939}
2940.icon-signal {
2941 background-position: -408px 0;
2942}
2943.icon-cog {
2944 background-position: -432px 0;
2945}
2946.icon-trash {
2947 background-position: -456px 0;
2948}
2949.icon-home {
2950 background-position: 0 -24px;
2951}
2952.icon-file {
2953 background-position: -24px -24px;
2954}
2955.icon-time {
2956 background-position: -48px -24px;
2957}
2958.icon-road {
2959 background-position: -72px -24px;
2960}
2961.icon-download-alt {
2962 background-position: -96px -24px;
2963}
2964.icon-download {
2965 background-position: -120px -24px;
2966}
2967.icon-upload {
2968 background-position: -144px -24px;
2969}
2970.icon-inbox {
2971 background-position: -168px -24px;
2972}
2973.icon-play-circle {
2974 background-position: -192px -24px;
2975}
2976.icon-repeat {
2977 background-position: -216px -24px;
2978}
2979.icon-refresh {
2980 background-position: -240px -24px;
2981}
2982.icon-list-alt {
2983 background-position: -264px -24px;
2984}
2985.icon-lock {
2986 background-position: -287px -24px;
2987}
2988.icon-flag {
2989 background-position: -312px -24px;
2990}
2991.icon-headphones {
2992 background-position: -336px -24px;
2993}
2994.icon-volume-off {
2995 background-position: -360px -24px;
2996}
2997.icon-volume-down {
2998 background-position: -384px -24px;
2999}
3000.icon-volume-up {
3001 background-position: -408px -24px;
3002}
3003.icon-qrcode {
3004 background-position: -432px -24px;
3005}
3006.icon-barcode {
3007 background-position: -456px -24px;
3008}
3009.icon-tag {
3010 background-position: 0 -48px;
3011}
3012.icon-tags {
3013 background-position: -25px -48px;
3014}
3015.icon-book {
3016 background-position: -48px -48px;
3017}
3018.icon-bookmark {
3019 background-position: -72px -48px;
3020}
3021.icon-print {
3022 background-position: -96px -48px;
3023}
3024.icon-camera {
3025 background-position: -120px -48px;
3026}
3027.icon-font {
3028 background-position: -144px -48px;
3029}
3030.icon-bold {
3031 background-position: -167px -48px;
3032}
3033.icon-italic {
3034 background-position: -192px -48px;
3035}
3036.icon-text-height {
3037 background-position: -216px -48px;
3038}
3039.icon-text-width {
3040 background-position: -240px -48px;
3041}
3042.icon-align-left {
3043 background-position: -264px -48px;
3044}
3045.icon-align-center {
3046 background-position: -288px -48px;
3047}
3048.icon-align-right {
3049 background-position: -312px -48px;
3050}
3051.icon-align-justify {
3052 background-position: -336px -48px;
3053}
3054.icon-list {
3055 background-position: -360px -48px;
3056}
3057.icon-indent-left {
3058 background-position: -384px -48px;
3059}
3060.icon-indent-right {
3061 background-position: -408px -48px;
3062}
3063.icon-facetime-video {
3064 background-position: -432px -48px;
3065}
3066.icon-picture {
3067 background-position: -456px -48px;
3068}
3069.icon-pencil {
3070 background-position: 0 -72px;
3071}
3072.icon-map-marker {
3073 background-position: -24px -72px;
3074}
3075.icon-adjust {
3076 background-position: -48px -72px;
3077}
3078.icon-tint {
3079 background-position: -72px -72px;
3080}
3081.icon-edit {
3082 background-position: -96px -72px;
3083}
3084.icon-share {
3085 background-position: -120px -72px;
3086}
3087.icon-check {
3088 background-position: -144px -72px;
3089}
3090.icon-move {
3091 background-position: -168px -72px;
3092}
3093.icon-step-backward {
3094 background-position: -192px -72px;
3095}
3096.icon-fast-backward {
3097 background-position: -216px -72px;
3098}
3099.icon-backward {
3100 background-position: -240px -72px;
3101}
3102.icon-play {
3103 background-position: -264px -72px;
3104}
3105.icon-pause {
3106 background-position: -288px -72px;
3107}
3108.icon-stop {
3109 background-position: -312px -72px;
3110}
3111.icon-forward {
3112 background-position: -336px -72px;
3113}
3114.icon-fast-forward {
3115 background-position: -360px -72px;
3116}
3117.icon-step-forward {
3118 background-position: -384px -72px;
3119}
3120.icon-eject {
3121 background-position: -408px -72px;
3122}
3123.icon-chevron-left {
3124 background-position: -432px -72px;
3125}
3126.icon-chevron-right {
3127 background-position: -456px -72px;
3128}
3129.icon-plus-sign {
3130 background-position: 0 -96px;
3131}
3132.icon-minus-sign {
3133 background-position: -24px -96px;
3134}
3135.icon-remove-sign {
3136 background-position: -48px -96px;
3137}
3138.icon-ok-sign {
3139 background-position: -72px -96px;
3140}
3141.icon-question-sign {
3142 background-position: -96px -96px;
3143}
3144.icon-info-sign {
3145 background-position: -120px -96px;
3146}
3147.icon-screenshot {
3148 background-position: -144px -96px;
3149}
3150.icon-remove-circle {
3151 background-position: -168px -96px;
3152}
3153.icon-ok-circle {
3154 background-position: -192px -96px;
3155}
3156.icon-ban-circle {
3157 background-position: -216px -96px;
3158}
3159.icon-arrow-left {
3160 background-position: -240px -96px;
3161}
3162.icon-arrow-right {
3163 background-position: -264px -96px;
3164}
3165.icon-arrow-up {
3166 background-position: -289px -96px;
3167}
3168.icon-arrow-down {
3169 background-position: -312px -96px;
3170}
3171.icon-share-alt {
3172 background-position: -336px -96px;
3173}
3174.icon-resize-full {
3175 background-position: -360px -96px;
3176}
3177.icon-resize-small {
3178 background-position: -384px -96px;
3179}
3180.icon-plus {
3181 background-position: -408px -96px;
3182}
3183.icon-minus {
3184 background-position: -433px -96px;
3185}
3186.icon-asterisk {
3187 background-position: -456px -96px;
3188}
3189.icon-exclamation-sign {
3190 background-position: 0 -120px;
3191}
3192.icon-gift {
3193 background-position: -24px -120px;
3194}
3195.icon-leaf {
3196 background-position: -48px -120px;
3197}
3198.icon-fire {
3199 background-position: -72px -120px;
3200}
3201.icon-eye-open {
3202 background-position: -96px -120px;
3203}
3204.icon-eye-close {
3205 background-position: -120px -120px;
3206}
3207.icon-warning-sign {
3208 background-position: -144px -120px;
3209}
3210.icon-plane {
3211 background-position: -168px -120px;
3212}
3213.icon-calendar {
3214 background-position: -192px -120px;
3215}
3216.icon-random {
3217 background-position: -216px -120px;
3218}
3219.icon-comment {
3220 background-position: -240px -120px;
3221}
3222.icon-magnet {
3223 background-position: -264px -120px;
3224}
3225.icon-chevron-up {
3226 background-position: -288px -120px;
3227}
3228.icon-chevron-down {
3229 background-position: -313px -119px;
3230}
3231.icon-retweet {
3232 background-position: -336px -120px;
3233}
3234.icon-shopping-cart {
3235 background-position: -360px -120px;
3236}
3237.icon-folder-close {
3238 background-position: -384px -120px;
3239}
3240.icon-folder-open {
3241 background-position: -408px -120px;
3242}
3243.icon-resize-vertical {
3244 background-position: -432px -119px;
3245}
3246.icon-resize-horizontal {
3247 background-position: -456px -118px;
3248}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303249
Rushabh Mehta2886b952012-02-24 11:26:31 +05303250/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303251 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303252 */
3253h1, h2, h3, h4, h5 {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303254 font-family: Tahoma, Arial, Verdana, sans-serif;
3255 font-weight: bold;
3256}
3257
3258body {
3259 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
3260 font-size: 12px;
3261}
3262
3263span, div, td, input, textarea, button, select {
3264 font-family: inherit;
3265}
3266
3267body {
Rushabh Mehta5d267a42012-03-01 18:53:06 +05303268 background: url(../images/stripedbg.png) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303269}
3270
3271.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303272 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303273 text-align: center;
3274}
3275
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303276.module-icons {
3277 background: url(../images/module-icons.png) no-repeat top left;
3278 width:16px;
3279 height:16px;
3280}
3281
3282.module-icons-accounts{ background-position: 0 0; }
3283.module-icons-analysis{ background-position: 0 -66px; }
3284.module-icons-buying{ background-position: 0 -132px; }
3285.module-icons-home{ background-position: 0 -198px; }
3286.module-icons-hr{ background-position: 0 -264px; }
3287.module-icons-people{ background-position: 0 -330px; }
3288.module-icons-production{ background-position: 0 -396px; }
3289.module-icons-projects{ background-position: 0 -462px; }
3290.module-icons-selling{ background-position: 0 -528px; }
3291.module-icons-setup{ background-position: 0 -594px; }
3292.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05303293.module-icons-support{ background-position: 0 -726px; }
3294
Anand Doshidb628762012-02-24 17:56:00 +05303295.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303296 margin: -3px 0px;
3297 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303298 min-width: 20px;
3299 text-align: center;
3300 display: inline-block;
3301 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303302 color: #999999;
3303 background-color: #333131;
3304}
3305
3306.navbar-new-comments:hover,
3307.navbar-new-comments:active,
3308.navbar-new-comments:focus {
3309 color: #fff;
3310}
3311
3312
3313.navbar-new-comments-true {
3314 color: #fff;
3315 background-color: #B00D07;
3316}
3317
3318.navbar-icon-home {
3319 vertical-align: middle;
3320 opacity:0.4;
3321 Filter:alpha(opacity=40); /* For IE8 and earlier */
3322}
3323
3324.navbar-icon-home:hover,
3325.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05303326.navbar-icon-home:active,
3327.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303328 opacity:1;
3329 Filter:alpha(opacity=100); /* For IE8 and earlier */
3330}
3331
3332/*extra size menus for recent*/
3333.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3334 min-width: 160px !important;
3335 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303336}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303337