blob: 4ed2d5771aac23bbbc17d4c7db9dfaf37821543e [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;
Rushabh Mehta983a1712012-03-21 13:35:34 +053014 font-size: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053015 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 {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530117 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530118 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530119 width: 900px;
120 margin: auto;
121 margin-top: 56px;
122}
123
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530124.content {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530125 width: 900px;
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530126}
127
128.background-fade-in {
129 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
130 -moz-transition: background 1s ease-in;
131 -o-transition: background 1s ease-in;
132 transition: background 1s ease-in;
133}
134
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530135footer {
Rushabh Mehtab6f80882012-03-23 14:19:49 +0530136 width: 900px;
137 margin: auto;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530138}
139header .container {
140 width: 900px;
141 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530142}
143
Rushabh Mehta2438de42012-03-15 16:43:46 +0530144@media (max-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530145 div#body_div, header .container, .content, #opened-page-selector, footer {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530146 width: 900px;
147 }
148}
149
150@media (min-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530151 div#body_div, header .container, .content, #opened-page-selector, footer {
152 width: 1100px;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530153 }
154}
155
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530156div.no_script {
157 display: none;
158}
159
160div.loading_div {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530161 background-color: #FFFFCC;
162 z-index: 1999;
163 right: 5px;
164 width: 90px;
165 display: none;
166 text-align: center;
167 padding: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530168 border: 1px solid #FF4;
169}
170
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530171div.std-footer {
172 margin: 13px 0px;
173 border-top: 1px solid #AAA;
174 padding: 13px;
175}
176
177div.std-footer-item {
178 margin: 0px 13px 13px 0px;
179}
180
181.shadow {
182 -moz-box-shadow: 0px 2px 2px #888;
183 -webkit-box-shadow: 0px 2px 2px #888;
184 box-shadow: 0px 2px 2px #888;
185}
186
187.round {
188 -webkit-border-radius: 5px;
189 -moz-border-radius: 5px;
190 border-radius: 5px;
191}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530192
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530193.layout_wrapper, .layout-wrapper {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530194 -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
195 -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
196 box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530197 background-color: #fff;
198 padding: 15px;
199}
200
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530201.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530202 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530203 padding: 0px;
204}
205
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530206.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530207 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530208 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530209 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530210 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530211 min-height: 600px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530212 -moz-box-shadow: 7px 0px 6px -2px #ddd;
213 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
214 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530215}
216
217.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530218 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530219 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530220 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530221 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530222 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530223 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530224}
225
226/* from bootstrap */
227.container {
228 margin-left: auto;
229 margin-right: auto;
230 zoom: 1;
231}
232.container:before, .container:after {
233 display: table;
234 content: "";
235 zoom: 1;
236}
237.container:after {
238 clear: both;
239}
240
Anand Doshi40ee8d62012-02-24 19:21:47 +0530241.well {
242 min-height: 20px;
243 padding: 19px;
244 margin-bottom: 20px;
245 background-color: #f5f5f5;
246 border: 1px solid #eee;
247 border: 1px solid rgba(0, 0, 0, 0.05);
248 -webkit-border-radius: 4px;
249 -moz-border-radius: 4px;
250 border-radius: 4px;
251 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
252 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
253 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
254}
255
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530256.avatar-small {
257 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530258 width: 24px;
259 height: 20px;
260 vertical-align: middle;
261 overflow: hidden;
262 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530263}
264.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530265 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530266}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530267
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530268/*
269 * lib/css/legacy/messages.css
270 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530271
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530272/* FLOATING MESSAGE */
273
274.btn-img { cursor: pointer; }
275
276div.fetching { color: #888; text-align:right; }
277
278div.notice {
279 postion: absolute;
280 background-color: #000;
281 -moz-border-radius: 5px; -webkit-border-radius: 5px;
282 opacity: 0.6;
283 right: 0;
284 top: 0;
285 margin-top: 8px;
286 z-index: -1;
287 padding: 8px;
288}
289
290/** help **/
291
292.info-box {
293 background-color: #F8F8F8;
294 border: 1px solid #CCCCCC;
295 border-radius: 3px 3px 3px 3px;
296 line-height: 1.6em;
297 overflow: auto;
298 padding: 6px 10px;
299 margin-bottom: 9px;
300}
301
302.help_box, .help-box {
303 background-color:#FFC;
304 font-size: 13px;
305 color: #864;
306 padding: 7px;
307 margin: 11px 0px;
308 border: 1px solid #EEB;
309}
310
311.help_box_big {
312 background-color:#FFC;
313 color: #864;
314 padding: 7px;
315 margin: 7px 0px;
316 border: 1px solid #EEB;
317 text-align: center;
318 font-size: 14px;
319}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530320
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530321/*
322 * lib/css/legacy/forms.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530323 */
324/* FORMS */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530325
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530326div.form-section-head {
Rushabh Mehta38474e22012-03-13 16:11:52 +0530327 margin: 11px 0px 3px 0px;
328 border-top: 1px solid #ccc;
329 padding-top: 11px;
330}
331
332div.form-layout-row:first-child .form-section-head {
333 border-top: 0px solid #ccc !important;
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530334}
335
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530336div.form-section-head h3 {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530337 line-height: 20px;
338}
339
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530340div.form-section-head hr {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530341 margin: 9px 0px;
342}
343
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530344
345div.frm_print_wrapper {
346 background-color:#FFF;
347 border:1px solid #444;
348 padding: 40px;
349
350 box-shadow:1px 1px 8px #229;
351 -moz-box-shadow: 1px 1px 8px #229;
352 -webkit-box-shadow: 1px 1px 8px #229;
353}
354
355div.page_break {
356 margin: 24px 0px;
357 border-top: 1px dashed #888;
358}
359
360div.grid_tbarlinks {
361 border-bottom: 0px;
362 background-color: #CCC;
363 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530364 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530365 float: right;
366
367 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
368 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
369}
370
371
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530372div.dialog_frm {
373 position: relative;
374 margin: 10px;
375}
376
377
378
379/*------------------*/
380
381.top_cell {
382 height: 50px;
383}
384
385div.attach_area {
386 padding: 8px;
387 margin: 8px;
388 background-color: #EEE;
389}
390
391div.attach_area table {
392 width: 100%;
393}
394
395.tablabel_normal {
396 margin: 0 4px 0 0;
397 padding: 3px 5px;
398 line-height: 1.3em;
399 display: inline;
400 cursor: pointer;
401}
402
403.tablabel_selected {
404 margin: 0 4px 0 0;
405 padding: 3px 5px;
406 line-height: 1.3em;
407 font-weight: bold;
408 display: inline;
409 cursor: pointer;
410 color: #000;
411}
412
413.scrollhead_wrapper {
414 position: absolute;
415 z-index: 1;
416 height: 30px;
417}
418
419.treeimg {
420 cursor: pointer;
421 margin-right: 3px;
422}
423
424
425.sectionCell {
426 padding: 5px;
427 vertical-align: top;
428}
429
430.code_area {
431 width: 80%;
432 margin: 8px;
433 padding: 4px;
434 background-color: #F8F8F8;
435 border: 1px solid #CCC;
436 overflow-x: auto;
437}
438
439.code_text {
440 width: 100%;
441 height: 360px;
442 margin-top: 3px;
443 font-family: Courier, Fixed;
444 font-size: 12px;
445}
446
447div.time_field select{
448 display: inline;
449 margin: 2px;
450 width: 45px;
451}
452
453/* Documents */
454
455.frm_field_table {
456 width: 100%;
457 border-collapse: collapse;
458}
459
460.datalabelcell {
461 padding: 2px 0px;
462 width: 160px;
463 vertical-align: top;
464}
465.datainputcell { padding: 2px 0px; }
466
467
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530468.help ol {
469 padding-left: 19px;
470}
471
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530472.field_description_top {
473 margin-bottom: 3px;
474}
475
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530476.input_area input, select, textarea {
477 font-size: 14px;
478 padding: 2px;
479}
480
481.input_area input {
482 width: 80%;
483 margin: 0px;
484}
485.input_area select {
486 width: 80%;
487}
488.input_area textarea {
489 width: 90%;
490}
491
492.disp_area {
493 width: 80%;
494 padding: 2px 0px;
495 font-size: 12px;
496}
497.disp_area_no_val {
498 height: 14px;
499}
500
501.no_img {
502 padding: 40px;
503 width: 100px;
504 height: 20px;
505 color: #888;
506 text-align: center;
507 border: 1px solid #AAA;
508}
509
510.input-mandatory {
511 font-size: 14px !important;
512 font-weight: bold;
513}
514
515.field-to-update {
516 background-color:#FEE;
517}
518
519/* sidebar */
520
521div.sidebar-comment-wrapper input {
522 width: 50%;
523}
524div.sidebar-comment-message {
525 margin-top: 8px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530526 color: #777;
527}
528
529div.sidebar-comment-text {
530 font-size: 12px;
531 font-weight: bold;
532 margin-top: 8px;
533 color: #444;
534}
535div.sidebar-comment-info {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530536 color: #777;
537}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530538
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530539/*
540 * lib/css/legacy/grid.css
541 */
542
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530543
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530544/* Grid */
545
546
547/* --- Simple --- */
548.grid_wrapper_simple {
549 width: 100%;
550 margin-bottom: 8px;
551 border: 1px solid #AA9;
552}
553
554.grid_head_wrapper_simple {
555 padding: 0px;
556 border-bottom: 2px solid #AAA;
557}
558
559.grid_head_wrapper_simple td {
560 border-right: 1px solid #AA9;
561}
562
563.grid_head_wrapper_simple td div {
564 padding: 2px;
565}
566
567.grid_tab_wrapper_simple {
568}
569
570.grid_cell_simple {
571 padding: 2px;
572 background-color: #fff;
573 border-right: 1px solid #AA9;
574}
575
576
577/* --- Normal --- */
578.grid_wrapper {
579 position: relative;
580 overflow: auto;
581 border: 1px solid #AAA;
582 width: 100%;
583 margin-bottom: 8px;
584 background-color: #fff;
585}
586
587.grid_tab_wrapper {
588 position: absolute;
589 top: 40px;
590 border-bottom: 1px solid #DDD;
591}
592
593.grid_table, .grid_head_table {
594 table-layout: fixed;
595 border-collapse: collapse;
596 /*width: 100%;*/
597}
598
599.grid_cell {
600 border-right: 1px solid #ddd;
601 padding: 0px;
602 background-color: #fff;
603}
604
605.grid_head_wrapper {
606 position: absolute;
607 z-index: 1;
608 height: 40px;
609 padding: 0px;
610 overflow: hidden;
611 /*background-color: #fff;*/
612}
613
614.grid_head_table td {
615 background-color: #EEE;
616 border-right: 1px solid #AAA;
617 border-bottom: 1px solid #AAA;
618 height: 40px;
619 padding: 0px;
620}
621
622.grid_head_table td div {
623 color: #222;
624 font-weight: bold;
625 overflow: hidden;
626 padding: 2px 0px;
627 text-align: center;
628}
629
630.grid_selector {
631 padding: 1px;
632 border-right: 1px solid #DDD;
633 width: 20px;
634 background-color: #fff;
635}
636
637.grid_cell_div {
638 padding: 2px;
639 cursor: pointer;
640 overflow: hidden;
641 border: 2px solid #FFF;
642}
643
644.grid_cell_div_selected {
645 border: 2px solid #88f;
646}
647
648.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
649 margin: 0px;
650 border: 0px;
651 width: 100%;
652 margin: 0px;
653 }
654
655.grid_cell_div textarea {
656 border: 3px solid #abf;
657 height:200px;
658 width: 300px;
659 z-index: 10;
660 position:absolute;
661}
662
663.gridDivSelected option { border: 0px; }
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530664
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530665/*
666 * lib/css/legacy/listing.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530667 */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530668
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530669
670/* SRS */
671
672table.srs_result_tab {
673 border: 2px solid #AAA;
674 border-collapse: collapse;
675}
676
677/* firefox bug fix for disappering borders */
678table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
679 position: static;
680}
681
682table.srs_result_tab td {
683 padding: 3px 2px;
684 position: static;
685}
686
687div.srs_body_area {
688}
689
690div.srs_results_area {
691}
692
693div.srs_filter_wrapper {
694 border: 1px solid #CCF;
695
696 background-color: #EEF;
697 margin:0px 0px 8px 0px;
698
699 -moz-border-radius: 5px;
700 -webkit-border-radius: 5px;
701 border-radius: 5px;
702}
703
704div.srs_filter_area {
705 padding: 8px;
706}
707
708div.srs_filter_area td {
709 vertical-align: middle;
710}
711
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530712/*
713 * lib/css/legacy/report.css
714 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530715
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530716/* Reports */
717
718div.report_grid_area {
719 position: relative;
720 padding: 8px;
721}
722
723
724div.report_tab {
725 border: 1px solid #AAA;
726 position: relative;
727 overflow: auto;
728}
729
730div.report_no_data {
731 padding: 8px;
732 background-color: #EEE;
733 border: 1px solid #DDD;
734 position: absolute;
735 margin-left: 40%;
736 margin-top: 50px;
737 display: none;
738}
739
740div.report_htitle {
741 float: left;
742 padding: 2px;
743 font-size: 14px;
744 font-weight: bold;
745 margin-left: 4px;
746 color: #665;
747 /*font-weight: bold;*/
748}
749
750div.report_tbar {
751 background-color: #EEF;
752 border: 1px solid #CCF;
753 border-bottom: 0px;
754 height: 28px;
755}
756
757div.report_tbar table{
758 width: 100%;
759}
760div.report_tbar table td {
761
762}
763div.report_tbar table td div {
764 position: relative;
765}
766div.report_tbar button, div.report_tbar select, div.report_tbar img {
767 font-size: 11px;
768 margin: 0px;
769}
770
771div.report_head_wrapper {
772 position: absolute;
773 height: 24px;
774 top: 0px;
775 z-index: 1;
776}
777
778div.report_tab_wrapper {
779 position: absolute;
780 border-bottom: 1px solid #AAA;
781 border-top: 1px solid #AAA;
782}
783
784div.report_tab_wrapper table, div.report_head_wrapper table {
785 table-layout: fixed;
786 border-collapse: collapse;
787 /*width: 100%;*/
788}
789
790div.report_tab_wrapper table td, div.report_head_wrapper table td {
791 border-left: 1px solid #AAA;
792 border-right: 1px solid #AAA;
793 border-bottom: 1px solid #AAA;
794 overflow: hidden;
795 padding: 0px;
796}
797
798div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
799 padding: 3px;
800 overflow: hidden;
801}
802
803.report_head_cell {
804 background-color: #EEE;
805 border-bottom: 1px solid #AA9;
806 text-align: center;
807 font-weight: bold;
808}
809.report_head_cell div {
810 color:#222;
811 height: 18px;
812}
813
814
815/* FINDER */
816
817div.finder_wrapper {
818}
819
820div.finder_body_area {
821 margin: 16px;
822}
823
824div.finder_body {
825 display: none;
826}
827
828div.finder_advanced_area table {
829 width: 80%;
830}
831
832div.finder_advanced_area textarea {
833 width: 80%;
834}
835
836div.finder_filter_area {
837 position: relative;
838}
839
840div.filter_head {
841 font-size: 14px;
842 margin-bottom: 2px;
843}
844div.filter_dt_head {
845 font-size: 14px;
846 font-weight: bold;
847 margin-bottom: 2px;
848}
849table.filter_tab {
850 width: 96%;
851 border-collapse: collapse;
852}
853
854table.filter_tab td {
855 width: 50%;
856}
857
858div.finder_picker_area {
859
860}
861div.builder_field {
862 margin: 0px;
863}
864div.builder_dt_head {
865 font-size: 14px;
866 font-weight: bold;
867 margin-bottom: 2px;
868}
869
870div.builder_field table {
871 width: 90%;
872 border-collapse: collapse;
873}
874
875div.builder_label {
876 height: 20px;
877}
878
879div.builder_head {
880 font-size: 16px;
881 font-weight: bold;
882 color: #AB6;
883}
884
885table.builder_tab {
886 width: 96%;
887 border-collapse: collapse;
888}
889
890table.builder_tab td {
891 width: 33%;
892 padding: 2px;
893}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530894
895/*
896 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530897 */
898/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530899
900div.dialog_wrapper {
901 position: absolute;
902 width: 440px;
903 display: none;
904 z-index: 90;
905 background-color: #FFF;
906 border: 3px solid #222;
907 box-shadow:1px 1px 5px #777;
908 -moz-box-shadow: 1px 1px 5px #777;
909 -webkit-box-shadow: 1px 1px 5px #777;
910
911 border-radius: 5px;
912 -moz-border-radius: 5px;
913 -webkit-border-radius: 5px;
914}
915
916div.dialog_head {
917 height: 22px;
918 padding: 4px;
919 background-color: #222;
920 color: #FFF;
921}
922
923div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530924 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530925 border-radius: 5px;
926 -moz-border-radius: 5px;
927 -webkit-border-radius: 5px;
928}
929
930div.dialog_back {
931 position: fixed;
932 display: none;
933 top: 0px;
934 left: 0px;
935 bottom: 0px;
936 right: 0px;
937 background-color: #EEE;
938 opacity: 0.6;
939 z-index: 50;
940 text-align: center;
941}
942
943div.dialog_message {
944 display: none;
945 position: absolute;
946 width: 250px;
947 font-size: 12px;
948 z-index: 91;
949 background-color:#FFF;
950 padding: 12px;
951 border: 1px solid #444;
952}
953
954div.dialog_row {
955 padding: 8px 8px 0px 8px;
956}
957
958div.dialog_row table {
959 width: 100%;
960}
961
962div.dialog_row table td {
963}
964
965div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
966 width: 80%;
967 font-size: 14px;
968}
969
970div.dialog_row table td textarea {
971 width: 80%;
972 height: 200px;
973 font-size: 12px;
974}
975
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530976
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530977/*
978 * lib/css/legacy/tabs.css
979 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530980
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530981/******* TABS ********/
982
983div.box_label_wrapper {
984 border-bottom: 6px solid #777;
985}
986
987div.box_label_body {
988 height: 22px;
989}
990
991ul.box_tabs {
992 margin: 0px;
993 padding: 0px;
994 list-style: none;
995}
996
997ul.box_tabs li {
998 height: 22px;
999 float:left;
1000 font-size: 12px;
1001 text-decoration: underline;
1002
1003 background-color: #DDD;
1004
1005 margin:0;
1006 margin-left: 4px;
1007 padding:0 0 0 9px;
1008 cursor: pointer;
1009}
1010
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301011ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301012 display:block;
1013 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301014 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301015}
1016
1017ul.box_tabs li.box_tab_mouseover {
1018 background-color: #BBB;
1019}
1020
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301021ul.box_tabs li.box_tab_selected {
1022 background-color: #777;
1023
1024 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1025 background: -moz-linear-gradient(top, #999, #777);
1026
1027 color: #FFF;
1028 font-weight:bold;
1029
1030}
1031ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301032 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301033}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301034
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301035/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301036 * lib/css/legacy/sidebar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301037 */
1038div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301039}
1040
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301041div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301042 font-size: 14px;
1043 font-weight: bold;
1044 color: #555;
1045 margin-bottom: 12px;
1046}
1047
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301048div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301049 margin-bottom: 11px;
1050 overflow: hidden;
1051}
1052
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301053div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301054 padding: 5px 11px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301055 border-bottom: 1px solid #aaa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301056}
1057
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301058div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301059 margin: 7px 11px 11px 11px;
1060}
1061
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301062div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301063 margin-bottom: 7px;
1064}
1065
Rushabh Mehtad0251332012-02-21 17:26:50 +05301066div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301067 color: #666;
1068}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301069
1070/*
1071 * lib/css/Aristo/aristo.selected.css
1072 */
1073/*
1074 * jQuery UI CSS Framework 1.8.7
1075 *
1076 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1077 * Dual licensed under the MIT or GPL Version 2 licenses.
1078 * http://jquery.org/license
1079 *
1080 * http://docs.jquery.com/UI/Theming/API
1081 */
1082
1083/* Layout helpers
1084----------------------------------*/
1085.ui-helper-hidden { display: none; }
1086.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
1087.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
1088.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
1089.ui-helper-clearfix { display: inline-block; }
1090/* required comment for clearfix to work in Opera \*/
1091* html .ui-helper-clearfix { height:1%; }
1092.ui-helper-clearfix { display:block; }
1093/* end clearfix */
1094.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
1095
1096
1097/* Interaction Cues
1098----------------------------------*/
1099.ui-state-disabled { cursor: default !important; }
1100
1101
1102/* Icons
1103----------------------------------*/
1104
1105/* states and images */
1106.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
1107
1108
1109/* Misc visuals
1110----------------------------------*/
1111
1112/* Overlays */
1113.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1114
1115
1116/*
1117 * jQuery UI CSS Framework 1.8.7
1118 *
1119 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1120 * Dual licensed under the MIT or GPL Version 2 licenses.
1121 * http://jquery.org/license
1122 *
1123 * http://docs.jquery.com/UI/Theming/API
1124 *
1125 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
1126 */
1127
1128
1129/* Component containers
1130----------------------------------*/
1131.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
1132.ui-widget .ui-widget { font-size: 1em; }
1133.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
1134.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
1135.ui-widget-content a { color: #4F4F4F; }
1136.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
1137.ui-widget-header {
1138 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1139 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1140 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1141 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1142 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1143 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1144 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1145}
1146.ui-widget-header a { color: #4F4F4F; }
1147
1148/* Interaction states
1149----------------------------------*/
1150.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
1151.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1152 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1153 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1154 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1155 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1156 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1157 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1158 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1159 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1160 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1161 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1162}
1163.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
1164.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; }
1165.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
1166.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
1167 outline: none;
1168 color: #1c4257; border: 1px solid #7096ab;
1169 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
1170 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
1171 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
1172 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
1173 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
1174 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
1175 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
1176 -webkit-box-shadow: none;
1177 -moz-box-shadow: none;
1178 box-shadow: none;
1179}
1180.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
1181.ui-widget :active { outline: none; }
1182
1183/* Interaction Cues
1184----------------------------------*/
1185.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; }
1186.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
1187.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; }
1188.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
1189.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
1190.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
1191.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
1192.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
1193
1194/* Icons
1195----------------------------------*/
1196
1197/* states and images */
1198.ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1199.ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1200.ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1201.ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1202.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1203.ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1204.ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1205.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; }
1206.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
1207
1208/* positioning */
1209.ui-icon-carat-1-n { background-position: 0 0; }
1210.ui-icon-carat-1-ne { background-position: -16px 0; }
1211.ui-icon-carat-1-e { background-position: -32px 0; }
1212.ui-icon-carat-1-se { background-position: -48px 0; }
1213.ui-icon-carat-1-s { background-position: -64px 0; }
1214.ui-icon-carat-1-sw { background-position: -80px 0; }
1215.ui-icon-carat-1-w { background-position: -96px 0; }
1216.ui-icon-carat-1-nw { background-position: -112px 0; }
1217.ui-icon-carat-2-n-s { background-position: -128px 0; }
1218.ui-icon-carat-2-e-w { background-position: -144px 0; }
1219.ui-icon-triangle-1-n { background-position: 0 -16px; }
1220.ui-icon-triangle-1-ne { background-position: -16px -16px; }
1221.ui-icon-triangle-1-e { background-position: -32px -16px; }
1222.ui-icon-triangle-1-se { background-position: -48px -16px; }
1223.ui-icon-triangle-1-s { background-position: -64px -16px; }
1224.ui-icon-triangle-1-sw { background-position: -80px -16px; }
1225.ui-icon-triangle-1-w { background-position: -96px -16px; }
1226.ui-icon-triangle-1-nw { background-position: -112px -16px; }
1227.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
1228.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
1229.ui-icon-arrow-1-n { background-position: 0 -32px; }
1230.ui-icon-arrow-1-ne { background-position: -16px -32px; }
1231.ui-icon-arrow-1-e { background-position: -32px -32px; }
1232.ui-icon-arrow-1-se { background-position: -48px -32px; }
1233.ui-icon-arrow-1-s { background-position: -64px -32px; }
1234.ui-icon-arrow-1-sw { background-position: -80px -32px; }
1235.ui-icon-arrow-1-w { background-position: -96px -32px; }
1236.ui-icon-arrow-1-nw { background-position: -112px -32px; }
1237.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
1238.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
1239.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
1240.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
1241.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
1242.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
1243.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
1244.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
1245.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
1246.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
1247.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
1248.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
1249.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
1250.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
1251.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
1252.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
1253.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
1254.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
1255.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
1256.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
1257.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
1258.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
1259.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
1260.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
1261.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
1262.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
1263.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
1264.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
1265.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
1266.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
1267.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
1268.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
1269.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
1270.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
1271.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
1272.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
1273.ui-icon-arrow-4 { background-position: 0 -80px; }
1274.ui-icon-arrow-4-diag { background-position: -16px -80px; }
1275.ui-icon-extlink { background-position: -32px -80px; }
1276.ui-icon-newwin { background-position: -48px -80px; }
1277.ui-icon-refresh { background-position: -64px -80px; }
1278.ui-icon-shuffle { background-position: -80px -80px; }
1279.ui-icon-transfer-e-w { background-position: -96px -80px; }
1280.ui-icon-transferthick-e-w { background-position: -112px -80px; }
1281.ui-icon-folder-collapsed { background-position: 0 -96px; }
1282.ui-icon-folder-open { background-position: -16px -96px; }
1283.ui-icon-document { background-position: -32px -96px; }
1284.ui-icon-document-b { background-position: -48px -96px; }
1285.ui-icon-note { background-position: -64px -96px; }
1286.ui-icon-mail-closed { background-position: -80px -96px; }
1287.ui-icon-mail-open { background-position: -96px -96px; }
1288.ui-icon-suitcase { background-position: -112px -96px; }
1289.ui-icon-comment { background-position: -128px -96px; }
1290.ui-icon-person { background-position: -144px -96px; }
1291.ui-icon-print { background-position: -160px -96px; }
1292.ui-icon-trash { background-position: -176px -96px; }
1293.ui-icon-locked { background-position: -192px -96px; }
1294.ui-icon-unlocked { background-position: -208px -96px; }
1295.ui-icon-bookmark { background-position: -224px -96px; }
1296.ui-icon-tag { background-position: -240px -96px; }
1297.ui-icon-home { background-position: 0 -112px; }
1298.ui-icon-flag { background-position: -16px -112px; }
1299.ui-icon-calendar { background-position: -32px -112px; }
1300.ui-icon-cart { background-position: -48px -112px; }
1301.ui-icon-pencil { background-position: -64px -112px; }
1302.ui-icon-clock { background-position: -80px -112px; }
1303.ui-icon-disk { background-position: -96px -112px; }
1304.ui-icon-calculator { background-position: -112px -112px; }
1305.ui-icon-zoomin { background-position: -128px -112px; }
1306.ui-icon-zoomout { background-position: -144px -112px; }
1307.ui-icon-search { background-position: -160px -112px; }
1308.ui-icon-wrench { background-position: -176px -112px; }
1309.ui-icon-gear { background-position: -192px -112px; }
1310.ui-icon-heart { background-position: -208px -112px; }
1311.ui-icon-star { background-position: -224px -112px; }
1312.ui-icon-link { background-position: -240px -112px; }
1313.ui-icon-cancel { background-position: 0 -128px; }
1314.ui-icon-plus { background-position: -16px -128px; }
1315.ui-icon-plusthick { background-position: -32px -128px; }
1316.ui-icon-minus { background-position: -48px -128px; }
1317.ui-icon-minusthick { background-position: -64px -128px; }
1318.ui-icon-close { background-position: -80px -128px; }
1319.ui-icon-closethick { background-position: -96px -128px; }
1320.ui-icon-key { background-position: -112px -128px; }
1321.ui-icon-lightbulb { background-position: -128px -128px; }
1322.ui-icon-scissors { background-position: -144px -128px; }
1323.ui-icon-clipboard { background-position: -160px -128px; }
1324.ui-icon-copy { background-position: -176px -128px; }
1325.ui-icon-contact { background-position: -192px -128px; }
1326.ui-icon-image { background-position: -208px -128px; }
1327.ui-icon-video { background-position: -224px -128px; }
1328.ui-icon-script { background-position: -240px -128px; }
1329.ui-icon-alert { background-position: 0 -144px; }
1330.ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
1331.ui-icon-notice { background-position: -32px -144px; }
1332.ui-icon-help { background-position: -48px -144px; }
1333.ui-icon-check { background-position: -64px -144px; }
1334.ui-icon-bullet { background-position: -80px -144px; }
1335.ui-icon-radio-off { background-position: -96px -144px; }
1336.ui-icon-radio-on { background-position: -112px -144px; }
1337.ui-icon-pin-w { background-position: -128px -144px; }
1338.ui-icon-pin-s { background-position: -144px -144px; }
1339.ui-icon-play { background-position: 0 -160px; }
1340.ui-icon-pause { background-position: -16px -160px; }
1341.ui-icon-seek-next { background-position: -32px -160px; }
1342.ui-icon-seek-prev { background-position: -48px -160px; }
1343.ui-icon-seek-end { background-position: -64px -160px; }
1344.ui-icon-seek-start { background-position: -80px -160px; }
1345/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1346.ui-icon-seek-first { background-position: -80px -160px; }
1347.ui-icon-stop { background-position: -96px -160px; }
1348.ui-icon-eject { background-position: -112px -160px; }
1349.ui-icon-volume-off { background-position: -128px -160px; }
1350.ui-icon-volume-on { background-position: -144px -160px; }
1351.ui-icon-power { background-position: 0 -176px; }
1352.ui-icon-signal-diag { background-position: -16px -176px; }
1353.ui-icon-signal { background-position: -32px -176px; }
1354.ui-icon-battery-0 { background-position: -48px -176px; }
1355.ui-icon-battery-1 { background-position: -64px -176px; }
1356.ui-icon-battery-2 { background-position: -80px -176px; }
1357.ui-icon-battery-3 { background-position: -96px -176px; }
1358.ui-icon-circle-plus { background-position: 0 -192px; }
1359.ui-icon-circle-minus { background-position: -16px -192px; }
1360.ui-icon-circle-close { background-position: -32px -192px; }
1361.ui-icon-circle-triangle-e { background-position: -48px -192px; }
1362.ui-icon-circle-triangle-s { background-position: -64px -192px; }
1363.ui-icon-circle-triangle-w { background-position: -80px -192px; }
1364.ui-icon-circle-triangle-n { background-position: -96px -192px; }
1365.ui-icon-circle-arrow-e { background-position: -112px -192px; }
1366.ui-icon-circle-arrow-s { background-position: -128px -192px; }
1367.ui-icon-circle-arrow-w { background-position: -144px -192px; }
1368.ui-icon-circle-arrow-n { background-position: -160px -192px; }
1369.ui-icon-circle-zoomin { background-position: -176px -192px; }
1370.ui-icon-circle-zoomout { background-position: -192px -192px; }
1371.ui-icon-circle-check { background-position: -208px -192px; }
1372.ui-icon-circlesmall-plus { background-position: 0 -208px; }
1373.ui-icon-circlesmall-minus { background-position: -16px -208px; }
1374.ui-icon-circlesmall-close { background-position: -32px -208px; }
1375.ui-icon-squaresmall-plus { background-position: -48px -208px; }
1376.ui-icon-squaresmall-minus { background-position: -64px -208px; }
1377.ui-icon-squaresmall-close { background-position: -80px -208px; }
1378.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
1379.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
1380.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
1381.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
1382.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
1383.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
1384
1385
1386/* Misc visuals
1387----------------------------------*/
1388
1389/* Corner radius */
1390.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
1391.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
1392.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
1393.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1394.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; }
1395.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; }
1396.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; }
1397.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; }
1398.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
1399
1400/* Overlays */
1401.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
1402.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; }
1403
1404/*
1405 * jQuery UI Autocomplete 1.8.7
1406 *
1407 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1408 * Dual licensed under the MIT or GPL Version 2 licenses.
1409 * http://jquery.org/license
1410 *
1411 * http://docs.jquery.com/UI/Autocomplete#theming
1412 */
1413.ui-autocomplete {
1414 position: absolute; cursor: default; z-index: 3;
1415 -moz-border-radius: 0;
1416 -webkit-border-radius: 0;
1417 border-radius: 0;
1418 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1419 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1420 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1421}
1422
1423/* workarounds */
1424* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
1425
1426/*
1427 * jQuery UI Menu 1.8.7
1428 *
1429 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1430 * Dual licensed under the MIT or GPL Version 2 licenses.
1431 * http://jquery.org/license
1432 *
1433 * http://docs.jquery.com/UI/Menu#theming
1434 */
1435.ui-menu {
1436 list-style:none;
1437 padding: 2px;
1438 margin: 0;
1439 display:block;
1440 float: left;
1441}
1442.ui-menu .ui-menu {
1443 margin-top: -3px;
1444}
1445.ui-menu .ui-menu-item {
1446 margin:0;
1447 padding: 0;
1448 zoom: 1;
1449 float: left;
1450 clear: left;
1451 width: 100%;
1452}
1453.ui-menu .ui-menu-item a {
1454 text-decoration:none;
1455 display:block;
1456 padding:.2em .4em;
1457 line-height:1.5;
1458 zoom:1;
1459}
1460.ui-menu .ui-menu-item a.ui-state-hover,
1461.ui-menu .ui-menu-item a.ui-state-active {
1462 font-weight: normal;
1463 margin: -1px;
1464 background: #5f83b9;
1465 color: #FFFFFF;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301466 border-color: #466086;
1467 -moz-border-radius: 0;
1468 -webkit-border-radius: 0;
1469 border-radius: 0;
1470}
1471
1472/*
1473 * jQuery UI Datepicker 1.8.7
1474 *
1475 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1476 * Dual licensed under the MIT or GPL Version 2 licenses.
1477 * http://jquery.org/license
1478 *
1479 * http://docs.jquery.com/UI/Datepicker#theming
1480 */
1481.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
1482.ui-datepicker {
1483 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1484 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1485 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1486}
1487.ui-datepicker .ui-datepicker-header { position:relative; padding:.35em 0; border: none; border-bottom: 1px solid #B6B6B6; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; }
1488.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
1489.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
1490.ui-datepicker .ui-datepicker-prev { left:2px; }
1491.ui-datepicker .ui-datepicker-next { right:2px; }
1492.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
1493.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
1494.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
1495.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
1496.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; background: url(../lib/css/Aristo/images/icon_sprite.png) no-repeat; }
1497.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; font-size: 12px; text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
1498.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
1499.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
1500.ui-datepicker select.ui-datepicker-month,
1501.ui-datepicker select.ui-datepicker-year { width: 49%;}
1502.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
1503.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
1504.ui-datepicker td { border: 0; padding: 1px; }
1505.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
1506.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
1507.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
1508.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
1509.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
1510.ui-datepicker table .ui-state-hover { background: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; -webkit-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; -moz-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; border-color: #5F83B9; }
1511.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
1512.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
1513
1514/* with multiple calendars */
1515.ui-datepicker.ui-datepicker-multi { width:auto; }
1516.ui-datepicker-multi .ui-datepicker-group { float:left; }
1517.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
1518.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
1519.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
1520.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
1521.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
1522.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
1523.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
1524.ui-datepicker-row-break { clear:both; width:100%; }
1525
1526/* RTL support */
1527.ui-datepicker-rtl { direction: rtl; }
1528.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
1529.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
1530.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
1531.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
1532.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
1533.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
1534.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
1535.ui-datepicker-rtl .ui-datepicker-group { float:right; }
1536.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1537.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1538
1539/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1540.ui-datepicker-cover {
1541 display: none; /*sorry for IE5*/
1542 display/**/: block; /*sorry for IE5*/
1543 position: absolute; /*must have*/
1544 z-index: -1; /*must have*/
1545 filter: mask(); /*must have*/
1546 top: -4px; /*must have*/
1547 left: -4px; /*must have*/
1548 width: 200px; /*must have*/
1549 height: 200px; /*must have*/
1550}
1551
1552
1553
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301554/*
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301555 * lib/css/ui/list.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301556 */
1557.hide {
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301558 display: none;
1559}
1560
1561.list-filters {
1562 margin: 7px 0px;
1563}
1564
1565.wnlist .img-load {
1566 display: none;
Rushabh Mehta842f7822012-03-22 14:24:49 +05301567 float: left;
1568 margin-bottom: 8px;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301569}
1570
Rushabh Mehta2438de42012-03-15 16:43:46 +05301571/* list-row */
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301572div.list-row {
1573 border-bottom: 1px solid #eee;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301574 padding: 5px 0px;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301575}
1576div.list-row:hover {
1577 background-color: #eef
1578}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301579
Rushabh Mehta2438de42012-03-15 16:43:46 +05301580div.list-row .label {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301581 margin-right: 4px;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301582}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301583
1584div.list-row table {
1585 table-layout: fixed;
1586 border-collapse: collapse;
1587 width: 100%;
1588}
1589
1590div.list-row table td {
1591 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05301592 /*padding-right: 3px;*/
1593 padding: 0px 3px;
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301594 vertical-align: middle;
1595 height: 24px;
1596 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05301597 word-wrap: break-word;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301598}
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301599
Rushabh Mehta9f89e352012-03-09 17:51:39 +05301600div.paging-button {
1601 text-align: center;
1602 padding: 11px 0px;
1603}
1604
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301605div.show_filters {
1606 display: none;
1607}
1608
1609div.filter_list {
1610 padding: 13px;
1611}
1612
1613div.show_filters.well {
1614 margin-top: 11px;
1615 margin-bottom: 11px;
1616}
1617
1618div.filter_list .run_btn {
1619 text-align: right;
1620}
1621
1622div.filter_list .add_filter {
1623 margin: 3px 0px;
1624}
1625
1626div.list_filter {
1627 margin: 7px 0px;
1628}
1629
1630div.list_filter input, div.list_filter select {
1631 width: 130px;
1632 margin-right: 7px;
1633}
1634
Rushabh Mehta2438de42012-03-15 16:43:46 +05301635/* bar */
1636
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301637span.bar-outer {
1638 display: inline-block;
1639 margin: 0px 7px;
1640 margin-top: 3px;
1641 background-color: #fff;
1642 border: 1px solid #aaa;
1643 height: 10px;
1644}
1645
1646span.bar-inner {
1647 display: inline-block;
1648 background-color: #bdf;
1649 height: 100%;
1650 margin-bottom: 2px;
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301651 float: left;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301652}
1653span.bar-complete {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301654 background-color: #009900;
1655}
1656span.bar-empty {
1657 background-color: #990000;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301658}
1659
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301660
Rushabh Mehta2438de42012-03-15 16:43:46 +05301661/* stats */
1662
1663div.stat-wrapper {
1664 margin-bottom: 19px;
1665}
1666
1667div.stat-grid {
1668 border: 2px solid #bbb;
1669 background-color: white;
1670 border-radius: 5px;
1671 -moz-border-radius: 5px;
1672 -webkit-border-radius: 5px;
1673 overflow: hidden;
1674}
1675
1676div.stat-label {
1677 position: relative;
1678 padding: 3px;
1679 text-align: center;
1680}
1681div.stat-label, div.stat-label a {
1682 z-index: 5;
1683}
1684
1685div.stat-item {
1686 position: relative;
1687 border-bottom: 1px solid #ddd;
1688}
1689div.stat-item:last-child {
1690 border-bottom: 0px solid #ddd;
1691}
1692
1693div.stat-bar {
1694 position: absolute;
1695 left: 0px;
1696 background-color: #def;
1697 height: 100%;
1698 z-index: 0;
1699}
1700
1701
1702
1703
1704
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301705/*
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301706 * lib/css/ui/fonts.css
1707 */
1708@font-face {
1709 font-family: 'Pontano Sans';
1710 font-style: normal;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301711 font-weight: 800;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301712 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1713}
1714
1715@font-face {
1716 font-family: 'Droid Sans';
1717 font-style: normal;
1718 font-weight: normal;
1719 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1720}
1721
Rushabh Mehta983a1712012-03-21 13:35:34 +05301722@font-face {
1723 font-family: 'PT Sans';
1724 font-style: normal;
1725 font-weight: normal;
1726 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1727}
1728
1729@font-face {
1730 font-family: 'Open Sans';
1731 font-style: normal;
1732 font-weight: 400;
1733 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1734}
Anand Doshi82042f12012-04-06 17:54:17 +05301735
Rushabh Mehta983a1712012-03-21 13:35:34 +05301736@font-face {
1737 font-family: 'Lato';
1738 font-style: normal;
1739 font-weight: 400;
1740 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1741}
1742
Anand Doshi82042f12012-04-06 17:54:17 +05301743@font-face {
1744 font-family: 'Cabin';
1745 font-style: normal;
1746 font-weight: 400;
1747 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
1748}
Rushabh Mehta983a1712012-03-21 13:35:34 +05301749
1750
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301751/*
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 Mehtab6f80882012-03-23 14:19:49 +05303472 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303473 font-weight: bold;
3474}
3475
3476body {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05303477 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05303478 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303479}
3480
3481span, div, td, input, textarea, button, select {
3482 font-family: inherit;
3483}
3484
3485body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05303486 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303487}
3488
Rushabh Mehta983a1712012-03-21 13:35:34 +05303489.small {
3490 font-size: 11.5px;
3491}
3492
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303493.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303494 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303495 text-align: center;
3496}
3497
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303498.module-icons {
3499 background: url(../images/module-icons.png) no-repeat top left;
3500 width:16px;
3501 height:16px;
3502}
3503
3504.module-icons-accounts{ background-position: 0 0; }
3505.module-icons-analysis{ background-position: 0 -66px; }
3506.module-icons-buying{ background-position: 0 -132px; }
3507.module-icons-home{ background-position: 0 -198px; }
3508.module-icons-hr{ background-position: 0 -264px; }
3509.module-icons-people{ background-position: 0 -330px; }
3510.module-icons-production{ background-position: 0 -396px; }
3511.module-icons-projects{ background-position: 0 -462px; }
3512.module-icons-selling{ background-position: 0 -528px; }
3513.module-icons-setup{ background-position: 0 -594px; }
3514.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05303515.module-icons-support{ background-position: 0 -726px; }
3516
Anand Doshidb628762012-02-24 17:56:00 +05303517.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303518 margin: -3px 0px;
3519 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303520 min-width: 20px;
3521 text-align: center;
3522 display: inline-block;
3523 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303524 color: #999999;
3525 background-color: #333131;
3526}
3527
3528.navbar-new-comments:hover,
3529.navbar-new-comments:active,
3530.navbar-new-comments:focus {
3531 color: #fff;
3532}
3533
3534
3535.navbar-new-comments-true {
3536 color: #fff;
3537 background-color: #B00D07;
3538}
3539
3540.navbar-icon-home {
3541 vertical-align: middle;
3542 opacity:0.4;
3543 Filter:alpha(opacity=40); /* For IE8 and earlier */
3544}
3545
3546.navbar-icon-home:hover,
3547.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05303548.navbar-icon-home:active,
3549.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303550 opacity:1;
3551 Filter:alpha(opacity=100); /* For IE8 and earlier */
3552}
3553
3554/*extra size menus for recent*/
3555.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3556 min-width: 160px !important;
3557 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303558}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303559