blob: 5e74fa2ef860d0ac03bdaab620051f0b6ac792fd [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 {
Rushabh Mehtab9878d02012-03-12 16:12:09 +053029 border: 1px solid #ccc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053030 -moz-border-radius: 4px;
31 -webkit-border-radius: 4px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053032 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053033 padding: 4px;
Rushabh Mehtab9878d02012-03-12 16:12:09 +053034 color: #444;
35 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
36 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
37 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
Rushabh Mehtaafaac602012-02-14 11:44:13 +053038}
39
40textarea {
41 font-family: inherit;
42 height: 120px;
43 width: 90%;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053044 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053045 white-space: normal;
46}
47
48table { padding: 0px; border-collapse: 'collapse'}
49
50td {
51 padding:0px;
52 margin: 0px;
53 vertical-align: top;
54}
55
56p {
57 margin: 0px 0px 9px 0px;
58 line-height: 1.5em;
59}
60
61li {
62 line-height: 1.5em;
63}
64
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053065hr {
66 margin: 18px 0;
67 border: 0;
68 border-top: 1px solid #e5e5e5;
69 border-bottom: 1px solid #ffffff;
70}
71
Rushabh Mehtad0251332012-02-21 17:26:50 +053072/* links */
73
Rushabh Mehtaafaac602012-02-14 11:44:13 +053074a:active { outline:none; }
75
Rushabh Mehtad0251332012-02-21 17:26:50 +053076a {
77 color: #0088cc;
78 text-decoration: none;
79}
80a:hover {
81 color: #005580;
82 text-decoration: underline;
83}
84
85.link_type {
86 padding:2px;
87 color: #0088cc;
88 cursor: pointer;
89}
90
91.link_type:hover {
92 color: #005580;
93 text-decoration: underline;
94}
95
Rushabh Mehtaafaac602012-02-14 11:44:13 +053096:focus { -moz-outline-style:none; }
97
98table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
99table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
100
101div.fix_ff_cursor { overflow: auto; }
102
103/* --- Layout --- */
104
105div.comment { color: #444; }
106
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530107.small {
108 font-size: 11px;
109}
110
111.help {
112 margin: 3px 0px;
113 color: #888;
114}
115
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530116div#body_div {
117 position: relative;
118 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530119 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530120 width: 900px;
121 margin: auto;
122 margin-top: 56px;
123}
124
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530125.content {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530126 width: 900px;
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530127 margin-bottom: 30px;
128 position: absolute;
129 -webkit-transition:all 0.5s ease-in-out;
130 -moz-transition:all 0.5s ease-in-out;
131 -o-transition:all 0.5s ease-in-out;
132 -ms-transition:all 0.5s ease-in-out;
133 transition:all 0.5s ease-in-out;
134}
135
136.background-fade-in {
137 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
138 -moz-transition: background 1s ease-in;
139 -o-transition: background 1s ease-in;
140 transition: background 1s ease-in;
141}
142
143/* selector for open pages */
144#opened-page-selector {
145 width: 900px;
146 height: 900px;
147 position: absolute;
148 z-index: 100;
149 opacity: 0;
150 background-color: #bdf;
151}
152
153#opened-page-selector.active {
154 opacity: 0.6;
155 cursor: pointer;
156}
157
158.popover-container {
159 height: 400px;
160}
161
162footer {
163 position: absolute;
164 bottom: 0px;
165 width: 100%;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530166}
167header .container {
168 width: 900px;
169 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530170}
171
Rushabh Mehta2438de42012-03-15 16:43:46 +0530172@media (max-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530173 div#body_div, header .container, .content, #opened-page-selector, footer {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530174 width: 900px;
175 }
176}
177
178@media (min-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530179 div#body_div, header .container, .content, #opened-page-selector, footer {
180 width: 1100px;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530181 }
182}
183
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530184div.no_script {
185 display: none;
186}
187
188div.loading_div {
189 position: absolute;
190 background-color: #FFFFCC;
191 z-index: 1999;
192 right: 5px;
193 width: 90px;
194 display: none;
195 text-align: center;
196 padding: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530197 border: 1px solid #FF4;
198}
199
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530200div.std-footer {
201 margin: 13px 0px;
202 border-top: 1px solid #AAA;
203 padding: 13px;
204}
205
206div.std-footer-item {
207 margin: 0px 13px 13px 0px;
208}
209
210.shadow {
211 -moz-box-shadow: 0px 2px 2px #888;
212 -webkit-box-shadow: 0px 2px 2px #888;
213 box-shadow: 0px 2px 2px #888;
214}
215
216.round {
217 -webkit-border-radius: 5px;
218 -moz-border-radius: 5px;
219 border-radius: 5px;
220}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530221
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530222.layout_wrapper, .layout-wrapper {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530223 -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
224 -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
225 box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530226 background-color: #fff;
227 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530228 margin-bottom: 30px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530229}
230
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530231.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530232 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530233 padding: 0px;
234}
235
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530236.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530237 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530238 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530239 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530240 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530241 min-height: 600px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530242 -moz-box-shadow: 7px 0px 6px -2px #ddd;
243 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
244 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530245}
246
247.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530248 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530249 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530250 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530251 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530252 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530253 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530254}
255
256/* from bootstrap */
257.container {
258 margin-left: auto;
259 margin-right: auto;
260 zoom: 1;
261}
262.container:before, .container:after {
263 display: table;
264 content: "";
265 zoom: 1;
266}
267.container:after {
268 clear: both;
269}
270
Anand Doshi40ee8d62012-02-24 19:21:47 +0530271.well {
272 min-height: 20px;
273 padding: 19px;
274 margin-bottom: 20px;
275 background-color: #f5f5f5;
276 border: 1px solid #eee;
277 border: 1px solid rgba(0, 0, 0, 0.05);
278 -webkit-border-radius: 4px;
279 -moz-border-radius: 4px;
280 border-radius: 4px;
281 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
282 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
283 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
284}
285
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530286.avatar-small {
287 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530288 width: 24px;
289 height: 20px;
290 vertical-align: middle;
291 overflow: hidden;
292 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530293}
294.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530295 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530296}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530297
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530298/*
299 * lib/css/legacy/messages.css
300 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530301
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530302/* FLOATING MESSAGE */
303
304.btn-img { cursor: pointer; }
305
306div.fetching { color: #888; text-align:right; }
307
308div.notice {
309 postion: absolute;
310 background-color: #000;
311 -moz-border-radius: 5px; -webkit-border-radius: 5px;
312 opacity: 0.6;
313 right: 0;
314 top: 0;
315 margin-top: 8px;
316 z-index: -1;
317 padding: 8px;
318}
319
320/** help **/
321
322.info-box {
323 background-color: #F8F8F8;
324 border: 1px solid #CCCCCC;
325 border-radius: 3px 3px 3px 3px;
326 line-height: 1.6em;
327 overflow: auto;
328 padding: 6px 10px;
329 margin-bottom: 9px;
330}
331
332.help_box, .help-box {
333 background-color:#FFC;
334 font-size: 13px;
335 color: #864;
336 padding: 7px;
337 margin: 11px 0px;
338 border: 1px solid #EEB;
339}
340
341.help_box_big {
342 background-color:#FFC;
343 color: #864;
344 padding: 7px;
345 margin: 7px 0px;
346 border: 1px solid #EEB;
347 text-align: center;
348 font-size: 14px;
349}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530350
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530351/*
352 * lib/css/legacy/forms.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530353 */
354/* FORMS */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530355
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530356div.form-section-head {
Rushabh Mehta38474e22012-03-13 16:11:52 +0530357 margin: 11px 0px 3px 0px;
358 border-top: 1px solid #ccc;
359 padding-top: 11px;
360}
361
362div.form-layout-row:first-child .form-section-head {
363 border-top: 0px solid #ccc !important;
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530364}
365
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530366div.form-section-head h3 {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530367 line-height: 20px;
368}
369
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530370div.form-section-head hr {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530371 margin: 9px 0px;
372}
373
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530374
375div.frm_print_wrapper {
376 background-color:#FFF;
377 border:1px solid #444;
378 padding: 40px;
379
380 box-shadow:1px 1px 8px #229;
381 -moz-box-shadow: 1px 1px 8px #229;
382 -webkit-box-shadow: 1px 1px 8px #229;
383}
384
385div.page_break {
386 margin: 24px 0px;
387 border-top: 1px dashed #888;
388}
389
390div.grid_tbarlinks {
391 border-bottom: 0px;
392 background-color: #CCC;
393 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530394 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530395 float: right;
396
397 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
398 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
399}
400
401
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530402div.dialog_frm {
403 position: relative;
404 margin: 10px;
405}
406
407
408
409/*------------------*/
410
411.top_cell {
412 height: 50px;
413}
414
415div.attach_area {
416 padding: 8px;
417 margin: 8px;
418 background-color: #EEE;
419}
420
421div.attach_area table {
422 width: 100%;
423}
424
425.tablabel_normal {
426 margin: 0 4px 0 0;
427 padding: 3px 5px;
428 line-height: 1.3em;
429 display: inline;
430 cursor: pointer;
431}
432
433.tablabel_selected {
434 margin: 0 4px 0 0;
435 padding: 3px 5px;
436 line-height: 1.3em;
437 font-weight: bold;
438 display: inline;
439 cursor: pointer;
440 color: #000;
441}
442
443.scrollhead_wrapper {
444 position: absolute;
445 z-index: 1;
446 height: 30px;
447}
448
449.treeimg {
450 cursor: pointer;
451 margin-right: 3px;
452}
453
454
455.sectionCell {
456 padding: 5px;
457 vertical-align: top;
458}
459
460.code_area {
461 width: 80%;
462 margin: 8px;
463 padding: 4px;
464 background-color: #F8F8F8;
465 border: 1px solid #CCC;
466 overflow-x: auto;
467}
468
469.code_text {
470 width: 100%;
471 height: 360px;
472 margin-top: 3px;
473 font-family: Courier, Fixed;
474 font-size: 12px;
475}
476
477div.time_field select{
478 display: inline;
479 margin: 2px;
480 width: 45px;
481}
482
483/* Documents */
484
485.frm_field_table {
486 width: 100%;
487 border-collapse: collapse;
488}
489
490.datalabelcell {
491 padding: 2px 0px;
492 width: 160px;
493 vertical-align: top;
494}
495.datainputcell { padding: 2px 0px; }
496
497
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530498.help ol {
499 padding-left: 19px;
500}
501
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530502.field_description_top {
503 margin-bottom: 3px;
504}
505
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530506.input_area input, select, textarea {
507 font-size: 14px;
508 padding: 2px;
509}
510
511.input_area input {
512 width: 80%;
513 margin: 0px;
514}
515.input_area select {
516 width: 80%;
517}
518.input_area textarea {
519 width: 90%;
520}
521
522.disp_area {
523 width: 80%;
524 padding: 2px 0px;
525 font-size: 12px;
526}
527.disp_area_no_val {
528 height: 14px;
529}
530
531.no_img {
532 padding: 40px;
533 width: 100px;
534 height: 20px;
535 color: #888;
536 text-align: center;
537 border: 1px solid #AAA;
538}
539
540.input-mandatory {
541 font-size: 14px !important;
542 font-weight: bold;
543}
544
545.field-to-update {
546 background-color:#FEE;
547}
548
549/* sidebar */
550
551div.sidebar-comment-wrapper input {
552 width: 50%;
553}
554div.sidebar-comment-message {
555 margin-top: 8px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530556 color: #777;
557}
558
559div.sidebar-comment-text {
560 font-size: 12px;
561 font-weight: bold;
562 margin-top: 8px;
563 color: #444;
564}
565div.sidebar-comment-info {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530566 color: #777;
567}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530568
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530569/*
570 * lib/css/legacy/grid.css
571 */
572
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530573
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530574/* Grid */
575
576
577/* --- Simple --- */
578.grid_wrapper_simple {
579 width: 100%;
580 margin-bottom: 8px;
581 border: 1px solid #AA9;
582}
583
584.grid_head_wrapper_simple {
585 padding: 0px;
586 border-bottom: 2px solid #AAA;
587}
588
589.grid_head_wrapper_simple td {
590 border-right: 1px solid #AA9;
591}
592
593.grid_head_wrapper_simple td div {
594 padding: 2px;
595}
596
597.grid_tab_wrapper_simple {
598}
599
600.grid_cell_simple {
601 padding: 2px;
602 background-color: #fff;
603 border-right: 1px solid #AA9;
604}
605
606
607/* --- Normal --- */
608.grid_wrapper {
609 position: relative;
610 overflow: auto;
611 border: 1px solid #AAA;
612 width: 100%;
613 margin-bottom: 8px;
614 background-color: #fff;
615}
616
617.grid_tab_wrapper {
618 position: absolute;
619 top: 40px;
620 border-bottom: 1px solid #DDD;
621}
622
623.grid_table, .grid_head_table {
624 table-layout: fixed;
625 border-collapse: collapse;
626 /*width: 100%;*/
627}
628
629.grid_cell {
630 border-right: 1px solid #ddd;
631 padding: 0px;
632 background-color: #fff;
633}
634
635.grid_head_wrapper {
636 position: absolute;
637 z-index: 1;
638 height: 40px;
639 padding: 0px;
640 overflow: hidden;
641 /*background-color: #fff;*/
642}
643
644.grid_head_table td {
645 background-color: #EEE;
646 border-right: 1px solid #AAA;
647 border-bottom: 1px solid #AAA;
648 height: 40px;
649 padding: 0px;
650}
651
652.grid_head_table td div {
653 color: #222;
654 font-weight: bold;
655 overflow: hidden;
656 padding: 2px 0px;
657 text-align: center;
658}
659
660.grid_selector {
661 padding: 1px;
662 border-right: 1px solid #DDD;
663 width: 20px;
664 background-color: #fff;
665}
666
667.grid_cell_div {
668 padding: 2px;
669 cursor: pointer;
670 overflow: hidden;
671 border: 2px solid #FFF;
672}
673
674.grid_cell_div_selected {
675 border: 2px solid #88f;
676}
677
678.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
679 margin: 0px;
680 border: 0px;
681 width: 100%;
682 margin: 0px;
683 }
684
685.grid_cell_div textarea {
686 border: 3px solid #abf;
687 height:200px;
688 width: 300px;
689 z-index: 10;
690 position:absolute;
691}
692
693.gridDivSelected option { border: 0px; }
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530694
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530695/*
696 * lib/css/legacy/listing.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530697 */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530698
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530699
700/* SRS */
701
702table.srs_result_tab {
703 border: 2px solid #AAA;
704 border-collapse: collapse;
705}
706
707/* firefox bug fix for disappering borders */
708table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
709 position: static;
710}
711
712table.srs_result_tab td {
713 padding: 3px 2px;
714 position: static;
715}
716
717div.srs_body_area {
718}
719
720div.srs_results_area {
721}
722
723div.srs_filter_wrapper {
724 border: 1px solid #CCF;
725
726 background-color: #EEF;
727 margin:0px 0px 8px 0px;
728
729 -moz-border-radius: 5px;
730 -webkit-border-radius: 5px;
731 border-radius: 5px;
732}
733
734div.srs_filter_area {
735 padding: 8px;
736}
737
738div.srs_filter_area td {
739 vertical-align: middle;
740}
741
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530742/*
743 * lib/css/legacy/report.css
744 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530745
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530746/* Reports */
747
748div.report_grid_area {
749 position: relative;
750 padding: 8px;
751}
752
753
754div.report_tab {
755 border: 1px solid #AAA;
756 position: relative;
757 overflow: auto;
758}
759
760div.report_no_data {
761 padding: 8px;
762 background-color: #EEE;
763 border: 1px solid #DDD;
764 position: absolute;
765 margin-left: 40%;
766 margin-top: 50px;
767 display: none;
768}
769
770div.report_htitle {
771 float: left;
772 padding: 2px;
773 font-size: 14px;
774 font-weight: bold;
775 margin-left: 4px;
776 color: #665;
777 /*font-weight: bold;*/
778}
779
780div.report_tbar {
781 background-color: #EEF;
782 border: 1px solid #CCF;
783 border-bottom: 0px;
784 height: 28px;
785}
786
787div.report_tbar table{
788 width: 100%;
789}
790div.report_tbar table td {
791
792}
793div.report_tbar table td div {
794 position: relative;
795}
796div.report_tbar button, div.report_tbar select, div.report_tbar img {
797 font-size: 11px;
798 margin: 0px;
799}
800
801div.report_head_wrapper {
802 position: absolute;
803 height: 24px;
804 top: 0px;
805 z-index: 1;
806}
807
808div.report_tab_wrapper {
809 position: absolute;
810 border-bottom: 1px solid #AAA;
811 border-top: 1px solid #AAA;
812}
813
814div.report_tab_wrapper table, div.report_head_wrapper table {
815 table-layout: fixed;
816 border-collapse: collapse;
817 /*width: 100%;*/
818}
819
820div.report_tab_wrapper table td, div.report_head_wrapper table td {
821 border-left: 1px solid #AAA;
822 border-right: 1px solid #AAA;
823 border-bottom: 1px solid #AAA;
824 overflow: hidden;
825 padding: 0px;
826}
827
828div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
829 padding: 3px;
830 overflow: hidden;
831}
832
833.report_head_cell {
834 background-color: #EEE;
835 border-bottom: 1px solid #AA9;
836 text-align: center;
837 font-weight: bold;
838}
839.report_head_cell div {
840 color:#222;
841 height: 18px;
842}
843
844
845/* FINDER */
846
847div.finder_wrapper {
848}
849
850div.finder_body_area {
851 margin: 16px;
852}
853
854div.finder_body {
855 display: none;
856}
857
858div.finder_advanced_area table {
859 width: 80%;
860}
861
862div.finder_advanced_area textarea {
863 width: 80%;
864}
865
866div.finder_filter_area {
867 position: relative;
868}
869
870div.filter_head {
871 font-size: 14px;
872 margin-bottom: 2px;
873}
874div.filter_dt_head {
875 font-size: 14px;
876 font-weight: bold;
877 margin-bottom: 2px;
878}
879table.filter_tab {
880 width: 96%;
881 border-collapse: collapse;
882}
883
884table.filter_tab td {
885 width: 50%;
886}
887
888div.finder_picker_area {
889
890}
891div.builder_field {
892 margin: 0px;
893}
894div.builder_dt_head {
895 font-size: 14px;
896 font-weight: bold;
897 margin-bottom: 2px;
898}
899
900div.builder_field table {
901 width: 90%;
902 border-collapse: collapse;
903}
904
905div.builder_label {
906 height: 20px;
907}
908
909div.builder_head {
910 font-size: 16px;
911 font-weight: bold;
912 color: #AB6;
913}
914
915table.builder_tab {
916 width: 96%;
917 border-collapse: collapse;
918}
919
920table.builder_tab td {
921 width: 33%;
922 padding: 2px;
923}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530924
925/*
926 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530927 */
928/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530929
930div.dialog_wrapper {
931 position: absolute;
932 width: 440px;
933 display: none;
934 z-index: 90;
935 background-color: #FFF;
936 border: 3px solid #222;
937 box-shadow:1px 1px 5px #777;
938 -moz-box-shadow: 1px 1px 5px #777;
939 -webkit-box-shadow: 1px 1px 5px #777;
940
941 border-radius: 5px;
942 -moz-border-radius: 5px;
943 -webkit-border-radius: 5px;
944}
945
946div.dialog_head {
947 height: 22px;
948 padding: 4px;
949 background-color: #222;
950 color: #FFF;
951}
952
953div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530954 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530955 border-radius: 5px;
956 -moz-border-radius: 5px;
957 -webkit-border-radius: 5px;
958}
959
960div.dialog_back {
961 position: fixed;
962 display: none;
963 top: 0px;
964 left: 0px;
965 bottom: 0px;
966 right: 0px;
967 background-color: #EEE;
968 opacity: 0.6;
969 z-index: 50;
970 text-align: center;
971}
972
973div.dialog_message {
974 display: none;
975 position: absolute;
976 width: 250px;
977 font-size: 12px;
978 z-index: 91;
979 background-color:#FFF;
980 padding: 12px;
981 border: 1px solid #444;
982}
983
984div.dialog_row {
985 padding: 8px 8px 0px 8px;
986}
987
988div.dialog_row table {
989 width: 100%;
990}
991
992div.dialog_row table td {
993}
994
995div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
996 width: 80%;
997 font-size: 14px;
998}
999
1000div.dialog_row table td textarea {
1001 width: 80%;
1002 height: 200px;
1003 font-size: 12px;
1004}
1005
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301006
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301007/*
1008 * lib/css/legacy/tabs.css
1009 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301010
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301011/******* TABS ********/
1012
1013div.box_label_wrapper {
1014 border-bottom: 6px solid #777;
1015}
1016
1017div.box_label_body {
1018 height: 22px;
1019}
1020
1021ul.box_tabs {
1022 margin: 0px;
1023 padding: 0px;
1024 list-style: none;
1025}
1026
1027ul.box_tabs li {
1028 height: 22px;
1029 float:left;
1030 font-size: 12px;
1031 text-decoration: underline;
1032
1033 background-color: #DDD;
1034
1035 margin:0;
1036 margin-left: 4px;
1037 padding:0 0 0 9px;
1038 cursor: pointer;
1039}
1040
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301041ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301042 display:block;
1043 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301044 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301045}
1046
1047ul.box_tabs li.box_tab_mouseover {
1048 background-color: #BBB;
1049}
1050
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301051ul.box_tabs li.box_tab_selected {
1052 background-color: #777;
1053
1054 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1055 background: -moz-linear-gradient(top, #999, #777);
1056
1057 color: #FFF;
1058 font-weight:bold;
1059
1060}
1061ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301062 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301063}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301064
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301065/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301066 * lib/css/legacy/sidebar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301067 */
1068div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301069}
1070
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301071div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301072 font-size: 14px;
1073 font-weight: bold;
1074 color: #555;
1075 margin-bottom: 12px;
1076}
1077
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301078div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301079 margin-bottom: 11px;
1080 overflow: hidden;
1081}
1082
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301083div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301084 padding: 5px 11px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301085 border-bottom: 1px solid #aaa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301086}
1087
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301088div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301089 margin: 7px 11px 11px 11px;
1090}
1091
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301092div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301093 margin-bottom: 7px;
1094}
1095
Rushabh Mehtad0251332012-02-21 17:26:50 +05301096div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301097 color: #666;
1098}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301099
1100/*
1101 * lib/css/Aristo/aristo.selected.css
1102 */
1103/*
1104 * jQuery UI CSS Framework 1.8.7
1105 *
1106 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1107 * Dual licensed under the MIT or GPL Version 2 licenses.
1108 * http://jquery.org/license
1109 *
1110 * http://docs.jquery.com/UI/Theming/API
1111 */
1112
1113/* Layout helpers
1114----------------------------------*/
1115.ui-helper-hidden { display: none; }
1116.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
1117.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
1118.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
1119.ui-helper-clearfix { display: inline-block; }
1120/* required comment for clearfix to work in Opera \*/
1121* html .ui-helper-clearfix { height:1%; }
1122.ui-helper-clearfix { display:block; }
1123/* end clearfix */
1124.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
1125
1126
1127/* Interaction Cues
1128----------------------------------*/
1129.ui-state-disabled { cursor: default !important; }
1130
1131
1132/* Icons
1133----------------------------------*/
1134
1135/* states and images */
1136.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
1137
1138
1139/* Misc visuals
1140----------------------------------*/
1141
1142/* Overlays */
1143.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1144
1145
1146/*
1147 * jQuery UI CSS Framework 1.8.7
1148 *
1149 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1150 * Dual licensed under the MIT or GPL Version 2 licenses.
1151 * http://jquery.org/license
1152 *
1153 * http://docs.jquery.com/UI/Theming/API
1154 *
1155 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
1156 */
1157
1158
1159/* Component containers
1160----------------------------------*/
1161.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
1162.ui-widget .ui-widget { font-size: 1em; }
1163.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
1164.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
1165.ui-widget-content a { color: #4F4F4F; }
1166.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
1167.ui-widget-header {
1168 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1169 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1170 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1171 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1172 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1173 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1174 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1175}
1176.ui-widget-header a { color: #4F4F4F; }
1177
1178/* Interaction states
1179----------------------------------*/
1180.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
1181.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1182 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1183 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1184 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1185 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1186 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1187 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1188 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1189 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1190 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1191 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1192}
1193.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
1194.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; }
1195.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
1196.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
1197 outline: none;
1198 color: #1c4257; border: 1px solid #7096ab;
1199 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
1200 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
1201 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
1202 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
1203 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
1204 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
1205 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
1206 -webkit-box-shadow: none;
1207 -moz-box-shadow: none;
1208 box-shadow: none;
1209}
1210.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
1211.ui-widget :active { outline: none; }
1212
1213/* Interaction Cues
1214----------------------------------*/
1215.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; }
1216.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
1217.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; }
1218.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
1219.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
1220.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
1221.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
1222.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
1223
1224/* Icons
1225----------------------------------*/
1226
1227/* states and images */
1228.ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1229.ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1230.ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1231.ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1232.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1233.ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1234.ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1235.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; }
1236.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
1237
1238/* positioning */
1239.ui-icon-carat-1-n { background-position: 0 0; }
1240.ui-icon-carat-1-ne { background-position: -16px 0; }
1241.ui-icon-carat-1-e { background-position: -32px 0; }
1242.ui-icon-carat-1-se { background-position: -48px 0; }
1243.ui-icon-carat-1-s { background-position: -64px 0; }
1244.ui-icon-carat-1-sw { background-position: -80px 0; }
1245.ui-icon-carat-1-w { background-position: -96px 0; }
1246.ui-icon-carat-1-nw { background-position: -112px 0; }
1247.ui-icon-carat-2-n-s { background-position: -128px 0; }
1248.ui-icon-carat-2-e-w { background-position: -144px 0; }
1249.ui-icon-triangle-1-n { background-position: 0 -16px; }
1250.ui-icon-triangle-1-ne { background-position: -16px -16px; }
1251.ui-icon-triangle-1-e { background-position: -32px -16px; }
1252.ui-icon-triangle-1-se { background-position: -48px -16px; }
1253.ui-icon-triangle-1-s { background-position: -64px -16px; }
1254.ui-icon-triangle-1-sw { background-position: -80px -16px; }
1255.ui-icon-triangle-1-w { background-position: -96px -16px; }
1256.ui-icon-triangle-1-nw { background-position: -112px -16px; }
1257.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
1258.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
1259.ui-icon-arrow-1-n { background-position: 0 -32px; }
1260.ui-icon-arrow-1-ne { background-position: -16px -32px; }
1261.ui-icon-arrow-1-e { background-position: -32px -32px; }
1262.ui-icon-arrow-1-se { background-position: -48px -32px; }
1263.ui-icon-arrow-1-s { background-position: -64px -32px; }
1264.ui-icon-arrow-1-sw { background-position: -80px -32px; }
1265.ui-icon-arrow-1-w { background-position: -96px -32px; }
1266.ui-icon-arrow-1-nw { background-position: -112px -32px; }
1267.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
1268.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
1269.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
1270.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
1271.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
1272.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
1273.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
1274.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
1275.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
1276.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
1277.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
1278.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
1279.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
1280.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
1281.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
1282.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
1283.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
1284.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
1285.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
1286.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
1287.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
1288.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
1289.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
1290.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
1291.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
1292.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
1293.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
1294.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
1295.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
1296.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
1297.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
1298.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
1299.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
1300.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
1301.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
1302.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
1303.ui-icon-arrow-4 { background-position: 0 -80px; }
1304.ui-icon-arrow-4-diag { background-position: -16px -80px; }
1305.ui-icon-extlink { background-position: -32px -80px; }
1306.ui-icon-newwin { background-position: -48px -80px; }
1307.ui-icon-refresh { background-position: -64px -80px; }
1308.ui-icon-shuffle { background-position: -80px -80px; }
1309.ui-icon-transfer-e-w { background-position: -96px -80px; }
1310.ui-icon-transferthick-e-w { background-position: -112px -80px; }
1311.ui-icon-folder-collapsed { background-position: 0 -96px; }
1312.ui-icon-folder-open { background-position: -16px -96px; }
1313.ui-icon-document { background-position: -32px -96px; }
1314.ui-icon-document-b { background-position: -48px -96px; }
1315.ui-icon-note { background-position: -64px -96px; }
1316.ui-icon-mail-closed { background-position: -80px -96px; }
1317.ui-icon-mail-open { background-position: -96px -96px; }
1318.ui-icon-suitcase { background-position: -112px -96px; }
1319.ui-icon-comment { background-position: -128px -96px; }
1320.ui-icon-person { background-position: -144px -96px; }
1321.ui-icon-print { background-position: -160px -96px; }
1322.ui-icon-trash { background-position: -176px -96px; }
1323.ui-icon-locked { background-position: -192px -96px; }
1324.ui-icon-unlocked { background-position: -208px -96px; }
1325.ui-icon-bookmark { background-position: -224px -96px; }
1326.ui-icon-tag { background-position: -240px -96px; }
1327.ui-icon-home { background-position: 0 -112px; }
1328.ui-icon-flag { background-position: -16px -112px; }
1329.ui-icon-calendar { background-position: -32px -112px; }
1330.ui-icon-cart { background-position: -48px -112px; }
1331.ui-icon-pencil { background-position: -64px -112px; }
1332.ui-icon-clock { background-position: -80px -112px; }
1333.ui-icon-disk { background-position: -96px -112px; }
1334.ui-icon-calculator { background-position: -112px -112px; }
1335.ui-icon-zoomin { background-position: -128px -112px; }
1336.ui-icon-zoomout { background-position: -144px -112px; }
1337.ui-icon-search { background-position: -160px -112px; }
1338.ui-icon-wrench { background-position: -176px -112px; }
1339.ui-icon-gear { background-position: -192px -112px; }
1340.ui-icon-heart { background-position: -208px -112px; }
1341.ui-icon-star { background-position: -224px -112px; }
1342.ui-icon-link { background-position: -240px -112px; }
1343.ui-icon-cancel { background-position: 0 -128px; }
1344.ui-icon-plus { background-position: -16px -128px; }
1345.ui-icon-plusthick { background-position: -32px -128px; }
1346.ui-icon-minus { background-position: -48px -128px; }
1347.ui-icon-minusthick { background-position: -64px -128px; }
1348.ui-icon-close { background-position: -80px -128px; }
1349.ui-icon-closethick { background-position: -96px -128px; }
1350.ui-icon-key { background-position: -112px -128px; }
1351.ui-icon-lightbulb { background-position: -128px -128px; }
1352.ui-icon-scissors { background-position: -144px -128px; }
1353.ui-icon-clipboard { background-position: -160px -128px; }
1354.ui-icon-copy { background-position: -176px -128px; }
1355.ui-icon-contact { background-position: -192px -128px; }
1356.ui-icon-image { background-position: -208px -128px; }
1357.ui-icon-video { background-position: -224px -128px; }
1358.ui-icon-script { background-position: -240px -128px; }
1359.ui-icon-alert { background-position: 0 -144px; }
1360.ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
1361.ui-icon-notice { background-position: -32px -144px; }
1362.ui-icon-help { background-position: -48px -144px; }
1363.ui-icon-check { background-position: -64px -144px; }
1364.ui-icon-bullet { background-position: -80px -144px; }
1365.ui-icon-radio-off { background-position: -96px -144px; }
1366.ui-icon-radio-on { background-position: -112px -144px; }
1367.ui-icon-pin-w { background-position: -128px -144px; }
1368.ui-icon-pin-s { background-position: -144px -144px; }
1369.ui-icon-play { background-position: 0 -160px; }
1370.ui-icon-pause { background-position: -16px -160px; }
1371.ui-icon-seek-next { background-position: -32px -160px; }
1372.ui-icon-seek-prev { background-position: -48px -160px; }
1373.ui-icon-seek-end { background-position: -64px -160px; }
1374.ui-icon-seek-start { background-position: -80px -160px; }
1375/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1376.ui-icon-seek-first { background-position: -80px -160px; }
1377.ui-icon-stop { background-position: -96px -160px; }
1378.ui-icon-eject { background-position: -112px -160px; }
1379.ui-icon-volume-off { background-position: -128px -160px; }
1380.ui-icon-volume-on { background-position: -144px -160px; }
1381.ui-icon-power { background-position: 0 -176px; }
1382.ui-icon-signal-diag { background-position: -16px -176px; }
1383.ui-icon-signal { background-position: -32px -176px; }
1384.ui-icon-battery-0 { background-position: -48px -176px; }
1385.ui-icon-battery-1 { background-position: -64px -176px; }
1386.ui-icon-battery-2 { background-position: -80px -176px; }
1387.ui-icon-battery-3 { background-position: -96px -176px; }
1388.ui-icon-circle-plus { background-position: 0 -192px; }
1389.ui-icon-circle-minus { background-position: -16px -192px; }
1390.ui-icon-circle-close { background-position: -32px -192px; }
1391.ui-icon-circle-triangle-e { background-position: -48px -192px; }
1392.ui-icon-circle-triangle-s { background-position: -64px -192px; }
1393.ui-icon-circle-triangle-w { background-position: -80px -192px; }
1394.ui-icon-circle-triangle-n { background-position: -96px -192px; }
1395.ui-icon-circle-arrow-e { background-position: -112px -192px; }
1396.ui-icon-circle-arrow-s { background-position: -128px -192px; }
1397.ui-icon-circle-arrow-w { background-position: -144px -192px; }
1398.ui-icon-circle-arrow-n { background-position: -160px -192px; }
1399.ui-icon-circle-zoomin { background-position: -176px -192px; }
1400.ui-icon-circle-zoomout { background-position: -192px -192px; }
1401.ui-icon-circle-check { background-position: -208px -192px; }
1402.ui-icon-circlesmall-plus { background-position: 0 -208px; }
1403.ui-icon-circlesmall-minus { background-position: -16px -208px; }
1404.ui-icon-circlesmall-close { background-position: -32px -208px; }
1405.ui-icon-squaresmall-plus { background-position: -48px -208px; }
1406.ui-icon-squaresmall-minus { background-position: -64px -208px; }
1407.ui-icon-squaresmall-close { background-position: -80px -208px; }
1408.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
1409.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
1410.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
1411.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
1412.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
1413.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
1414
1415
1416/* Misc visuals
1417----------------------------------*/
1418
1419/* Corner radius */
1420.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
1421.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
1422.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
1423.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1424.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; }
1425.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; }
1426.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; }
1427.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; }
1428.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
1429
1430/* Overlays */
1431.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
1432.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; }
1433
1434/*
1435 * jQuery UI Autocomplete 1.8.7
1436 *
1437 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1438 * Dual licensed under the MIT or GPL Version 2 licenses.
1439 * http://jquery.org/license
1440 *
1441 * http://docs.jquery.com/UI/Autocomplete#theming
1442 */
1443.ui-autocomplete {
1444 position: absolute; cursor: default; z-index: 3;
1445 -moz-border-radius: 0;
1446 -webkit-border-radius: 0;
1447 border-radius: 0;
1448 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1449 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1450 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1451}
1452
1453/* workarounds */
1454* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
1455
1456/*
1457 * jQuery UI Menu 1.8.7
1458 *
1459 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1460 * Dual licensed under the MIT or GPL Version 2 licenses.
1461 * http://jquery.org/license
1462 *
1463 * http://docs.jquery.com/UI/Menu#theming
1464 */
1465.ui-menu {
1466 list-style:none;
1467 padding: 2px;
1468 margin: 0;
1469 display:block;
1470 float: left;
1471}
1472.ui-menu .ui-menu {
1473 margin-top: -3px;
1474}
1475.ui-menu .ui-menu-item {
1476 margin:0;
1477 padding: 0;
1478 zoom: 1;
1479 float: left;
1480 clear: left;
1481 width: 100%;
1482}
1483.ui-menu .ui-menu-item a {
1484 text-decoration:none;
1485 display:block;
1486 padding:.2em .4em;
1487 line-height:1.5;
1488 zoom:1;
1489}
1490.ui-menu .ui-menu-item a.ui-state-hover,
1491.ui-menu .ui-menu-item a.ui-state-active {
1492 font-weight: normal;
1493 margin: -1px;
1494 background: #5f83b9;
1495 color: #FFFFFF;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301496 border-color: #466086;
1497 -moz-border-radius: 0;
1498 -webkit-border-radius: 0;
1499 border-radius: 0;
1500}
1501
1502/*
1503 * jQuery UI Datepicker 1.8.7
1504 *
1505 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1506 * Dual licensed under the MIT or GPL Version 2 licenses.
1507 * http://jquery.org/license
1508 *
1509 * http://docs.jquery.com/UI/Datepicker#theming
1510 */
1511.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
1512.ui-datepicker {
1513 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1514 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1515 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1516}
1517.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; }
1518.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
1519.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
1520.ui-datepicker .ui-datepicker-prev { left:2px; }
1521.ui-datepicker .ui-datepicker-next { right:2px; }
1522.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
1523.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
1524.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
1525.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
1526.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; }
1527.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); }
1528.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
1529.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
1530.ui-datepicker select.ui-datepicker-month,
1531.ui-datepicker select.ui-datepicker-year { width: 49%;}
1532.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
1533.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
1534.ui-datepicker td { border: 0; padding: 1px; }
1535.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
1536.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; }
1537.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
1538.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
1539.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
1540.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; }
1541.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
1542.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
1543
1544/* with multiple calendars */
1545.ui-datepicker.ui-datepicker-multi { width:auto; }
1546.ui-datepicker-multi .ui-datepicker-group { float:left; }
1547.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
1548.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
1549.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
1550.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
1551.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
1552.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
1553.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
1554.ui-datepicker-row-break { clear:both; width:100%; }
1555
1556/* RTL support */
1557.ui-datepicker-rtl { direction: rtl; }
1558.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
1559.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
1560.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
1561.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
1562.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
1563.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
1564.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
1565.ui-datepicker-rtl .ui-datepicker-group { float:right; }
1566.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1567.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1568
1569/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1570.ui-datepicker-cover {
1571 display: none; /*sorry for IE5*/
1572 display/**/: block; /*sorry for IE5*/
1573 position: absolute; /*must have*/
1574 z-index: -1; /*must have*/
1575 filter: mask(); /*must have*/
1576 top: -4px; /*must have*/
1577 left: -4px; /*must have*/
1578 width: 200px; /*must have*/
1579 height: 200px; /*must have*/
1580}
1581
1582
1583
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301584/*
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301585 * lib/css/ui/list.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301586 */
1587.hide {
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301588 display: none;
1589}
1590
1591.list-filters {
1592 margin: 7px 0px;
1593}
1594
1595.wnlist .img-load {
1596 display: none;
1597 float: left;
1598 margin-left: 11px;
1599 margin-top: 8px;
1600}
1601
Rushabh Mehta2438de42012-03-15 16:43:46 +05301602/* list-row */
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301603div.list-row {
1604 border-bottom: 1px solid #eee;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301605 padding: 5px 0px;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301606}
1607div.list-row:hover {
1608 background-color: #eef
1609}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301610
Rushabh Mehta2438de42012-03-15 16:43:46 +05301611div.list-row .label {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301612 margin-right: 4px;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301613}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301614
1615div.list-row table {
1616 table-layout: fixed;
1617 border-collapse: collapse;
1618 width: 100%;
1619}
1620
1621div.list-row table td {
1622 overflow: hidden;
1623 padding-right: 3px;
1624 vertical-align: middle;
1625 height: 24px;
1626 max-height: 24px;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301627}
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301628
Rushabh Mehta9f89e352012-03-09 17:51:39 +05301629div.paging-button {
1630 text-align: center;
1631 padding: 11px 0px;
1632}
1633
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301634div.show_filters {
1635 display: none;
1636}
1637
1638div.filter_list {
1639 padding: 13px;
1640}
1641
1642div.show_filters.well {
1643 margin-top: 11px;
1644 margin-bottom: 11px;
1645}
1646
1647div.filter_list .run_btn {
1648 text-align: right;
1649}
1650
1651div.filter_list .add_filter {
1652 margin: 3px 0px;
1653}
1654
1655div.list_filter {
1656 margin: 7px 0px;
1657}
1658
1659div.list_filter input, div.list_filter select {
1660 width: 130px;
1661 margin-right: 7px;
1662}
1663
Rushabh Mehta2438de42012-03-15 16:43:46 +05301664/* bar */
1665
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301666span.bar-outer {
1667 display: inline-block;
1668 margin: 0px 7px;
1669 margin-top: 3px;
1670 background-color: #fff;
1671 border: 1px solid #aaa;
1672 height: 10px;
1673}
1674
1675span.bar-inner {
1676 display: inline-block;
1677 background-color: #bdf;
1678 height: 100%;
1679 margin-bottom: 2px;
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301680 float: left;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301681}
1682span.bar-complete {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301683 background-color: #009900;
1684}
1685span.bar-empty {
1686 background-color: #990000;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301687}
1688
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301689
Rushabh Mehta2438de42012-03-15 16:43:46 +05301690/* stats */
1691
1692div.stat-wrapper {
1693 margin-bottom: 19px;
1694}
1695
1696div.stat-grid {
1697 border: 2px solid #bbb;
1698 background-color: white;
1699 border-radius: 5px;
1700 -moz-border-radius: 5px;
1701 -webkit-border-radius: 5px;
1702 overflow: hidden;
1703}
1704
1705div.stat-label {
1706 position: relative;
1707 padding: 3px;
1708 text-align: center;
1709}
1710div.stat-label, div.stat-label a {
1711 z-index: 5;
1712}
1713
1714div.stat-item {
1715 position: relative;
1716 border-bottom: 1px solid #ddd;
1717}
1718div.stat-item:last-child {
1719 border-bottom: 0px solid #ddd;
1720}
1721
1722div.stat-bar {
1723 position: absolute;
1724 left: 0px;
1725 background-color: #def;
1726 height: 100%;
1727 z-index: 0;
1728}
1729
1730
1731
1732
1733
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301734/*
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301735 * lib/css/ui/fonts.css
1736 */
1737@font-face {
1738 font-family: 'Pontano Sans';
1739 font-style: normal;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301740 font-weight: 800;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301741 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1742}
1743
1744@font-face {
1745 font-family: 'Droid Sans';
1746 font-style: normal;
1747 font-weight: normal;
1748 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1749}
1750
1751/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301752 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301753 */
1754/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301755
1756h1,
1757h2,
1758h3,
1759h4,
1760h5,
1761h6 {
1762 margin: 0;
1763 font-weight: bold;
1764 color: #333333;
1765 text-rendering: optimizelegibility;
1766 margin-bottom: 0.3em;
1767}
1768h1 small,
1769h2 small,
1770h3 small,
1771h4 small,
1772h5 small,
1773h6 small {
1774 font-weight: normal;
1775 color: #999999;
1776}
1777h1 {
1778 font-size: 30px;
1779 line-height: 36px;
1780}
1781h1 small {
1782 font-size: 18px;
1783}
1784h2 {
1785 font-size: 24px;
1786 line-height: 36px;
1787}
1788h2 small {
1789 font-size: 18px;
1790}
1791h3 {
1792 line-height: 27px;
1793 font-size: 18px;
1794}
1795h3 small {
1796 font-size: 14px;
1797}
1798h4, h5, h6 {
1799 line-height: 18px;
1800}
1801h4 {
1802 font-size: 14px;
1803}
1804h4 small {
1805 font-size: 12px;
1806}
1807h5 {
1808 font-size: 12px;
1809}
1810h6 {
1811 font-size: 11px;
1812 color: #999999;
1813 text-transform: uppercase;
1814}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301815
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301816/*
1817 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301818 */
1819.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301820 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301821 float: right;
1822 font-size: 20px;
1823 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301824 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301825 color: #000000;
1826 text-shadow: 0 1px 0 #ffffff;
1827 opacity: 0.2;
1828 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301829}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301830.close:hover {
1831 color: #000000;
1832 text-decoration: none;
1833 opacity: 0.4;
1834 filter: alpha(opacity=40);
1835 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301836}
1837.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301838 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301839 padding: 4px 10px 4px;
1840 font-size: 13px;
1841 line-height: 18px;
1842 color: #333333;
1843 text-align: center;
1844 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1845 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301846 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1847 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1848 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1849 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1850 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1851 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301852 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301853 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301854 border: 1px solid #ccc;
1855 border-bottom-color: #bbb;
1856 -webkit-border-radius: 4px;
1857 -moz-border-radius: 4px;
1858 border-radius: 4px;
1859 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1860 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1861 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 +05301862 cursor: pointer;
1863 *margin-left: .3em;
1864}
1865.btn:first-child {
1866 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301867}
1868.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301869 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301870 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301871 background-color: #e6e6e6;
1872 background-position: 0 -15px;
1873 -webkit-transition: background-position 0.1s linear;
1874 -moz-transition: background-position 0.1s linear;
1875 -ms-transition: background-position 0.1s linear;
1876 -o-transition: background-position 0.1s linear;
1877 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301878}
1879.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301880 outline: thin dotted;
1881 outline: 5px auto -webkit-focus-ring-color;
1882 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301883}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301884.btn.active, .btn:active {
1885 background-image: none;
1886 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1887 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1888 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1889 background-color: #e6e6e6;
1890 background-color: #d9d9d9 \9;
1891 color: rgba(0, 0, 0, 0.5);
1892 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301893}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301894.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301895 cursor: default;
1896 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301897 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301898 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301899 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301900 -webkit-box-shadow: none;
1901 -moz-box-shadow: none;
1902 box-shadow: none;
1903}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301904.btn-large {
1905 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301906 font-size: 15px;
1907 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301908 -webkit-border-radius: 5px;
1909 -moz-border-radius: 5px;
1910 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301911}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301912.btn-large .icon {
1913 margin-top: 1px;
1914}
1915.btn-small {
1916 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301917 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301918 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301919}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301920.btn-small .icon {
1921 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301922}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301923.btn-primary,
1924.btn-primary:hover,
1925.btn-warning,
1926.btn-warning:hover,
1927.btn-danger,
1928.btn-danger:hover,
1929.btn-success,
1930.btn-success:hover,
1931.btn-info,
1932.btn-info:hover {
1933 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1934 color: #ffffff;
1935}
1936.btn-primary.active,
1937.btn-warning.active,
1938.btn-danger.active,
1939.btn-success.active,
1940.btn-info.active {
1941 color: rgba(255, 255, 255, 0.75);
1942}
1943.btn-primary {
1944 background-color: #006dcc;
1945 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1946 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1947 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1948 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1949 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1950 background-image: linear-gradient(top, #0088cc, #0044cc);
1951 background-repeat: repeat-x;
1952 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1953 border-color: #0044cc #0044cc #002a80;
1954 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1955 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1956}
1957.btn-primary:hover,
1958.btn-primary:active,
1959.btn-primary.active,
1960.btn-primary.disabled,
1961.btn-primary[disabled] {
1962 background-color: #0044cc;
1963}
1964.btn-primary:active, .btn-primary.active {
1965 background-color: #003399 \9;
1966}
1967.btn-warning {
1968 background-color: #faa732;
1969 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1970 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1971 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1972 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1973 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1974 background-image: linear-gradient(top, #fbb450, #f89406);
1975 background-repeat: repeat-x;
1976 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1977 border-color: #f89406 #f89406 #ad6704;
1978 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1979 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1980}
1981.btn-warning:hover,
1982.btn-warning:active,
1983.btn-warning.active,
1984.btn-warning.disabled,
1985.btn-warning[disabled] {
1986 background-color: #f89406;
1987}
1988.btn-warning:active, .btn-warning.active {
1989 background-color: #c67605 \9;
1990}
1991.btn-danger {
1992 background-color: #da4f49;
1993 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1994 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1995 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1996 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1997 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1998 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1999 background-repeat: repeat-x;
2000 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
2001 border-color: #bd362f #bd362f #802420;
2002 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2003 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2004}
2005.btn-danger:hover,
2006.btn-danger:active,
2007.btn-danger.active,
2008.btn-danger.disabled,
2009.btn-danger[disabled] {
2010 background-color: #bd362f;
2011}
2012.btn-danger:active, .btn-danger.active {
2013 background-color: #942a25 \9;
2014}
2015.btn-success {
2016 background-color: #5bb75b;
2017 background-image: -moz-linear-gradient(top, #62c462, #51a351);
2018 background-image: -ms-linear-gradient(top, #62c462, #51a351);
2019 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
2020 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
2021 background-image: -o-linear-gradient(top, #62c462, #51a351);
2022 background-image: linear-gradient(top, #62c462, #51a351);
2023 background-repeat: repeat-x;
2024 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
2025 border-color: #51a351 #51a351 #387038;
2026 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2027 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2028}
2029.btn-success:hover,
2030.btn-success:active,
2031.btn-success.active,
2032.btn-success.disabled,
2033.btn-success[disabled] {
2034 background-color: #51a351;
2035}
2036.btn-success:active, .btn-success.active {
2037 background-color: #408140 \9;
2038}
2039.btn-info {
2040 background-color: #49afcd;
2041 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
2042 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
2043 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
2044 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
2045 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
2046 background-image: linear-gradient(top, #5bc0de, #2f96b4);
2047 background-repeat: repeat-x;
2048 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
2049 border-color: #2f96b4 #2f96b4 #1f6377;
2050 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2051 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2052}
2053.btn-info:hover,
2054.btn-info:active,
2055.btn-info.active,
2056.btn-info.disabled,
2057.btn-info[disabled] {
2058 background-color: #2f96b4;
2059}
2060.btn-info:active, .btn-info.active {
2061 background-color: #24748c \9;
2062}
2063button.btn, input[type="submit"].btn {
2064 *padding-top: 2px;
2065 *padding-bottom: 2px;
2066}
2067button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302068 padding: 0;
2069 border: 0;
2070}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302071button.btn.large, input[type="submit"].btn.large {
2072 *padding-top: 7px;
2073 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302074}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302075button.btn.small, input[type="submit"].btn.small {
2076 *padding-top: 3px;
2077 *padding-bottom: 3px;
2078}
2079.btn-group {
2080 position: relative;
2081 *zoom: 1;
2082 *margin-left: .3em;
2083}
2084.btn-group:before, .btn-group:after {
2085 display: table;
2086 content: "";
2087}
2088.btn-group:after {
2089 clear: both;
2090}
2091.btn-group:first-child {
2092 *margin-left: 0;
2093}
2094.btn-group + .btn-group {
2095 margin-left: 5px;
2096}
2097.btn-toolbar {
2098 margin-top: 9px;
2099 margin-bottom: 9px;
2100}
2101.btn-toolbar .btn-group {
2102 display: inline-block;
2103 *display: inline;
2104 /* IE7 inline-block hack */
2105
2106 *zoom: 1;
2107}
2108.btn-group .btn {
2109 position: relative;
2110 float: left;
2111 margin-left: -1px;
2112 -webkit-border-radius: 0;
2113 -moz-border-radius: 0;
2114 border-radius: 0;
2115}
2116.btn-group .btn:first-child {
2117 margin-left: 0;
2118 -webkit-border-top-left-radius: 4px;
2119 -moz-border-radius-topleft: 4px;
2120 border-top-left-radius: 4px;
2121 -webkit-border-bottom-left-radius: 4px;
2122 -moz-border-radius-bottomleft: 4px;
2123 border-bottom-left-radius: 4px;
2124}
2125.btn-group .btn:last-child, .btn-group .dropdown-toggle {
2126 -webkit-border-top-right-radius: 4px;
2127 -moz-border-radius-topright: 4px;
2128 border-top-right-radius: 4px;
2129 -webkit-border-bottom-right-radius: 4px;
2130 -moz-border-radius-bottomright: 4px;
2131 border-bottom-right-radius: 4px;
2132}
2133.btn-group .btn.large:first-child {
2134 margin-left: 0;
2135 -webkit-border-top-left-radius: 6px;
2136 -moz-border-radius-topleft: 6px;
2137 border-top-left-radius: 6px;
2138 -webkit-border-bottom-left-radius: 6px;
2139 -moz-border-radius-bottomleft: 6px;
2140 border-bottom-left-radius: 6px;
2141}
2142.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
2143 -webkit-border-top-right-radius: 6px;
2144 -moz-border-radius-topright: 6px;
2145 border-top-right-radius: 6px;
2146 -webkit-border-bottom-right-radius: 6px;
2147 -moz-border-radius-bottomright: 6px;
2148 border-bottom-right-radius: 6px;
2149}
2150.btn-group .btn:hover,
2151.btn-group .btn:focus,
2152.btn-group .btn:active,
2153.btn-group .btn.active {
2154 z-index: 2;
2155}
2156.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2157 outline: 0;
2158}
2159.btn-group .dropdown-toggle {
2160 padding-left: 8px;
2161 padding-right: 8px;
2162 -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);
2163 -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);
2164 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);
2165 *padding-top: 5px;
2166 *padding-bottom: 5px;
2167}
2168.btn-group.open {
2169 *z-index: 1000;
2170}
2171.btn-group.open .dropdown-menu {
2172 display: block;
2173 margin-top: 1px;
2174 -webkit-border-radius: 5px;
2175 -moz-border-radius: 5px;
2176 border-radius: 5px;
2177}
2178.btn-group.open .dropdown-toggle {
2179 background-image: none;
2180 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2181 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2182 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2183}
2184.btn .caret {
2185 margin-top: 7px;
2186 margin-left: 0;
2187}
2188.btn:hover .caret, .open.btn-group .caret {
2189 opacity: 1;
2190 filter: alpha(opacity=100);
2191}
2192.btn-primary .caret,
2193.btn-danger .caret,
2194.btn-info .caret,
2195.btn-success .caret {
2196 border-top-color: #ffffff;
2197 opacity: 0.75;
2198 filter: alpha(opacity=75);
2199}
2200.btn-small .caret {
2201 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302202}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302203
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302204/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302205 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302206 */
2207.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302208 margin-left: 0;
2209 margin-bottom: 18px;
2210 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302211}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302212.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302213 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302214}
2215.nav > li > a:hover {
2216 text-decoration: none;
2217 background-color: #eeeeee;
2218}
2219.nav-list {
2220 padding-left: 14px;
2221 padding-right: 14px;
2222 margin-bottom: 0;
2223}
2224.nav-list > li > a, .nav-list .nav-header {
2225 display: block;
2226 padding: 3px 15px;
2227 margin-left: -15px;
2228 margin-right: -15px;
2229 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2230}
2231.nav-list .nav-header {
2232 font-size: 11px;
2233 font-weight: bold;
2234 line-height: 18px;
2235 color: #999999;
2236 text-transform: uppercase;
2237}
2238.nav-list > li + .nav-header {
2239 margin-top: 9px;
2240}
2241.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302242 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302243 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2244 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302245}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302246.nav-list [class^="icon-"] {
2247 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302248}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302249.nav-tabs, .nav-pills {
2250 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302251}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302252.nav-tabs:before,
2253.nav-pills:before,
2254.nav-tabs:after,
2255.nav-pills:after {
2256 display: table;
2257 content: "";
2258}
2259.nav-tabs:after, .nav-pills:after {
2260 clear: both;
2261}
2262.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302263 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302264}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302265.nav-tabs > li > a, .nav-pills > li > a {
2266 padding-right: 12px;
2267 padding-left: 12px;
2268 margin-right: 2px;
2269 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302270}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302271.nav-tabs {
2272 border-bottom: 1px solid #ddd;
2273}
2274.nav-tabs > li {
2275 margin-bottom: -1px;
2276}
2277.nav-tabs > li > a {
2278 padding-top: 9px;
2279 padding-bottom: 9px;
2280 border: 1px solid transparent;
2281 -webkit-border-radius: 4px 4px 0 0;
2282 -moz-border-radius: 4px 4px 0 0;
2283 border-radius: 4px 4px 0 0;
2284}
2285.nav-tabs > li > a:hover {
2286 border-color: #eeeeee #eeeeee #dddddd;
2287}
2288.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2289 color: #555555;
2290 background-color: #ffffff;
2291 border: 1px solid #ddd;
2292 border-bottom-color: transparent;
2293 cursor: default;
2294}
2295.nav-pills > li > a {
2296 padding-top: 8px;
2297 padding-bottom: 8px;
2298 margin-top: 2px;
2299 margin-bottom: 2px;
2300 -webkit-border-radius: 5px;
2301 -moz-border-radius: 5px;
2302 border-radius: 5px;
2303}
2304.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302305 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302306 background-color: #0088cc;
2307}
2308.nav-stacked > li {
2309 float: none;
2310}
2311.nav-stacked > li > a {
2312 margin-right: 0;
2313}
2314.nav-tabs.nav-stacked {
2315 border-bottom: 0;
2316}
2317.nav-tabs.nav-stacked > li > a {
2318 border: 1px solid #ddd;
2319 -webkit-border-radius: 0;
2320 -moz-border-radius: 0;
2321 border-radius: 0;
2322}
2323.nav-tabs.nav-stacked > li:first-child > a {
2324 -webkit-border-radius: 4px 4px 0 0;
2325 -moz-border-radius: 4px 4px 0 0;
2326 border-radius: 4px 4px 0 0;
2327}
2328.nav-tabs.nav-stacked > li:last-child > a {
2329 -webkit-border-radius: 0 0 4px 4px;
2330 -moz-border-radius: 0 0 4px 4px;
2331 border-radius: 0 0 4px 4px;
2332}
2333.nav-tabs.nav-stacked > li > a:hover {
2334 border-color: #ddd;
2335 z-index: 2;
2336}
2337.nav-pills.nav-stacked > li > a {
2338 margin-bottom: 3px;
2339}
2340.nav-pills.nav-stacked > li:last-child > a {
2341 margin-bottom: 1px;
2342}
2343.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2344 margin-top: 1px;
2345 border-width: 1px;
2346}
2347.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302348 -webkit-border-radius: 4px;
2349 -moz-border-radius: 4px;
2350 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302351}
2352.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2353 border-top-color: #0088cc;
2354 margin-top: 6px;
2355}
2356.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2357 border-top-color: #005580;
2358}
2359.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2360 border-top-color: #333333;
2361}
2362.nav > .dropdown.active > a:hover {
2363 color: #000000;
2364 cursor: pointer;
2365}
2366.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2367 color: #ffffff;
2368 background-color: #999999;
2369 border-color: #999999;
2370}
2371.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2372 border-top-color: #ffffff;
2373 opacity: 1;
2374 filter: alpha(opacity=100);
2375}
2376
2377.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302378 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302379 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302380}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302381.navbar-inner {
2382 padding-left: 20px;
2383 padding-right: 20px;
2384 background-color: #2c2c2c;
2385 background-image: -moz-linear-gradient(top, #333333, #222222);
2386 background-image: -ms-linear-gradient(top, #333333, #222222);
2387 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2388 background-image: -webkit-linear-gradient(top, #333333, #222222);
2389 background-image: -o-linear-gradient(top, #333333, #222222);
2390 background-image: linear-gradient(top, #333333, #222222);
2391 background-repeat: repeat-x;
2392 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2393 -webkit-border-radius: 4px;
2394 -moz-border-radius: 4px;
2395 border-radius: 4px;
2396 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2397 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2398 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2399}
2400.btn-navbar {
2401 display: none;
2402 float: right;
2403 padding: 7px 10px;
2404 margin-left: 5px;
2405 margin-right: 5px;
2406 background-color: #2c2c2c;
2407 background-image: -moz-linear-gradient(top, #333333, #222222);
2408 background-image: -ms-linear-gradient(top, #333333, #222222);
2409 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2410 background-image: -webkit-linear-gradient(top, #333333, #222222);
2411 background-image: -o-linear-gradient(top, #333333, #222222);
2412 background-image: linear-gradient(top, #333333, #222222);
2413 background-repeat: repeat-x;
2414 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2415 border-color: #222222 #222222 #000000;
2416 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2417 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2418 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2419 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2420 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2421}
2422.btn-navbar:hover,
2423.btn-navbar:active,
2424.btn-navbar.active,
2425.btn-navbar.disabled,
2426.btn-navbar[disabled] {
2427 background-color: #222222;
2428}
2429.btn-navbar:active, .btn-navbar.active {
2430 background-color: #080808 \9;
2431}
2432.btn-navbar .icon-bar {
2433 display: block;
2434 width: 18px;
2435 height: 2px;
2436 background-color: #f5f5f5;
2437 -webkit-border-radius: 1px;
2438 -moz-border-radius: 1px;
2439 border-radius: 1px;
2440 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2441 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2442 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2443}
2444.btn-navbar .icon-bar + .icon-bar {
2445 margin-top: 3px;
2446}
2447.nav-collapse.collapse {
2448 height: auto;
2449}
2450.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302451 text-decoration: none;
2452}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302453.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302454 float: left;
2455 display: block;
2456 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302457 font-size: 20px;
2458 font-weight: 200;
2459 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302460 color: #ffffff;
2461}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302462.navbar .navbar-text {
2463 margin-bottom: 0;
2464 line-height: 40px;
2465 color: #999999;
2466}
2467.navbar .navbar-text a:hover {
2468 color: #ffffff;
2469 background-color: transparent;
2470}
2471.navbar .btn, .navbar .btn-group {
2472 margin-top: 5px;
2473}
2474.navbar .btn-group .btn {
2475 margin-top: 0;
2476}
2477.navbar-form {
2478 margin-bottom: 0;
2479 *zoom: 1;
2480}
2481.navbar-form:before, .navbar-form:after {
2482 display: table;
2483 content: "";
2484}
2485.navbar-form:after {
2486 clear: both;
2487}
2488.navbar-form input, .navbar-form select {
2489 display: inline-block;
2490 margin-top: 5px;
2491 margin-bottom: 0;
2492}
2493.navbar-form .radio, .navbar-form .checkbox {
2494 margin-top: 5px;
2495}
2496.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2497 margin-top: 3px;
2498}
2499.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302500 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302501 float: left;
2502 margin-top: 6px;
2503 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302504}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302505.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302506 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302507 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2508 font-size: 13px;
2509 font-weight: normal;
2510 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302511 color: #ffffff;
2512 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302513 background: #666;
2514 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302515 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302516 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2517 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2518 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 +05302519 -webkit-transition: none;
2520 -moz-transition: none;
2521 -ms-transition: none;
2522 -o-transition: none;
2523 transition: none;
2524}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302525.navbar-search .search-query :-moz-placeholder {
2526 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302527}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302528.navbar-search .search-query::-webkit-input-placeholder {
2529 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302530}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302531.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302532 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302533 background-color: #999999;
2534 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302535}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302536.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302537 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302538 color: #333333;
2539 text-shadow: 0 1px 0 #ffffff;
2540 background-color: #ffffff;
2541 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302542 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2543 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2544 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302545 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302546}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302547.navbar-fixed-top {
2548 position: fixed;
2549 top: 0;
2550 right: 0;
2551 left: 0;
2552 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302553}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302554.navbar-fixed-top .navbar-inner {
2555 padding-left: 0;
2556 padding-right: 0;
2557 -webkit-border-radius: 0;
2558 -moz-border-radius: 0;
2559 border-radius: 0;
2560}
2561.navbar .nav {
2562 position: relative;
2563 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302564 display: block;
2565 float: left;
2566 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302567}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302568.navbar .nav.pull-right {
2569 float: right;
2570}
2571.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302572 display: block;
2573 float: left;
2574}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302575.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302576 float: none;
2577 padding: 10px 10px 11px;
2578 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302579 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302580 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302581 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302582}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302583.navbar .nav > li > a:hover {
2584 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302585 color: #ffffff;
2586 text-decoration: none;
2587}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302588.navbar .nav .active > a, .navbar .nav .active > a:hover {
2589 color: #ffffff;
2590 text-decoration: none;
2591 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302592 background-color: rgba(0, 0, 0, 0.5);
2593}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302594.navbar .divider-vertical {
2595 height: 40px;
2596 width: 1px;
2597 margin: 0 9px;
2598 overflow: hidden;
2599 background-color: #222222;
2600 border-right: 1px solid #333333;
2601}
2602.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302603 margin-left: 10px;
2604 margin-right: 0;
2605}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302606.navbar .dropdown-menu {
2607 margin-top: 1px;
2608 -webkit-border-radius: 4px;
2609 -moz-border-radius: 4px;
2610 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302611}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302612.navbar .dropdown-menu:before {
2613 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302614 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302615 border-left: 7px solid transparent;
2616 border-right: 7px solid transparent;
2617 border-bottom: 7px solid #ccc;
2618 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302619 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302620 top: -7px;
2621 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302622}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302623.navbar .dropdown-menu:after {
2624 content: '';
2625 display: inline-block;
2626 border-left: 6px solid transparent;
2627 border-right: 6px solid transparent;
2628 border-bottom: 6px solid #ffffff;
2629 position: absolute;
2630 top: -6px;
2631 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302632}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302633.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2634 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302635}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302636.navbar .nav .active .caret {
2637 opacity: 1;
2638 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302639}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302640.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2641 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302642}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302643.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302644 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302645}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302646.navbar .nav.pull-right .dropdown-menu {
2647 left: auto;
2648 right: 0;
2649}
2650.navbar .nav.pull-right .dropdown-menu:before {
2651 left: auto;
2652 right: 12px;
2653}
2654.navbar .nav.pull-right .dropdown-menu:after {
2655 left: auto;
2656 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302657}
2658
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302659/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302660.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302661 display: block;
2662 float: right;
2663 width: 20px;
2664 margin-bottom: -5px;
2665 margin-top: 10px;
2666 visibility: hidden;
2667}
2668
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302669.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302670 padding: 0px 20px;
2671}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302672
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302673
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302674/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302675 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302676 */
2677.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302678 position: relative;
2679}
2680.dropdown-toggle {
2681 *margin-bottom: -3px;
2682}
2683.dropdown-toggle:active, .open .dropdown-toggle {
2684 outline: 0;
2685}
2686.caret {
2687 display: inline-block;
2688 width: 0;
2689 height: 0;
2690 text-indent: -99999px;
2691 *text-indent: 0;
2692 vertical-align: top;
2693 border-left: 4px solid transparent;
2694 border-right: 4px solid transparent;
2695 border-top: 4px solid #000000;
2696 opacity: 0.3;
2697 filter: alpha(opacity=30);
2698 content: "\2193";
2699}
2700.dropdown .caret {
2701 margin-top: 8px;
2702 margin-left: 2px;
2703}
2704.dropdown:hover .caret, .open.dropdown .caret {
2705 opacity: 1;
2706 filter: alpha(opacity=100);
2707}
2708.dropdown-menu {
2709 position: absolute;
2710 top: 100%;
2711 left: 0;
2712 z-index: 1000;
2713 float: left;
2714 display: none;
2715 min-width: 160px;
2716 max-width: 220px;
2717 _width: 160px;
2718 padding: 4px 0;
2719 margin: 0;
2720 list-style: none;
2721 background-color: #ffffff;
2722 border-color: #ccc;
2723 border-color: rgba(0, 0, 0, 0.2);
2724 border-style: solid;
2725 border-width: 1px;
2726 -webkit-border-radius: 0 0 5px 5px;
2727 -moz-border-radius: 0 0 5px 5px;
2728 border-radius: 0 0 5px 5px;
2729 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2730 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2731 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2732 -webkit-background-clip: padding-box;
2733 -moz-background-clip: padding;
2734 background-clip: padding-box;
2735 *border-right-width: 2px;
2736 *border-bottom-width: 2px;
2737}
2738.dropdown-menu.bottom-up {
2739 top: auto;
2740 bottom: 100%;
2741 margin-bottom: 2px;
2742}
2743.dropdown-menu .divider {
2744 height: 1px;
2745 margin: 5px 1px;
2746 overflow: hidden;
2747 background-color: #e5e5e5;
2748 border-bottom: 1px solid #ffffff;
2749 *width: 100%;
2750 *margin: -5px 0 5px;
2751}
2752.dropdown-menu a {
2753 display: block;
2754 padding: 3px 15px;
2755 clear: both;
2756 font-weight: normal;
2757 line-height: 18px;
2758 color: #555555;
2759 white-space: nowrap;
2760}
2761.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2762 color: #ffffff;
2763 text-decoration: none;
2764 background-color: #0088cc;
2765}
2766.dropdown.open {
2767 *z-index: 1000;
2768}
2769.dropdown.open .dropdown-toggle {
2770 color: #ffffff;
2771 background: #ccc;
2772 background: rgba(0, 0, 0, 0.3);
2773}
2774.dropdown.open .dropdown-menu {
2775 display: block;
2776}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302777
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302778/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302779 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302780 */
2781.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05302782 position: absolute;
2783 z-index: 1020;
2784 display: block;
2785 visibility: visible;
2786 padding: 5px;
2787 font-size: 11px;
2788 opacity: 0;
2789 filter: alpha(opacity=0);
2790}
2791.tooltip.in {
2792 opacity: 0.8;
2793 filter: alpha(opacity=80);
2794}
2795.tooltip.top {
2796 margin-top: -2px;
2797}
2798.tooltip.right {
2799 margin-left: 2px;
2800}
2801.tooltip.bottom {
2802 margin-top: 2px;
2803}
2804.tooltip.left {
2805 margin-left: -2px;
2806}
2807.tooltip.top .tooltip-arrow {
2808 bottom: 0;
2809 left: 50%;
2810 margin-left: -5px;
2811 border-left: 5px solid transparent;
2812 border-right: 5px solid transparent;
2813 border-top: 5px solid #000000;
2814}
2815.tooltip.left .tooltip-arrow {
2816 top: 50%;
2817 right: 0;
2818 margin-top: -5px;
2819 border-top: 5px solid transparent;
2820 border-bottom: 5px solid transparent;
2821 border-left: 5px solid #000000;
2822}
2823.tooltip.bottom .tooltip-arrow {
2824 top: 0;
2825 left: 50%;
2826 margin-left: -5px;
2827 border-left: 5px solid transparent;
2828 border-right: 5px solid transparent;
2829 border-bottom: 5px solid #000000;
2830}
2831.tooltip.right .tooltip-arrow {
2832 top: 50%;
2833 left: 0;
2834 margin-top: -5px;
2835 border-top: 5px solid transparent;
2836 border-bottom: 5px solid transparent;
2837 border-right: 5px solid #000000;
2838}
2839.tooltip-inner {
2840 max-width: 200px;
2841 padding: 3px 8px;
2842 color: #ffffff;
2843 text-align: center;
2844 text-decoration: none;
2845 background-color: #000000;
2846 -webkit-border-radius: 4px;
2847 -moz-border-radius: 4px;
2848 border-radius: 4px;
2849}
2850.tooltip-arrow {
2851 position: absolute;
2852 width: 0;
2853 height: 0;
2854}
2855.popover {
2856 position: absolute;
2857 top: 0;
2858 left: 0;
2859 z-index: 1010;
2860 display: none;
2861 padding: 5px;
2862}
2863.popover.top {
2864 margin-top: -5px;
2865}
2866.popover.right {
2867 margin-left: 5px;
2868}
2869.popover.bottom {
2870 margin-top: 5px;
2871}
2872.popover.left {
2873 margin-left: -5px;
2874}
2875.popover.top .arrow {
2876 bottom: 0;
2877 left: 50%;
2878 margin-left: -5px;
2879 border-left: 5px solid transparent;
2880 border-right: 5px solid transparent;
2881 border-top: 5px solid #000000;
2882}
2883.popover.right .arrow {
2884 top: 50%;
2885 left: 0;
2886 margin-top: -5px;
2887 border-top: 5px solid transparent;
2888 border-bottom: 5px solid transparent;
2889 border-right: 5px solid #000000;
2890}
2891.popover.bottom .arrow {
2892 top: 0;
2893 left: 50%;
2894 margin-left: -5px;
2895 border-left: 5px solid transparent;
2896 border-right: 5px solid transparent;
2897 border-bottom: 5px solid #000000;
2898}
2899.popover.left .arrow {
2900 top: 50%;
2901 right: 0;
2902 margin-top: -5px;
2903 border-top: 5px solid transparent;
2904 border-bottom: 5px solid transparent;
2905 border-left: 5px solid #000000;
2906}
2907.popover .arrow {
2908 position: absolute;
2909 width: 0;
2910 height: 0;
2911}
2912.popover-inner {
2913 padding: 3px;
2914 width: 280px;
2915 overflow: hidden;
2916 background: #000000;
2917 background: rgba(0, 0, 0, 0.8);
2918 -webkit-border-radius: 6px;
2919 -moz-border-radius: 6px;
2920 border-radius: 6px;
2921 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2922 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2923 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2924}
2925.popover-title {
2926 padding: 9px 15px;
2927 line-height: 1;
2928 background-color: #f5f5f5;
2929 border-bottom: 1px solid #eee;
2930 -webkit-border-radius: 3px 3px 0 0;
2931 -moz-border-radius: 3px 3px 0 0;
2932 border-radius: 3px 3px 0 0;
2933}
2934.popover-content {
2935 padding: 14px;
2936 background-color: #ffffff;
2937 -webkit-border-radius: 0 0 3px 3px;
2938 -moz-border-radius: 0 0 3px 3px;
2939 border-radius: 0 0 3px 3px;
2940 -webkit-background-clip: padding-box;
2941 -moz-background-clip: padding-box;
2942 background-clip: padding-box;
2943}
2944.popover-content p, .popover-content ul, .popover-content ol {
2945 margin-bottom: 0;
2946}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302947
Rushabh Mehtad0251332012-02-21 17:26:50 +05302948/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302949 * lib/css/bootstrap/label.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302950 */
2951.label {
Rushabh Mehta2886b952012-02-24 11:26:31 +05302952 padding: 2px 4px 3px;
2953 font-size: 11.049999999999999px;
2954 font-weight: bold;
2955 color: #ffffff;
2956 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2957 background-color: #999999;
2958 -webkit-border-radius: 3px;
2959 -moz-border-radius: 3px;
2960 border-radius: 3px;
2961}
2962.label:hover {
2963 color: #ffffff;
2964 text-decoration: none;
2965}
2966.label-important {
2967 background-color: #b94a48;
2968}
2969.label-important:hover {
2970 background-color: #953b39;
2971}
2972.label-warning {
2973 background-color: #f89406;
2974}
2975.label-warning:hover {
2976 background-color: #c67605;
2977}
2978.label-success {
2979 background-color: #468847;
2980}
2981.label-success:hover {
2982 background-color: #356635;
2983}
2984.label-info {
2985 background-color: #3a87ad;
2986}
2987.label-info:hover {
2988 background-color: #2d6987;
2989}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302990
Rushabh Mehta2886b952012-02-24 11:26:31 +05302991/*
2992 * lib/css/bootstrap/icons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302993 */
2994[class^="icon-"], [class*=" icon-"] {
Rushabh Mehta2886b952012-02-24 11:26:31 +05302995 display: inline-block;
2996 width: 14px;
2997 height: 14px;
2998 line-height: 14px;
2999 vertical-align: text-top;
3000 background-image: url("../lib/images/icons/glyphicons-halflings.png");
3001 background-position: 14px 14px;
3002 background-repeat: no-repeat;
3003 *margin-right: .3em;
3004}
3005[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
3006 *margin-left: 0;
3007}
3008.icon-white {
3009 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
3010}
3011.icon-glass {
3012 background-position: 0 0;
3013}
3014.icon-music {
3015 background-position: -24px 0;
3016}
3017.icon-search {
3018 background-position: -48px 0;
3019}
3020.icon-envelope {
3021 background-position: -72px 0;
3022}
3023.icon-heart {
3024 background-position: -96px 0;
3025}
3026.icon-star {
3027 background-position: -120px 0;
3028}
3029.icon-star-empty {
3030 background-position: -144px 0;
3031}
3032.icon-user {
3033 background-position: -168px 0;
3034}
3035.icon-film {
3036 background-position: -192px 0;
3037}
3038.icon-th-large {
3039 background-position: -216px 0;
3040}
3041.icon-th {
3042 background-position: -240px 0;
3043}
3044.icon-th-list {
3045 background-position: -264px 0;
3046}
3047.icon-ok {
3048 background-position: -288px 0;
3049}
3050.icon-remove {
3051 background-position: -312px 0;
3052}
3053.icon-zoom-in {
3054 background-position: -336px 0;
3055}
3056.icon-zoom-out {
3057 background-position: -360px 0;
3058}
3059.icon-off {
3060 background-position: -384px 0;
3061}
3062.icon-signal {
3063 background-position: -408px 0;
3064}
3065.icon-cog {
3066 background-position: -432px 0;
3067}
3068.icon-trash {
3069 background-position: -456px 0;
3070}
3071.icon-home {
3072 background-position: 0 -24px;
3073}
3074.icon-file {
3075 background-position: -24px -24px;
3076}
3077.icon-time {
3078 background-position: -48px -24px;
3079}
3080.icon-road {
3081 background-position: -72px -24px;
3082}
3083.icon-download-alt {
3084 background-position: -96px -24px;
3085}
3086.icon-download {
3087 background-position: -120px -24px;
3088}
3089.icon-upload {
3090 background-position: -144px -24px;
3091}
3092.icon-inbox {
3093 background-position: -168px -24px;
3094}
3095.icon-play-circle {
3096 background-position: -192px -24px;
3097}
3098.icon-repeat {
3099 background-position: -216px -24px;
3100}
3101.icon-refresh {
3102 background-position: -240px -24px;
3103}
3104.icon-list-alt {
3105 background-position: -264px -24px;
3106}
3107.icon-lock {
3108 background-position: -287px -24px;
3109}
3110.icon-flag {
3111 background-position: -312px -24px;
3112}
3113.icon-headphones {
3114 background-position: -336px -24px;
3115}
3116.icon-volume-off {
3117 background-position: -360px -24px;
3118}
3119.icon-volume-down {
3120 background-position: -384px -24px;
3121}
3122.icon-volume-up {
3123 background-position: -408px -24px;
3124}
3125.icon-qrcode {
3126 background-position: -432px -24px;
3127}
3128.icon-barcode {
3129 background-position: -456px -24px;
3130}
3131.icon-tag {
3132 background-position: 0 -48px;
3133}
3134.icon-tags {
3135 background-position: -25px -48px;
3136}
3137.icon-book {
3138 background-position: -48px -48px;
3139}
3140.icon-bookmark {
3141 background-position: -72px -48px;
3142}
3143.icon-print {
3144 background-position: -96px -48px;
3145}
3146.icon-camera {
3147 background-position: -120px -48px;
3148}
3149.icon-font {
3150 background-position: -144px -48px;
3151}
3152.icon-bold {
3153 background-position: -167px -48px;
3154}
3155.icon-italic {
3156 background-position: -192px -48px;
3157}
3158.icon-text-height {
3159 background-position: -216px -48px;
3160}
3161.icon-text-width {
3162 background-position: -240px -48px;
3163}
3164.icon-align-left {
3165 background-position: -264px -48px;
3166}
3167.icon-align-center {
3168 background-position: -288px -48px;
3169}
3170.icon-align-right {
3171 background-position: -312px -48px;
3172}
3173.icon-align-justify {
3174 background-position: -336px -48px;
3175}
3176.icon-list {
3177 background-position: -360px -48px;
3178}
3179.icon-indent-left {
3180 background-position: -384px -48px;
3181}
3182.icon-indent-right {
3183 background-position: -408px -48px;
3184}
3185.icon-facetime-video {
3186 background-position: -432px -48px;
3187}
3188.icon-picture {
3189 background-position: -456px -48px;
3190}
3191.icon-pencil {
3192 background-position: 0 -72px;
3193}
3194.icon-map-marker {
3195 background-position: -24px -72px;
3196}
3197.icon-adjust {
3198 background-position: -48px -72px;
3199}
3200.icon-tint {
3201 background-position: -72px -72px;
3202}
3203.icon-edit {
3204 background-position: -96px -72px;
3205}
3206.icon-share {
3207 background-position: -120px -72px;
3208}
3209.icon-check {
3210 background-position: -144px -72px;
3211}
3212.icon-move {
3213 background-position: -168px -72px;
3214}
3215.icon-step-backward {
3216 background-position: -192px -72px;
3217}
3218.icon-fast-backward {
3219 background-position: -216px -72px;
3220}
3221.icon-backward {
3222 background-position: -240px -72px;
3223}
3224.icon-play {
3225 background-position: -264px -72px;
3226}
3227.icon-pause {
3228 background-position: -288px -72px;
3229}
3230.icon-stop {
3231 background-position: -312px -72px;
3232}
3233.icon-forward {
3234 background-position: -336px -72px;
3235}
3236.icon-fast-forward {
3237 background-position: -360px -72px;
3238}
3239.icon-step-forward {
3240 background-position: -384px -72px;
3241}
3242.icon-eject {
3243 background-position: -408px -72px;
3244}
3245.icon-chevron-left {
3246 background-position: -432px -72px;
3247}
3248.icon-chevron-right {
3249 background-position: -456px -72px;
3250}
3251.icon-plus-sign {
3252 background-position: 0 -96px;
3253}
3254.icon-minus-sign {
3255 background-position: -24px -96px;
3256}
3257.icon-remove-sign {
3258 background-position: -48px -96px;
3259}
3260.icon-ok-sign {
3261 background-position: -72px -96px;
3262}
3263.icon-question-sign {
3264 background-position: -96px -96px;
3265}
3266.icon-info-sign {
3267 background-position: -120px -96px;
3268}
3269.icon-screenshot {
3270 background-position: -144px -96px;
3271}
3272.icon-remove-circle {
3273 background-position: -168px -96px;
3274}
3275.icon-ok-circle {
3276 background-position: -192px -96px;
3277}
3278.icon-ban-circle {
3279 background-position: -216px -96px;
3280}
3281.icon-arrow-left {
3282 background-position: -240px -96px;
3283}
3284.icon-arrow-right {
3285 background-position: -264px -96px;
3286}
3287.icon-arrow-up {
3288 background-position: -289px -96px;
3289}
3290.icon-arrow-down {
3291 background-position: -312px -96px;
3292}
3293.icon-share-alt {
3294 background-position: -336px -96px;
3295}
3296.icon-resize-full {
3297 background-position: -360px -96px;
3298}
3299.icon-resize-small {
3300 background-position: -384px -96px;
3301}
3302.icon-plus {
3303 background-position: -408px -96px;
3304}
3305.icon-minus {
3306 background-position: -433px -96px;
3307}
3308.icon-asterisk {
3309 background-position: -456px -96px;
3310}
3311.icon-exclamation-sign {
3312 background-position: 0 -120px;
3313}
3314.icon-gift {
3315 background-position: -24px -120px;
3316}
3317.icon-leaf {
3318 background-position: -48px -120px;
3319}
3320.icon-fire {
3321 background-position: -72px -120px;
3322}
3323.icon-eye-open {
3324 background-position: -96px -120px;
3325}
3326.icon-eye-close {
3327 background-position: -120px -120px;
3328}
3329.icon-warning-sign {
3330 background-position: -144px -120px;
3331}
3332.icon-plane {
3333 background-position: -168px -120px;
3334}
3335.icon-calendar {
3336 background-position: -192px -120px;
3337}
3338.icon-random {
3339 background-position: -216px -120px;
3340}
3341.icon-comment {
3342 background-position: -240px -120px;
3343}
3344.icon-magnet {
3345 background-position: -264px -120px;
3346}
3347.icon-chevron-up {
3348 background-position: -288px -120px;
3349}
3350.icon-chevron-down {
3351 background-position: -313px -119px;
3352}
3353.icon-retweet {
3354 background-position: -336px -120px;
3355}
3356.icon-shopping-cart {
3357 background-position: -360px -120px;
3358}
3359.icon-folder-close {
3360 background-position: -384px -120px;
3361}
3362.icon-folder-open {
3363 background-position: -408px -120px;
3364}
3365.icon-resize-vertical {
3366 background-position: -432px -119px;
3367}
3368.icon-resize-horizontal {
3369 background-position: -456px -118px;
3370}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303371
Rushabh Mehta2886b952012-02-24 11:26:31 +05303372/*
Rushabh Mehtad48417c2012-03-19 18:42:13 +05303373 * lib/css/bootstrap/popover.css
3374 */
3375.popover {
3376 position: absolute;
3377 top: 0;
3378 left: 0;
3379 z-index: 1010;
3380 display: none;
3381 padding: 5px;
3382}
3383.popover.top {
3384 margin-top: -5px;
3385}
3386.popover.right {
3387 margin-left: 5px;
3388}
3389.popover.bottom {
3390 margin-top: 5px;
3391}
3392.popover.left {
3393 margin-left: -5px;
3394}
3395.popover.top .arrow {
3396 bottom: 0;
3397 left: 50%;
3398 margin-left: -5px;
3399 border-left: 5px solid transparent;
3400 border-right: 5px solid transparent;
3401 border-top: 5px solid #000000;
3402}
3403.popover.right .arrow {
3404 top: 50%;
3405 left: 0;
3406 margin-top: -5px;
3407 border-top: 5px solid transparent;
3408 border-bottom: 5px solid transparent;
3409 border-right: 5px solid #000000;
3410}
3411.popover.bottom .arrow {
3412 top: 0;
3413 left: 50%;
3414 margin-left: -5px;
3415 border-left: 5px solid transparent;
3416 border-right: 5px solid transparent;
3417 border-bottom: 5px solid #000000;
3418}
3419.popover.left .arrow {
3420 top: 50%;
3421 right: 0;
3422 margin-top: -5px;
3423 border-top: 5px solid transparent;
3424 border-bottom: 5px solid transparent;
3425 border-left: 5px solid #000000;
3426}
3427.popover .arrow {
3428 position: absolute;
3429 width: 0;
3430 height: 0;
3431}
3432.popover-inner {
3433 padding: 3px;
3434 width: 280px;
3435 overflow: hidden;
3436 background: #000000;
3437 background: rgba(0, 0, 0, 0.8);
3438 -webkit-border-radius: 6px;
3439 -moz-border-radius: 6px;
3440 border-radius: 6px;
3441 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3442 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3443 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3444}
3445.popover-title {
3446 padding: 9px 15px;
3447 line-height: 1;
3448 background-color: #f5f5f5;
3449 border-bottom: 1px solid #eee;
3450 -webkit-border-radius: 3px 3px 0 0;
3451 -moz-border-radius: 3px 3px 0 0;
3452 border-radius: 3px 3px 0 0;
3453}
3454.popover-content {
3455 padding: 14px;
3456 background-color: #ffffff;
3457 -webkit-border-radius: 0 0 3px 3px;
3458 -moz-border-radius: 0 0 3px 3px;
3459 border-radius: 0 0 3px 3px;
3460 -webkit-background-clip: padding-box;
3461 -moz-background-clip: padding-box;
3462 background-clip: padding-box;
3463}
3464.popover-content p, .popover-content ul, .popover-content ol {
3465 margin-bottom: 0;
3466}
3467
3468/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303469 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303470 */
3471h1, h2, h3, h4, h5 {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303472 font-family: Tahoma, Arial, Verdana, sans-serif;
3473 font-weight: bold;
3474}
3475
3476body {
3477 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
3478 font-size: 12px;
3479}
3480
3481span, div, td, input, textarea, button, select {
3482 font-family: inherit;
3483}
3484
3485body {
Rushabh Mehta5d267a42012-03-01 18:53:06 +05303486 background: url(../images/stripedbg.png) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303487}
3488
3489.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303490 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303491 text-align: center;
3492}
3493
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303494.module-icons {
3495 background: url(../images/module-icons.png) no-repeat top left;
3496 width:16px;
3497 height:16px;
3498}
3499
3500.module-icons-accounts{ background-position: 0 0; }
3501.module-icons-analysis{ background-position: 0 -66px; }
3502.module-icons-buying{ background-position: 0 -132px; }
3503.module-icons-home{ background-position: 0 -198px; }
3504.module-icons-hr{ background-position: 0 -264px; }
3505.module-icons-people{ background-position: 0 -330px; }
3506.module-icons-production{ background-position: 0 -396px; }
3507.module-icons-projects{ background-position: 0 -462px; }
3508.module-icons-selling{ background-position: 0 -528px; }
3509.module-icons-setup{ background-position: 0 -594px; }
3510.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05303511.module-icons-support{ background-position: 0 -726px; }
3512
Anand Doshidb628762012-02-24 17:56:00 +05303513.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303514 margin: -3px 0px;
3515 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303516 min-width: 20px;
3517 text-align: center;
3518 display: inline-block;
3519 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303520 color: #999999;
3521 background-color: #333131;
3522}
3523
3524.navbar-new-comments:hover,
3525.navbar-new-comments:active,
3526.navbar-new-comments:focus {
3527 color: #fff;
3528}
3529
3530
3531.navbar-new-comments-true {
3532 color: #fff;
3533 background-color: #B00D07;
3534}
3535
3536.navbar-icon-home {
3537 vertical-align: middle;
3538 opacity:0.4;
3539 Filter:alpha(opacity=40); /* For IE8 and earlier */
3540}
3541
3542.navbar-icon-home:hover,
3543.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05303544.navbar-icon-home:active,
3545.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303546 opacity:1;
3547 Filter:alpha(opacity=100); /* For IE8 and earlier */
3548}
3549
3550/*extra size menus for recent*/
3551.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3552 min-width: 160px !important;
3553 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303554}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303555