blob: 496f93af8086c7339ef8e97bd516925d54b5c792 [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
3 * lib/css/legacy/body.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5html {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05306 margin: 0px;
7 padding: 0px;
8}
9
10body {
11 margin: 0px;
12 padding: 0px;
13 font-family: Arial, Helvetica, Sans;
14 font-size: 12px;
15 color: #000;
Rushabh Mehta3f29b852012-02-20 15:40:29 +053016 background-color: #e2e2e2;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053017}
18
Rushabh Mehtaafaac602012-02-14 11:44:13 +053019pre { margin: 0px; padding: 0px; }
20
21button { margin: 2px; margin-left: 0px; }
22
23label {
24 padding-top: 15px;
25 color: #404040;
26}
27
28select, input, textarea {
Rushabh Mehtab9878d02012-03-12 16:12:09 +053029 border: 1px solid #ccc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053030 -moz-border-radius: 4px;
31 -webkit-border-radius: 4px;
32 font-size: 13px;
33 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%;
44 font-size: 12px;
45 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
107div#body_div {
108 position: relative;
109 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530110 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530111 width: 900px;
112 margin: auto;
113 margin-top: 56px;
114}
115
116footer {
117 width: 900px;
118 margin: auto;
119}
120header .container {
121 width: 900px;
122 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530123}
124
125div.no_script {
126 display: none;
127}
128
129div.loading_div {
130 position: absolute;
131 background-color: #FFFFCC;
132 z-index: 1999;
133 right: 5px;
134 width: 90px;
135 display: none;
136 text-align: center;
137 padding: 2px;
138 font-size: 12px;
139 border: 1px solid #FF4;
140}
141
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530142div.std-footer {
143 margin: 13px 0px;
144 border-top: 1px solid #AAA;
145 padding: 13px;
146}
147
148div.std-footer-item {
149 margin: 0px 13px 13px 0px;
150}
151
152.shadow {
153 -moz-box-shadow: 0px 2px 2px #888;
154 -webkit-box-shadow: 0px 2px 2px #888;
155 box-shadow: 0px 2px 2px #888;
156}
157
158.round {
159 -webkit-border-radius: 5px;
160 -moz-border-radius: 5px;
161 border-radius: 5px;
162}
163.gradient {
164 background: #ededed; /* Old browsers */
165 background: -moz-linear-gradient(top, #ededed 0%, #d1d1d1 47%, #b7b7b7 100%); /* FF3.6+ */
166 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(47%,#d1d1d1), color-stop(100%,#b7b7b7)); /* Chrome,Safari4+ */
167 background: -webkit-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Chrome10+,Safari5.1+ */
168 background: -o-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Opera11.10+ */
169 background: -ms-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* IE10+ */
170 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#b7b7b7',GradientType=0 ); /* IE6-9 */
171 background: linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* W3C */
172}
173
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530174.layout_wrapper, .layout-wrapper {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530175 -moz-box-shadow: 1px 1px 8px #555;
176 -webkit-box-shadow: 1px 1px 8px #555;
177 box-shadow: 1px 1px 8px #555;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530178 background-color: #fff;
179 padding: 15px;
180}
181
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530182.layout-wrapper-background {
183 background-color: #f2f2f2 !important;
184 padding: 0px;
185}
186
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530187.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530188 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530189 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530190 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530191 background-color: #FFF;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530192 min-height: 450px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530193 -moz-box-shadow: 7px 0px 6px -2px #ddd;
194 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
195 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530196}
197
198.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530199 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530200 /*float: right;*/
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530201 color: #606060;
202 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530203 padding: 15px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530204 min-height: 450px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530205}
206
207/* from bootstrap */
208.container {
209 margin-left: auto;
210 margin-right: auto;
211 zoom: 1;
212}
213.container:before, .container:after {
214 display: table;
215 content: "";
216 zoom: 1;
217}
218.container:after {
219 clear: both;
220}
221
Anand Doshi40ee8d62012-02-24 19:21:47 +0530222.well {
223 min-height: 20px;
224 padding: 19px;
225 margin-bottom: 20px;
226 background-color: #f5f5f5;
227 border: 1px solid #eee;
228 border: 1px solid rgba(0, 0, 0, 0.05);
229 -webkit-border-radius: 4px;
230 -moz-border-radius: 4px;
231 border-radius: 4px;
232 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
233 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
234 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
235}
236
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530237.avatar-small {
238 display: inline-block;
239 min-width: 29px;
240}
241.avatar-small img {
242 height: 24px;
243 margin-bottom: -7px;
244 max-width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530245}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530246
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530247/*
248 * lib/css/legacy/messages.css
249 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530250
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530251/* FLOATING MESSAGE */
252
253.btn-img { cursor: pointer; }
254
255div.fetching { color: #888; text-align:right; }
256
257div.notice {
258 postion: absolute;
259 background-color: #000;
260 -moz-border-radius: 5px; -webkit-border-radius: 5px;
261 opacity: 0.6;
262 right: 0;
263 top: 0;
264 margin-top: 8px;
265 z-index: -1;
266 padding: 8px;
267}
268
269/** help **/
270
271.info-box {
272 background-color: #F8F8F8;
273 border: 1px solid #CCCCCC;
274 border-radius: 3px 3px 3px 3px;
275 line-height: 1.6em;
276 overflow: auto;
277 padding: 6px 10px;
278 margin-bottom: 9px;
279}
280
281.help_box, .help-box {
282 background-color:#FFC;
283 font-size: 13px;
284 color: #864;
285 padding: 7px;
286 margin: 11px 0px;
287 border: 1px solid #EEB;
288}
289
290.help_box_big {
291 background-color:#FFC;
292 color: #864;
293 padding: 7px;
294 margin: 7px 0px;
295 border: 1px solid #EEB;
296 text-align: center;
297 font-size: 14px;
298}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530299
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530300/*
301 * lib/css/legacy/forms.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530302 */
303/* FORMS */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530304
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530305div.form-section-head {
Rushabh Mehta38474e22012-03-13 16:11:52 +0530306 margin: 11px 0px 3px 0px;
307 border-top: 1px solid #ccc;
308 padding-top: 11px;
309}
310
311div.form-layout-row:first-child .form-section-head {
312 border-top: 0px solid #ccc !important;
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530313}
314
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530315div.form-section-head h3 {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530316 line-height: 20px;
317}
318
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530319div.form-section-head hr {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530320 margin: 9px 0px;
321}
322
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530323
324div.frm_print_wrapper {
325 background-color:#FFF;
326 border:1px solid #444;
327 padding: 40px;
328
329 box-shadow:1px 1px 8px #229;
330 -moz-box-shadow: 1px 1px 8px #229;
331 -webkit-box-shadow: 1px 1px 8px #229;
332}
333
334div.page_break {
335 margin: 24px 0px;
336 border-top: 1px dashed #888;
337}
338
339div.grid_tbarlinks {
340 border-bottom: 0px;
341 background-color: #CCC;
342 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530343 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530344 float: right;
345
346 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
347 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
348}
349
350
351div.frm_tip_box {
352 margin: 0px;
353 padding: 8px;
354 background-color: #FFC;
355 display: none;
356 font-size: 11px;
357 border: 1px solid #FFB;
358}
359
360div.frm_tip_box table {
361 border-collapse: collapse;
362 vertical-align: top;
363}
364
365td.frm_tray_area {
366 width: 122px;
367}
368
369div.dialog_frm {
370 position: relative;
371 margin: 10px;
372}
373
374
375
376/*------------------*/
377
378.top_cell {
379 height: 50px;
380}
381
382div.attach_area {
383 padding: 8px;
384 margin: 8px;
385 background-color: #EEE;
386}
387
388div.attach_area table {
389 width: 100%;
390}
391
392.tablabel_normal {
393 margin: 0 4px 0 0;
394 padding: 3px 5px;
395 line-height: 1.3em;
396 display: inline;
397 cursor: pointer;
398}
399
400.tablabel_selected {
401 margin: 0 4px 0 0;
402 padding: 3px 5px;
403 line-height: 1.3em;
404 font-weight: bold;
405 display: inline;
406 cursor: pointer;
407 color: #000;
408}
409
410.scrollhead_wrapper {
411 position: absolute;
412 z-index: 1;
413 height: 30px;
414}
415
416.treeimg {
417 cursor: pointer;
418 margin-right: 3px;
419}
420
421
422.sectionCell {
423 padding: 5px;
424 vertical-align: top;
425}
426
427.code_area {
428 width: 80%;
429 margin: 8px;
430 padding: 4px;
431 background-color: #F8F8F8;
432 border: 1px solid #CCC;
433 overflow-x: auto;
434}
435
436.code_text {
437 width: 100%;
438 height: 360px;
439 margin-top: 3px;
440 font-family: Courier, Fixed;
441 font-size: 12px;
442}
443
444div.time_field select{
445 display: inline;
446 margin: 2px;
447 width: 45px;
448}
449
450/* Documents */
451
452.frm_field_table {
453 width: 100%;
454 border-collapse: collapse;
455}
456
457.datalabelcell {
458 padding: 2px 0px;
459 width: 160px;
460 vertical-align: top;
461}
462.datainputcell { padding: 2px 0px; }
463
464
465.field_description, .help {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530466 margin: 3px 0px;
467 font-size: 11px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530468 color: #888;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530469}
470
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530471.help ol {
472 padding-left: 19px;
473}
474
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530475.field_description_top {
476 margin-bottom: 3px;
477}
478
479.field_label {
480 font-size:11px;
481}
482.input_area input, select, textarea {
483 font-size: 14px;
484 padding: 2px;
485}
486
487.input_area input {
488 width: 80%;
489 margin: 0px;
490}
491.input_area select {
492 width: 80%;
493}
494.input_area textarea {
495 width: 90%;
496}
497
498.disp_area {
499 width: 80%;
500 padding: 2px 0px;
501 font-size: 12px;
502}
503.disp_area_no_val {
504 height: 14px;
505}
506
507.no_img {
508 padding: 40px;
509 width: 100px;
510 height: 20px;
511 color: #888;
512 text-align: center;
513 border: 1px solid #AAA;
514}
515
516.input-mandatory {
517 font-size: 14px !important;
518 font-weight: bold;
519}
520
521.field-to-update {
522 background-color:#FEE;
523}
524
525/* sidebar */
526
527div.sidebar-comment-wrapper input {
528 width: 50%;
529}
530div.sidebar-comment-message {
531 margin-top: 8px;
532 font-size: 11px;
533 color: #777;
534}
535
536div.sidebar-comment-text {
537 font-size: 12px;
538 font-weight: bold;
539 margin-top: 8px;
540 color: #444;
541}
542div.sidebar-comment-info {
543 font-size: 10px;
544 color: #777;
545}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530546
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530547/*
548 * lib/css/legacy/grid.css
549 */
550
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530551
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530552/* Grid */
553
554
555/* --- Simple --- */
556.grid_wrapper_simple {
557 width: 100%;
558 margin-bottom: 8px;
559 border: 1px solid #AA9;
560}
561
562.grid_head_wrapper_simple {
563 padding: 0px;
564 border-bottom: 2px solid #AAA;
565}
566
567.grid_head_wrapper_simple td {
568 border-right: 1px solid #AA9;
569}
570
571.grid_head_wrapper_simple td div {
572 padding: 2px;
573}
574
575.grid_tab_wrapper_simple {
576}
577
578.grid_cell_simple {
579 padding: 2px;
580 background-color: #fff;
581 border-right: 1px solid #AA9;
582}
583
584
585/* --- Normal --- */
586.grid_wrapper {
587 position: relative;
588 overflow: auto;
589 border: 1px solid #AAA;
590 width: 100%;
591 margin-bottom: 8px;
592 background-color: #fff;
593}
594
595.grid_tab_wrapper {
596 position: absolute;
597 top: 40px;
598 border-bottom: 1px solid #DDD;
599}
600
601.grid_table, .grid_head_table {
602 table-layout: fixed;
603 border-collapse: collapse;
604 /*width: 100%;*/
605}
606
607.grid_cell {
608 border-right: 1px solid #ddd;
609 padding: 0px;
610 background-color: #fff;
611}
612
613.grid_head_wrapper {
614 position: absolute;
615 z-index: 1;
616 height: 40px;
617 padding: 0px;
618 overflow: hidden;
619 /*background-color: #fff;*/
620}
621
622.grid_head_table td {
623 background-color: #EEE;
624 border-right: 1px solid #AAA;
625 border-bottom: 1px solid #AAA;
626 height: 40px;
627 padding: 0px;
628}
629
630.grid_head_table td div {
631 color: #222;
632 font-weight: bold;
633 overflow: hidden;
634 padding: 2px 0px;
635 text-align: center;
636}
637
638.grid_selector {
639 padding: 1px;
640 border-right: 1px solid #DDD;
641 width: 20px;
642 background-color: #fff;
643}
644
645.grid_cell_div {
646 padding: 2px;
647 cursor: pointer;
648 overflow: hidden;
649 border: 2px solid #FFF;
650}
651
652.grid_cell_div_selected {
653 border: 2px solid #88f;
654}
655
656.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
657 margin: 0px;
658 border: 0px;
659 width: 100%;
660 margin: 0px;
661 }
662
663.grid_cell_div textarea {
664 border: 3px solid #abf;
665 height:200px;
666 width: 300px;
667 z-index: 10;
668 position:absolute;
669}
670
671.gridDivSelected option { border: 0px; }
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530672
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530673/*
674 * lib/css/legacy/listing.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530675 */
676/* listing 2.0 */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530677
678div.listing-more {
679 margin: 7px 0px 17px 0px;
680 text-align: center;
681 display: none;
682}
683
684div.listing-toolbar {
685 margin: 7px 0px;
686}
687
688/* SRS */
689
690table.srs_result_tab {
691 border: 2px solid #AAA;
692 border-collapse: collapse;
693}
694
695/* firefox bug fix for disappering borders */
696table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
697 position: static;
698}
699
700table.srs_result_tab td {
701 padding: 3px 2px;
702 position: static;
703}
704
705div.srs_body_area {
706}
707
708div.srs_results_area {
709}
710
711div.srs_filter_wrapper {
712 border: 1px solid #CCF;
713
714 background-color: #EEF;
715 margin:0px 0px 8px 0px;
716
717 -moz-border-radius: 5px;
718 -webkit-border-radius: 5px;
719 border-radius: 5px;
720}
721
722div.srs_filter_area {
723 padding: 8px;
724}
725
726div.srs_filter_area td {
727 vertical-align: middle;
728}
729
730
Rushabh Mehta08b670b2012-03-14 19:06:20 +0530731/* stats */
732
733div.stat-grid {
734 border: 2px solid #bbb;
735 background-color: white;
736 margin-bottom: 19px;
737 border-radius: 5px;
738 -moz-border-radius: 5px;
739 -webkit-border-radius: 5px;
740 overflow: hidden;
741}
742
743div.stat-label {
744 position: relative;
745 padding: 3px;
746 text-align: center;
747}
748div.stat-label, div.stat-label a {
749 z-index: 5;
750}
751
752div.stat-item {
753 position: relative;
754 border-bottom: 1px solid #ddd;
755}
756div.stat-item:last-child {
757 border-bottom: 0px solid #ddd;
758}
759
760div.stat-bar {
761 position: absolute;
762 left: 0px;
763 background-color: #def;
764 height: 100%;
765 z-index: 0;
766}
767
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530768
769
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530770
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530771/*
772 * lib/css/legacy/report.css
773 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530774
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530775/* Reports */
776
777div.report_grid_area {
778 position: relative;
779 padding: 8px;
780}
781
782
783div.report_tab {
784 border: 1px solid #AAA;
785 position: relative;
786 overflow: auto;
787}
788
789div.report_no_data {
790 padding: 8px;
791 background-color: #EEE;
792 border: 1px solid #DDD;
793 position: absolute;
794 margin-left: 40%;
795 margin-top: 50px;
796 display: none;
797}
798
799div.report_htitle {
800 float: left;
801 padding: 2px;
802 font-size: 14px;
803 font-weight: bold;
804 margin-left: 4px;
805 color: #665;
806 /*font-weight: bold;*/
807}
808
809div.report_tbar {
810 background-color: #EEF;
811 border: 1px solid #CCF;
812 border-bottom: 0px;
813 height: 28px;
814}
815
816div.report_tbar table{
817 width: 100%;
818}
819div.report_tbar table td {
820
821}
822div.report_tbar table td div {
823 position: relative;
824}
825div.report_tbar button, div.report_tbar select, div.report_tbar img {
826 font-size: 11px;
827 margin: 0px;
828}
829
830div.report_head_wrapper {
831 position: absolute;
832 height: 24px;
833 top: 0px;
834 z-index: 1;
835}
836
837div.report_tab_wrapper {
838 position: absolute;
839 border-bottom: 1px solid #AAA;
840 border-top: 1px solid #AAA;
841}
842
843div.report_tab_wrapper table, div.report_head_wrapper table {
844 table-layout: fixed;
845 border-collapse: collapse;
846 /*width: 100%;*/
847}
848
849div.report_tab_wrapper table td, div.report_head_wrapper table td {
850 border-left: 1px solid #AAA;
851 border-right: 1px solid #AAA;
852 border-bottom: 1px solid #AAA;
853 overflow: hidden;
854 padding: 0px;
855}
856
857div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
858 padding: 3px;
859 overflow: hidden;
860}
861
862.report_head_cell {
863 background-color: #EEE;
864 border-bottom: 1px solid #AA9;
865 text-align: center;
866 font-weight: bold;
867}
868.report_head_cell div {
869 color:#222;
870 height: 18px;
871}
872
873
874/* FINDER */
875
876div.finder_wrapper {
877}
878
879div.finder_body_area {
880 margin: 16px;
881}
882
883div.finder_body {
884 display: none;
885}
886
887div.finder_advanced_area table {
888 width: 80%;
889}
890
891div.finder_advanced_area textarea {
892 width: 80%;
893}
894
895div.finder_filter_area {
896 position: relative;
897}
898
899div.filter_head {
900 font-size: 14px;
901 margin-bottom: 2px;
902}
903div.filter_dt_head {
904 font-size: 14px;
905 font-weight: bold;
906 margin-bottom: 2px;
907}
908table.filter_tab {
909 width: 96%;
910 border-collapse: collapse;
911}
912
913table.filter_tab td {
914 width: 50%;
915}
916
917div.finder_picker_area {
918
919}
920div.builder_field {
921 margin: 0px;
922}
923div.builder_dt_head {
924 font-size: 14px;
925 font-weight: bold;
926 margin-bottom: 2px;
927}
928
929div.builder_field table {
930 width: 90%;
931 border-collapse: collapse;
932}
933
934div.builder_label {
935 height: 20px;
936}
937
938div.builder_head {
939 font-size: 16px;
940 font-weight: bold;
941 color: #AB6;
942}
943
944table.builder_tab {
945 width: 96%;
946 border-collapse: collapse;
947}
948
949table.builder_tab td {
950 width: 33%;
951 padding: 2px;
952}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530953
954/*
955 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530956 */
957/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530958
959div.dialog_wrapper {
960 position: absolute;
961 width: 440px;
962 display: none;
963 z-index: 90;
964 background-color: #FFF;
965 border: 3px solid #222;
966 box-shadow:1px 1px 5px #777;
967 -moz-box-shadow: 1px 1px 5px #777;
968 -webkit-box-shadow: 1px 1px 5px #777;
969
970 border-radius: 5px;
971 -moz-border-radius: 5px;
972 -webkit-border-radius: 5px;
973}
974
975div.dialog_head {
976 height: 22px;
977 padding: 4px;
978 background-color: #222;
979 color: #FFF;
980}
981
982div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530983 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530984 border-radius: 5px;
985 -moz-border-radius: 5px;
986 -webkit-border-radius: 5px;
987}
988
989div.dialog_back {
990 position: fixed;
991 display: none;
992 top: 0px;
993 left: 0px;
994 bottom: 0px;
995 right: 0px;
996 background-color: #EEE;
997 opacity: 0.6;
998 z-index: 50;
999 text-align: center;
1000}
1001
1002div.dialog_message {
1003 display: none;
1004 position: absolute;
1005 width: 250px;
1006 font-size: 12px;
1007 z-index: 91;
1008 background-color:#FFF;
1009 padding: 12px;
1010 border: 1px solid #444;
1011}
1012
1013div.dialog_row {
1014 padding: 8px 8px 0px 8px;
1015}
1016
1017div.dialog_row table {
1018 width: 100%;
1019}
1020
1021div.dialog_row table td {
1022}
1023
1024div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
1025 width: 80%;
1026 font-size: 14px;
1027}
1028
1029div.dialog_row table td textarea {
1030 width: 80%;
1031 height: 200px;
1032 font-size: 12px;
1033}
1034
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301035
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301036/*
1037 * lib/css/legacy/tabs.css
1038 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301039
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301040/******* TABS ********/
1041
1042div.box_label_wrapper {
1043 border-bottom: 6px solid #777;
1044}
1045
1046div.box_label_body {
1047 height: 22px;
1048}
1049
1050ul.box_tabs {
1051 margin: 0px;
1052 padding: 0px;
1053 list-style: none;
1054}
1055
1056ul.box_tabs li {
1057 height: 22px;
1058 float:left;
1059 font-size: 12px;
1060 text-decoration: underline;
1061
1062 background-color: #DDD;
1063
1064 margin:0;
1065 margin-left: 4px;
1066 padding:0 0 0 9px;
1067 cursor: pointer;
1068}
1069
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301070ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301071 display:block;
1072 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301073 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301074}
1075
1076ul.box_tabs li.box_tab_mouseover {
1077 background-color: #BBB;
1078}
1079
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301080ul.box_tabs li.box_tab_selected {
1081 background-color: #777;
1082
1083 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1084 background: -moz-linear-gradient(top, #999, #777);
1085
1086 color: #FFF;
1087 font-weight:bold;
1088
1089}
1090ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301091 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301092}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301093
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301094/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301095 * lib/css/legacy/sidebar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301096 */
1097div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301098}
1099
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301100div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301101 font-size: 14px;
1102 font-weight: bold;
1103 color: #555;
1104 margin-bottom: 12px;
1105}
1106
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301107div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301108 margin-bottom: 11px;
1109 overflow: hidden;
1110}
1111
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301112div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301113 font-size: 12px;
1114 padding: 5px 11px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +05301115 border-bottom: 2px solid #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301116}
1117
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301118div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301119 margin: 7px 11px 11px 11px;
1120}
1121
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301122div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301123 margin-bottom: 7px;
1124}
1125
Rushabh Mehtad0251332012-02-21 17:26:50 +05301126div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301127 font-size: 11px;
1128 color: #666;
1129}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301130
1131/*
1132 * lib/css/Aristo/aristo.selected.css
1133 */
1134/*
1135 * jQuery UI CSS Framework 1.8.7
1136 *
1137 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1138 * Dual licensed under the MIT or GPL Version 2 licenses.
1139 * http://jquery.org/license
1140 *
1141 * http://docs.jquery.com/UI/Theming/API
1142 */
1143
1144/* Layout helpers
1145----------------------------------*/
1146.ui-helper-hidden { display: none; }
1147.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
1148.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
1149.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
1150.ui-helper-clearfix { display: inline-block; }
1151/* required comment for clearfix to work in Opera \*/
1152* html .ui-helper-clearfix { height:1%; }
1153.ui-helper-clearfix { display:block; }
1154/* end clearfix */
1155.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
1156
1157
1158/* Interaction Cues
1159----------------------------------*/
1160.ui-state-disabled { cursor: default !important; }
1161
1162
1163/* Icons
1164----------------------------------*/
1165
1166/* states and images */
1167.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
1168
1169
1170/* Misc visuals
1171----------------------------------*/
1172
1173/* Overlays */
1174.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1175
1176
1177/*
1178 * jQuery UI CSS Framework 1.8.7
1179 *
1180 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1181 * Dual licensed under the MIT or GPL Version 2 licenses.
1182 * http://jquery.org/license
1183 *
1184 * http://docs.jquery.com/UI/Theming/API
1185 *
1186 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
1187 */
1188
1189
1190/* Component containers
1191----------------------------------*/
1192.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
1193.ui-widget .ui-widget { font-size: 1em; }
1194.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
1195.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
1196.ui-widget-content a { color: #4F4F4F; }
1197.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
1198.ui-widget-header {
1199 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1200 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1201 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1202 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1203 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1204 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1205 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1206}
1207.ui-widget-header a { color: #4F4F4F; }
1208
1209/* Interaction states
1210----------------------------------*/
1211.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
1212.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1213 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1214 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1215 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1216 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1217 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1218 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1219 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1220 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1221 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1222 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1223}
1224.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
1225.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; }
1226.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
1227.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
1228 outline: none;
1229 color: #1c4257; border: 1px solid #7096ab;
1230 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
1231 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
1232 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
1233 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
1234 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
1235 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
1236 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
1237 -webkit-box-shadow: none;
1238 -moz-box-shadow: none;
1239 box-shadow: none;
1240}
1241.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
1242.ui-widget :active { outline: none; }
1243
1244/* Interaction Cues
1245----------------------------------*/
1246.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; }
1247.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
1248.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; }
1249.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
1250.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
1251.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
1252.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
1253.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
1254
1255/* Icons
1256----------------------------------*/
1257
1258/* states and images */
1259.ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1260.ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1261.ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1262.ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1263.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1264.ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1265.ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1266.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; }
1267.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
1268
1269/* positioning */
1270.ui-icon-carat-1-n { background-position: 0 0; }
1271.ui-icon-carat-1-ne { background-position: -16px 0; }
1272.ui-icon-carat-1-e { background-position: -32px 0; }
1273.ui-icon-carat-1-se { background-position: -48px 0; }
1274.ui-icon-carat-1-s { background-position: -64px 0; }
1275.ui-icon-carat-1-sw { background-position: -80px 0; }
1276.ui-icon-carat-1-w { background-position: -96px 0; }
1277.ui-icon-carat-1-nw { background-position: -112px 0; }
1278.ui-icon-carat-2-n-s { background-position: -128px 0; }
1279.ui-icon-carat-2-e-w { background-position: -144px 0; }
1280.ui-icon-triangle-1-n { background-position: 0 -16px; }
1281.ui-icon-triangle-1-ne { background-position: -16px -16px; }
1282.ui-icon-triangle-1-e { background-position: -32px -16px; }
1283.ui-icon-triangle-1-se { background-position: -48px -16px; }
1284.ui-icon-triangle-1-s { background-position: -64px -16px; }
1285.ui-icon-triangle-1-sw { background-position: -80px -16px; }
1286.ui-icon-triangle-1-w { background-position: -96px -16px; }
1287.ui-icon-triangle-1-nw { background-position: -112px -16px; }
1288.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
1289.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
1290.ui-icon-arrow-1-n { background-position: 0 -32px; }
1291.ui-icon-arrow-1-ne { background-position: -16px -32px; }
1292.ui-icon-arrow-1-e { background-position: -32px -32px; }
1293.ui-icon-arrow-1-se { background-position: -48px -32px; }
1294.ui-icon-arrow-1-s { background-position: -64px -32px; }
1295.ui-icon-arrow-1-sw { background-position: -80px -32px; }
1296.ui-icon-arrow-1-w { background-position: -96px -32px; }
1297.ui-icon-arrow-1-nw { background-position: -112px -32px; }
1298.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
1299.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
1300.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
1301.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
1302.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
1303.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
1304.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
1305.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
1306.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
1307.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
1308.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
1309.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
1310.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
1311.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
1312.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
1313.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
1314.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
1315.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
1316.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
1317.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
1318.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
1319.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
1320.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
1321.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
1322.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
1323.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
1324.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
1325.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
1326.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
1327.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
1328.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
1329.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
1330.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
1331.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
1332.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
1333.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
1334.ui-icon-arrow-4 { background-position: 0 -80px; }
1335.ui-icon-arrow-4-diag { background-position: -16px -80px; }
1336.ui-icon-extlink { background-position: -32px -80px; }
1337.ui-icon-newwin { background-position: -48px -80px; }
1338.ui-icon-refresh { background-position: -64px -80px; }
1339.ui-icon-shuffle { background-position: -80px -80px; }
1340.ui-icon-transfer-e-w { background-position: -96px -80px; }
1341.ui-icon-transferthick-e-w { background-position: -112px -80px; }
1342.ui-icon-folder-collapsed { background-position: 0 -96px; }
1343.ui-icon-folder-open { background-position: -16px -96px; }
1344.ui-icon-document { background-position: -32px -96px; }
1345.ui-icon-document-b { background-position: -48px -96px; }
1346.ui-icon-note { background-position: -64px -96px; }
1347.ui-icon-mail-closed { background-position: -80px -96px; }
1348.ui-icon-mail-open { background-position: -96px -96px; }
1349.ui-icon-suitcase { background-position: -112px -96px; }
1350.ui-icon-comment { background-position: -128px -96px; }
1351.ui-icon-person { background-position: -144px -96px; }
1352.ui-icon-print { background-position: -160px -96px; }
1353.ui-icon-trash { background-position: -176px -96px; }
1354.ui-icon-locked { background-position: -192px -96px; }
1355.ui-icon-unlocked { background-position: -208px -96px; }
1356.ui-icon-bookmark { background-position: -224px -96px; }
1357.ui-icon-tag { background-position: -240px -96px; }
1358.ui-icon-home { background-position: 0 -112px; }
1359.ui-icon-flag { background-position: -16px -112px; }
1360.ui-icon-calendar { background-position: -32px -112px; }
1361.ui-icon-cart { background-position: -48px -112px; }
1362.ui-icon-pencil { background-position: -64px -112px; }
1363.ui-icon-clock { background-position: -80px -112px; }
1364.ui-icon-disk { background-position: -96px -112px; }
1365.ui-icon-calculator { background-position: -112px -112px; }
1366.ui-icon-zoomin { background-position: -128px -112px; }
1367.ui-icon-zoomout { background-position: -144px -112px; }
1368.ui-icon-search { background-position: -160px -112px; }
1369.ui-icon-wrench { background-position: -176px -112px; }
1370.ui-icon-gear { background-position: -192px -112px; }
1371.ui-icon-heart { background-position: -208px -112px; }
1372.ui-icon-star { background-position: -224px -112px; }
1373.ui-icon-link { background-position: -240px -112px; }
1374.ui-icon-cancel { background-position: 0 -128px; }
1375.ui-icon-plus { background-position: -16px -128px; }
1376.ui-icon-plusthick { background-position: -32px -128px; }
1377.ui-icon-minus { background-position: -48px -128px; }
1378.ui-icon-minusthick { background-position: -64px -128px; }
1379.ui-icon-close { background-position: -80px -128px; }
1380.ui-icon-closethick { background-position: -96px -128px; }
1381.ui-icon-key { background-position: -112px -128px; }
1382.ui-icon-lightbulb { background-position: -128px -128px; }
1383.ui-icon-scissors { background-position: -144px -128px; }
1384.ui-icon-clipboard { background-position: -160px -128px; }
1385.ui-icon-copy { background-position: -176px -128px; }
1386.ui-icon-contact { background-position: -192px -128px; }
1387.ui-icon-image { background-position: -208px -128px; }
1388.ui-icon-video { background-position: -224px -128px; }
1389.ui-icon-script { background-position: -240px -128px; }
1390.ui-icon-alert { background-position: 0 -144px; }
1391.ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
1392.ui-icon-notice { background-position: -32px -144px; }
1393.ui-icon-help { background-position: -48px -144px; }
1394.ui-icon-check { background-position: -64px -144px; }
1395.ui-icon-bullet { background-position: -80px -144px; }
1396.ui-icon-radio-off { background-position: -96px -144px; }
1397.ui-icon-radio-on { background-position: -112px -144px; }
1398.ui-icon-pin-w { background-position: -128px -144px; }
1399.ui-icon-pin-s { background-position: -144px -144px; }
1400.ui-icon-play { background-position: 0 -160px; }
1401.ui-icon-pause { background-position: -16px -160px; }
1402.ui-icon-seek-next { background-position: -32px -160px; }
1403.ui-icon-seek-prev { background-position: -48px -160px; }
1404.ui-icon-seek-end { background-position: -64px -160px; }
1405.ui-icon-seek-start { background-position: -80px -160px; }
1406/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1407.ui-icon-seek-first { background-position: -80px -160px; }
1408.ui-icon-stop { background-position: -96px -160px; }
1409.ui-icon-eject { background-position: -112px -160px; }
1410.ui-icon-volume-off { background-position: -128px -160px; }
1411.ui-icon-volume-on { background-position: -144px -160px; }
1412.ui-icon-power { background-position: 0 -176px; }
1413.ui-icon-signal-diag { background-position: -16px -176px; }
1414.ui-icon-signal { background-position: -32px -176px; }
1415.ui-icon-battery-0 { background-position: -48px -176px; }
1416.ui-icon-battery-1 { background-position: -64px -176px; }
1417.ui-icon-battery-2 { background-position: -80px -176px; }
1418.ui-icon-battery-3 { background-position: -96px -176px; }
1419.ui-icon-circle-plus { background-position: 0 -192px; }
1420.ui-icon-circle-minus { background-position: -16px -192px; }
1421.ui-icon-circle-close { background-position: -32px -192px; }
1422.ui-icon-circle-triangle-e { background-position: -48px -192px; }
1423.ui-icon-circle-triangle-s { background-position: -64px -192px; }
1424.ui-icon-circle-triangle-w { background-position: -80px -192px; }
1425.ui-icon-circle-triangle-n { background-position: -96px -192px; }
1426.ui-icon-circle-arrow-e { background-position: -112px -192px; }
1427.ui-icon-circle-arrow-s { background-position: -128px -192px; }
1428.ui-icon-circle-arrow-w { background-position: -144px -192px; }
1429.ui-icon-circle-arrow-n { background-position: -160px -192px; }
1430.ui-icon-circle-zoomin { background-position: -176px -192px; }
1431.ui-icon-circle-zoomout { background-position: -192px -192px; }
1432.ui-icon-circle-check { background-position: -208px -192px; }
1433.ui-icon-circlesmall-plus { background-position: 0 -208px; }
1434.ui-icon-circlesmall-minus { background-position: -16px -208px; }
1435.ui-icon-circlesmall-close { background-position: -32px -208px; }
1436.ui-icon-squaresmall-plus { background-position: -48px -208px; }
1437.ui-icon-squaresmall-minus { background-position: -64px -208px; }
1438.ui-icon-squaresmall-close { background-position: -80px -208px; }
1439.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
1440.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
1441.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
1442.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
1443.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
1444.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
1445
1446
1447/* Misc visuals
1448----------------------------------*/
1449
1450/* Corner radius */
1451.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
1452.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
1453.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
1454.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1455.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; }
1456.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; }
1457.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; }
1458.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; }
1459.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
1460
1461/* Overlays */
1462.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
1463.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; }
1464
1465/*
1466 * jQuery UI Autocomplete 1.8.7
1467 *
1468 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1469 * Dual licensed under the MIT or GPL Version 2 licenses.
1470 * http://jquery.org/license
1471 *
1472 * http://docs.jquery.com/UI/Autocomplete#theming
1473 */
1474.ui-autocomplete {
1475 position: absolute; cursor: default; z-index: 3;
1476 -moz-border-radius: 0;
1477 -webkit-border-radius: 0;
1478 border-radius: 0;
1479 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1480 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1481 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1482}
1483
1484/* workarounds */
1485* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
1486
1487/*
1488 * jQuery UI Menu 1.8.7
1489 *
1490 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1491 * Dual licensed under the MIT or GPL Version 2 licenses.
1492 * http://jquery.org/license
1493 *
1494 * http://docs.jquery.com/UI/Menu#theming
1495 */
1496.ui-menu {
1497 list-style:none;
1498 padding: 2px;
1499 margin: 0;
1500 display:block;
1501 float: left;
1502}
1503.ui-menu .ui-menu {
1504 margin-top: -3px;
1505}
1506.ui-menu .ui-menu-item {
1507 margin:0;
1508 padding: 0;
1509 zoom: 1;
1510 float: left;
1511 clear: left;
1512 width: 100%;
1513}
1514.ui-menu .ui-menu-item a {
1515 text-decoration:none;
1516 display:block;
1517 padding:.2em .4em;
1518 line-height:1.5;
1519 zoom:1;
1520}
1521.ui-menu .ui-menu-item a.ui-state-hover,
1522.ui-menu .ui-menu-item a.ui-state-active {
1523 font-weight: normal;
1524 margin: -1px;
1525 background: #5f83b9;
1526 color: #FFFFFF;
1527 text-shadow: 0px 1px 1px #234386;
1528 border-color: #466086;
1529 -moz-border-radius: 0;
1530 -webkit-border-radius: 0;
1531 border-radius: 0;
1532}
1533
1534/*
1535 * jQuery UI Datepicker 1.8.7
1536 *
1537 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1538 * Dual licensed under the MIT or GPL Version 2 licenses.
1539 * http://jquery.org/license
1540 *
1541 * http://docs.jquery.com/UI/Datepicker#theming
1542 */
1543.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
1544.ui-datepicker {
1545 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1546 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1547 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1548}
1549.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; }
1550.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
1551.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
1552.ui-datepicker .ui-datepicker-prev { left:2px; }
1553.ui-datepicker .ui-datepicker-next { right:2px; }
1554.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
1555.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
1556.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
1557.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
1558.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; }
1559.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); }
1560.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
1561.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
1562.ui-datepicker select.ui-datepicker-month,
1563.ui-datepicker select.ui-datepicker-year { width: 49%;}
1564.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
1565.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
1566.ui-datepicker td { border: 0; padding: 1px; }
1567.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
1568.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; }
1569.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
1570.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
1571.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
1572.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; }
1573.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
1574.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
1575
1576/* with multiple calendars */
1577.ui-datepicker.ui-datepicker-multi { width:auto; }
1578.ui-datepicker-multi .ui-datepicker-group { float:left; }
1579.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
1580.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
1581.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
1582.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
1583.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
1584.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
1585.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
1586.ui-datepicker-row-break { clear:both; width:100%; }
1587
1588/* RTL support */
1589.ui-datepicker-rtl { direction: rtl; }
1590.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
1591.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
1592.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
1593.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
1594.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
1595.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
1596.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
1597.ui-datepicker-rtl .ui-datepicker-group { float:right; }
1598.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1599.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1600
1601/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1602.ui-datepicker-cover {
1603 display: none; /*sorry for IE5*/
1604 display/**/: block; /*sorry for IE5*/
1605 position: absolute; /*must have*/
1606 z-index: -1; /*must have*/
1607 filter: mask(); /*must have*/
1608 top: -4px; /*must have*/
1609 left: -4px; /*must have*/
1610 width: 200px; /*must have*/
1611 height: 200px; /*must have*/
1612}
1613
1614
1615
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301616/*
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301617 * lib/css/ui/list.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301618 */
1619.hide {
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301620 display: none;
1621}
1622
1623.list-filters {
1624 margin: 7px 0px;
1625}
1626
1627.wnlist .img-load {
1628 display: none;
1629 float: left;
1630 margin-left: 11px;
1631 margin-top: 8px;
1632}
1633
1634div.list-row {
1635 border-bottom: 1px solid #eee;
1636 padding: 3px 0px;
1637}
1638div.list-row:hover {
1639 background-color: #eef
1640}
1641
Rushabh Mehta9f89e352012-03-09 17:51:39 +05301642div.paging-button {
1643 text-align: center;
1644 padding: 11px 0px;
1645}
1646
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301647div.show_filters {
1648 display: none;
1649}
1650
1651div.filter_list {
1652 padding: 13px;
1653}
1654
1655div.show_filters.well {
1656 margin-top: 11px;
1657 margin-bottom: 11px;
1658}
1659
1660div.filter_list .run_btn {
1661 text-align: right;
1662}
1663
1664div.filter_list .add_filter {
1665 margin: 3px 0px;
1666}
1667
1668div.list_filter {
1669 margin: 7px 0px;
1670}
1671
1672div.list_filter input, div.list_filter select {
1673 width: 130px;
1674 margin-right: 7px;
1675}
1676
1677span.bar-outer {
1678 display: inline-block;
1679 margin: 0px 7px;
1680 margin-top: 3px;
1681 background-color: #fff;
1682 border: 1px solid #aaa;
1683 height: 10px;
1684}
1685
1686span.bar-inner {
1687 display: inline-block;
1688 background-color: #bdf;
1689 height: 100%;
1690 margin-bottom: 2px;
1691}
1692span.bar-complete {
1693 background-color: green;
1694}
1695
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301696
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301697/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301698 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301699 */
1700/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301701
1702h1,
1703h2,
1704h3,
1705h4,
1706h5,
1707h6 {
1708 margin: 0;
1709 font-weight: bold;
1710 color: #333333;
1711 text-rendering: optimizelegibility;
1712 margin-bottom: 0.3em;
1713}
1714h1 small,
1715h2 small,
1716h3 small,
1717h4 small,
1718h5 small,
1719h6 small {
1720 font-weight: normal;
1721 color: #999999;
1722}
1723h1 {
1724 font-size: 30px;
1725 line-height: 36px;
1726}
1727h1 small {
1728 font-size: 18px;
1729}
1730h2 {
1731 font-size: 24px;
1732 line-height: 36px;
1733}
1734h2 small {
1735 font-size: 18px;
1736}
1737h3 {
1738 line-height: 27px;
1739 font-size: 18px;
1740}
1741h3 small {
1742 font-size: 14px;
1743}
1744h4, h5, h6 {
1745 line-height: 18px;
1746}
1747h4 {
1748 font-size: 14px;
1749}
1750h4 small {
1751 font-size: 12px;
1752}
1753h5 {
1754 font-size: 12px;
1755}
1756h6 {
1757 font-size: 11px;
1758 color: #999999;
1759 text-transform: uppercase;
1760}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301761
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301762/*
1763 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301764 */
1765.close {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301766 float: right;
1767 font-size: 20px;
1768 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301769 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301770 color: #000000;
1771 text-shadow: 0 1px 0 #ffffff;
1772 opacity: 0.2;
1773 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301774}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301775.close:hover {
1776 color: #000000;
1777 text-decoration: none;
1778 opacity: 0.4;
1779 filter: alpha(opacity=40);
1780 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301781}
1782.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301783 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301784 padding: 4px 10px 4px;
1785 font-size: 13px;
1786 line-height: 18px;
1787 color: #333333;
1788 text-align: center;
1789 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1790 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301791 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1792 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1793 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1794 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1795 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1796 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301797 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301798 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301799 border: 1px solid #ccc;
1800 border-bottom-color: #bbb;
1801 -webkit-border-radius: 4px;
1802 -moz-border-radius: 4px;
1803 border-radius: 4px;
1804 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1805 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1806 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 +05301807 cursor: pointer;
1808 *margin-left: .3em;
1809}
1810.btn:first-child {
1811 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301812}
1813.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301814 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301815 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301816 background-color: #e6e6e6;
1817 background-position: 0 -15px;
1818 -webkit-transition: background-position 0.1s linear;
1819 -moz-transition: background-position 0.1s linear;
1820 -ms-transition: background-position 0.1s linear;
1821 -o-transition: background-position 0.1s linear;
1822 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301823}
1824.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301825 outline: thin dotted;
1826 outline: 5px auto -webkit-focus-ring-color;
1827 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301828}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301829.btn.active, .btn:active {
1830 background-image: none;
1831 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1832 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1833 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1834 background-color: #e6e6e6;
1835 background-color: #d9d9d9 \9;
1836 color: rgba(0, 0, 0, 0.5);
1837 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301838}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301839.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301840 cursor: default;
1841 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301842 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301843 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301844 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301845 -webkit-box-shadow: none;
1846 -moz-box-shadow: none;
1847 box-shadow: none;
1848}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301849.btn-large {
1850 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301851 font-size: 15px;
1852 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301853 -webkit-border-radius: 5px;
1854 -moz-border-radius: 5px;
1855 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301856}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301857.btn-large .icon {
1858 margin-top: 1px;
1859}
1860.btn-small {
1861 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301862 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301863 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301864}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301865.btn-small .icon {
1866 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301867}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301868.btn-primary,
1869.btn-primary:hover,
1870.btn-warning,
1871.btn-warning:hover,
1872.btn-danger,
1873.btn-danger:hover,
1874.btn-success,
1875.btn-success:hover,
1876.btn-info,
1877.btn-info:hover {
1878 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1879 color: #ffffff;
1880}
1881.btn-primary.active,
1882.btn-warning.active,
1883.btn-danger.active,
1884.btn-success.active,
1885.btn-info.active {
1886 color: rgba(255, 255, 255, 0.75);
1887}
1888.btn-primary {
1889 background-color: #006dcc;
1890 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1891 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1892 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1893 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1894 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1895 background-image: linear-gradient(top, #0088cc, #0044cc);
1896 background-repeat: repeat-x;
1897 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1898 border-color: #0044cc #0044cc #002a80;
1899 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1900 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1901}
1902.btn-primary:hover,
1903.btn-primary:active,
1904.btn-primary.active,
1905.btn-primary.disabled,
1906.btn-primary[disabled] {
1907 background-color: #0044cc;
1908}
1909.btn-primary:active, .btn-primary.active {
1910 background-color: #003399 \9;
1911}
1912.btn-warning {
1913 background-color: #faa732;
1914 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1915 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1916 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1917 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1918 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1919 background-image: linear-gradient(top, #fbb450, #f89406);
1920 background-repeat: repeat-x;
1921 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1922 border-color: #f89406 #f89406 #ad6704;
1923 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1924 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1925}
1926.btn-warning:hover,
1927.btn-warning:active,
1928.btn-warning.active,
1929.btn-warning.disabled,
1930.btn-warning[disabled] {
1931 background-color: #f89406;
1932}
1933.btn-warning:active, .btn-warning.active {
1934 background-color: #c67605 \9;
1935}
1936.btn-danger {
1937 background-color: #da4f49;
1938 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1939 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1940 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1941 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1942 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1943 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1944 background-repeat: repeat-x;
1945 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1946 border-color: #bd362f #bd362f #802420;
1947 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1948 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1949}
1950.btn-danger:hover,
1951.btn-danger:active,
1952.btn-danger.active,
1953.btn-danger.disabled,
1954.btn-danger[disabled] {
1955 background-color: #bd362f;
1956}
1957.btn-danger:active, .btn-danger.active {
1958 background-color: #942a25 \9;
1959}
1960.btn-success {
1961 background-color: #5bb75b;
1962 background-image: -moz-linear-gradient(top, #62c462, #51a351);
1963 background-image: -ms-linear-gradient(top, #62c462, #51a351);
1964 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1965 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1966 background-image: -o-linear-gradient(top, #62c462, #51a351);
1967 background-image: linear-gradient(top, #62c462, #51a351);
1968 background-repeat: repeat-x;
1969 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1970 border-color: #51a351 #51a351 #387038;
1971 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1972 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1973}
1974.btn-success:hover,
1975.btn-success:active,
1976.btn-success.active,
1977.btn-success.disabled,
1978.btn-success[disabled] {
1979 background-color: #51a351;
1980}
1981.btn-success:active, .btn-success.active {
1982 background-color: #408140 \9;
1983}
1984.btn-info {
1985 background-color: #49afcd;
1986 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1987 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1988 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1989 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1990 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1991 background-image: linear-gradient(top, #5bc0de, #2f96b4);
1992 background-repeat: repeat-x;
1993 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1994 border-color: #2f96b4 #2f96b4 #1f6377;
1995 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1996 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1997}
1998.btn-info:hover,
1999.btn-info:active,
2000.btn-info.active,
2001.btn-info.disabled,
2002.btn-info[disabled] {
2003 background-color: #2f96b4;
2004}
2005.btn-info:active, .btn-info.active {
2006 background-color: #24748c \9;
2007}
2008button.btn, input[type="submit"].btn {
2009 *padding-top: 2px;
2010 *padding-bottom: 2px;
2011}
2012button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302013 padding: 0;
2014 border: 0;
2015}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302016button.btn.large, input[type="submit"].btn.large {
2017 *padding-top: 7px;
2018 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302019}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302020button.btn.small, input[type="submit"].btn.small {
2021 *padding-top: 3px;
2022 *padding-bottom: 3px;
2023}
2024.btn-group {
2025 position: relative;
2026 *zoom: 1;
2027 *margin-left: .3em;
2028}
2029.btn-group:before, .btn-group:after {
2030 display: table;
2031 content: "";
2032}
2033.btn-group:after {
2034 clear: both;
2035}
2036.btn-group:first-child {
2037 *margin-left: 0;
2038}
2039.btn-group + .btn-group {
2040 margin-left: 5px;
2041}
2042.btn-toolbar {
2043 margin-top: 9px;
2044 margin-bottom: 9px;
2045}
2046.btn-toolbar .btn-group {
2047 display: inline-block;
2048 *display: inline;
2049 /* IE7 inline-block hack */
2050
2051 *zoom: 1;
2052}
2053.btn-group .btn {
2054 position: relative;
2055 float: left;
2056 margin-left: -1px;
2057 -webkit-border-radius: 0;
2058 -moz-border-radius: 0;
2059 border-radius: 0;
2060}
2061.btn-group .btn:first-child {
2062 margin-left: 0;
2063 -webkit-border-top-left-radius: 4px;
2064 -moz-border-radius-topleft: 4px;
2065 border-top-left-radius: 4px;
2066 -webkit-border-bottom-left-radius: 4px;
2067 -moz-border-radius-bottomleft: 4px;
2068 border-bottom-left-radius: 4px;
2069}
2070.btn-group .btn:last-child, .btn-group .dropdown-toggle {
2071 -webkit-border-top-right-radius: 4px;
2072 -moz-border-radius-topright: 4px;
2073 border-top-right-radius: 4px;
2074 -webkit-border-bottom-right-radius: 4px;
2075 -moz-border-radius-bottomright: 4px;
2076 border-bottom-right-radius: 4px;
2077}
2078.btn-group .btn.large:first-child {
2079 margin-left: 0;
2080 -webkit-border-top-left-radius: 6px;
2081 -moz-border-radius-topleft: 6px;
2082 border-top-left-radius: 6px;
2083 -webkit-border-bottom-left-radius: 6px;
2084 -moz-border-radius-bottomleft: 6px;
2085 border-bottom-left-radius: 6px;
2086}
2087.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
2088 -webkit-border-top-right-radius: 6px;
2089 -moz-border-radius-topright: 6px;
2090 border-top-right-radius: 6px;
2091 -webkit-border-bottom-right-radius: 6px;
2092 -moz-border-radius-bottomright: 6px;
2093 border-bottom-right-radius: 6px;
2094}
2095.btn-group .btn:hover,
2096.btn-group .btn:focus,
2097.btn-group .btn:active,
2098.btn-group .btn.active {
2099 z-index: 2;
2100}
2101.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2102 outline: 0;
2103}
2104.btn-group .dropdown-toggle {
2105 padding-left: 8px;
2106 padding-right: 8px;
2107 -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);
2108 -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);
2109 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);
2110 *padding-top: 5px;
2111 *padding-bottom: 5px;
2112}
2113.btn-group.open {
2114 *z-index: 1000;
2115}
2116.btn-group.open .dropdown-menu {
2117 display: block;
2118 margin-top: 1px;
2119 -webkit-border-radius: 5px;
2120 -moz-border-radius: 5px;
2121 border-radius: 5px;
2122}
2123.btn-group.open .dropdown-toggle {
2124 background-image: none;
2125 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2126 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2127 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2128}
2129.btn .caret {
2130 margin-top: 7px;
2131 margin-left: 0;
2132}
2133.btn:hover .caret, .open.btn-group .caret {
2134 opacity: 1;
2135 filter: alpha(opacity=100);
2136}
2137.btn-primary .caret,
2138.btn-danger .caret,
2139.btn-info .caret,
2140.btn-success .caret {
2141 border-top-color: #ffffff;
2142 opacity: 0.75;
2143 filter: alpha(opacity=75);
2144}
2145.btn-small .caret {
2146 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302147}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302148
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302149/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302150 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302151 */
2152.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302153 margin-left: 0;
2154 margin-bottom: 18px;
2155 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302156}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302157.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302158 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302159}
2160.nav > li > a:hover {
2161 text-decoration: none;
2162 background-color: #eeeeee;
2163}
2164.nav-list {
2165 padding-left: 14px;
2166 padding-right: 14px;
2167 margin-bottom: 0;
2168}
2169.nav-list > li > a, .nav-list .nav-header {
2170 display: block;
2171 padding: 3px 15px;
2172 margin-left: -15px;
2173 margin-right: -15px;
2174 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2175}
2176.nav-list .nav-header {
2177 font-size: 11px;
2178 font-weight: bold;
2179 line-height: 18px;
2180 color: #999999;
2181 text-transform: uppercase;
2182}
2183.nav-list > li + .nav-header {
2184 margin-top: 9px;
2185}
2186.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302187 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302188 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2189 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302190}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302191.nav-list [class^="icon-"] {
2192 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302193}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302194.nav-tabs, .nav-pills {
2195 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302196}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302197.nav-tabs:before,
2198.nav-pills:before,
2199.nav-tabs:after,
2200.nav-pills:after {
2201 display: table;
2202 content: "";
2203}
2204.nav-tabs:after, .nav-pills:after {
2205 clear: both;
2206}
2207.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302208 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302209}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302210.nav-tabs > li > a, .nav-pills > li > a {
2211 padding-right: 12px;
2212 padding-left: 12px;
2213 margin-right: 2px;
2214 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302215}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302216.nav-tabs {
2217 border-bottom: 1px solid #ddd;
2218}
2219.nav-tabs > li {
2220 margin-bottom: -1px;
2221}
2222.nav-tabs > li > a {
2223 padding-top: 9px;
2224 padding-bottom: 9px;
2225 border: 1px solid transparent;
2226 -webkit-border-radius: 4px 4px 0 0;
2227 -moz-border-radius: 4px 4px 0 0;
2228 border-radius: 4px 4px 0 0;
2229}
2230.nav-tabs > li > a:hover {
2231 border-color: #eeeeee #eeeeee #dddddd;
2232}
2233.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2234 color: #555555;
2235 background-color: #ffffff;
2236 border: 1px solid #ddd;
2237 border-bottom-color: transparent;
2238 cursor: default;
2239}
2240.nav-pills > li > a {
2241 padding-top: 8px;
2242 padding-bottom: 8px;
2243 margin-top: 2px;
2244 margin-bottom: 2px;
2245 -webkit-border-radius: 5px;
2246 -moz-border-radius: 5px;
2247 border-radius: 5px;
2248}
2249.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302250 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302251 background-color: #0088cc;
2252}
2253.nav-stacked > li {
2254 float: none;
2255}
2256.nav-stacked > li > a {
2257 margin-right: 0;
2258}
2259.nav-tabs.nav-stacked {
2260 border-bottom: 0;
2261}
2262.nav-tabs.nav-stacked > li > a {
2263 border: 1px solid #ddd;
2264 -webkit-border-radius: 0;
2265 -moz-border-radius: 0;
2266 border-radius: 0;
2267}
2268.nav-tabs.nav-stacked > li:first-child > a {
2269 -webkit-border-radius: 4px 4px 0 0;
2270 -moz-border-radius: 4px 4px 0 0;
2271 border-radius: 4px 4px 0 0;
2272}
2273.nav-tabs.nav-stacked > li:last-child > a {
2274 -webkit-border-radius: 0 0 4px 4px;
2275 -moz-border-radius: 0 0 4px 4px;
2276 border-radius: 0 0 4px 4px;
2277}
2278.nav-tabs.nav-stacked > li > a:hover {
2279 border-color: #ddd;
2280 z-index: 2;
2281}
2282.nav-pills.nav-stacked > li > a {
2283 margin-bottom: 3px;
2284}
2285.nav-pills.nav-stacked > li:last-child > a {
2286 margin-bottom: 1px;
2287}
2288.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2289 margin-top: 1px;
2290 border-width: 1px;
2291}
2292.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302293 -webkit-border-radius: 4px;
2294 -moz-border-radius: 4px;
2295 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302296}
2297.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2298 border-top-color: #0088cc;
2299 margin-top: 6px;
2300}
2301.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2302 border-top-color: #005580;
2303}
2304.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2305 border-top-color: #333333;
2306}
2307.nav > .dropdown.active > a:hover {
2308 color: #000000;
2309 cursor: pointer;
2310}
2311.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2312 color: #ffffff;
2313 background-color: #999999;
2314 border-color: #999999;
2315}
2316.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2317 border-top-color: #ffffff;
2318 opacity: 1;
2319 filter: alpha(opacity=100);
2320}
2321
2322.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302323 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302324 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302325}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302326.navbar-inner {
2327 padding-left: 20px;
2328 padding-right: 20px;
2329 background-color: #2c2c2c;
2330 background-image: -moz-linear-gradient(top, #333333, #222222);
2331 background-image: -ms-linear-gradient(top, #333333, #222222);
2332 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2333 background-image: -webkit-linear-gradient(top, #333333, #222222);
2334 background-image: -o-linear-gradient(top, #333333, #222222);
2335 background-image: linear-gradient(top, #333333, #222222);
2336 background-repeat: repeat-x;
2337 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2338 -webkit-border-radius: 4px;
2339 -moz-border-radius: 4px;
2340 border-radius: 4px;
2341 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2342 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2343 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2344}
2345.btn-navbar {
2346 display: none;
2347 float: right;
2348 padding: 7px 10px;
2349 margin-left: 5px;
2350 margin-right: 5px;
2351 background-color: #2c2c2c;
2352 background-image: -moz-linear-gradient(top, #333333, #222222);
2353 background-image: -ms-linear-gradient(top, #333333, #222222);
2354 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2355 background-image: -webkit-linear-gradient(top, #333333, #222222);
2356 background-image: -o-linear-gradient(top, #333333, #222222);
2357 background-image: linear-gradient(top, #333333, #222222);
2358 background-repeat: repeat-x;
2359 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2360 border-color: #222222 #222222 #000000;
2361 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2362 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2363 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2364 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2365 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2366}
2367.btn-navbar:hover,
2368.btn-navbar:active,
2369.btn-navbar.active,
2370.btn-navbar.disabled,
2371.btn-navbar[disabled] {
2372 background-color: #222222;
2373}
2374.btn-navbar:active, .btn-navbar.active {
2375 background-color: #080808 \9;
2376}
2377.btn-navbar .icon-bar {
2378 display: block;
2379 width: 18px;
2380 height: 2px;
2381 background-color: #f5f5f5;
2382 -webkit-border-radius: 1px;
2383 -moz-border-radius: 1px;
2384 border-radius: 1px;
2385 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2386 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2387 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2388}
2389.btn-navbar .icon-bar + .icon-bar {
2390 margin-top: 3px;
2391}
2392.nav-collapse.collapse {
2393 height: auto;
2394}
2395.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302396 text-decoration: none;
2397}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302398.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302399 float: left;
2400 display: block;
2401 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302402 font-size: 20px;
2403 font-weight: 200;
2404 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302405 color: #ffffff;
2406}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302407.navbar .navbar-text {
2408 margin-bottom: 0;
2409 line-height: 40px;
2410 color: #999999;
2411}
2412.navbar .navbar-text a:hover {
2413 color: #ffffff;
2414 background-color: transparent;
2415}
2416.navbar .btn, .navbar .btn-group {
2417 margin-top: 5px;
2418}
2419.navbar .btn-group .btn {
2420 margin-top: 0;
2421}
2422.navbar-form {
2423 margin-bottom: 0;
2424 *zoom: 1;
2425}
2426.navbar-form:before, .navbar-form:after {
2427 display: table;
2428 content: "";
2429}
2430.navbar-form:after {
2431 clear: both;
2432}
2433.navbar-form input, .navbar-form select {
2434 display: inline-block;
2435 margin-top: 5px;
2436 margin-bottom: 0;
2437}
2438.navbar-form .radio, .navbar-form .checkbox {
2439 margin-top: 5px;
2440}
2441.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2442 margin-top: 3px;
2443}
2444.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302445 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302446 float: left;
2447 margin-top: 6px;
2448 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302449}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302450.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302451 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302452 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2453 font-size: 13px;
2454 font-weight: normal;
2455 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302456 color: #ffffff;
2457 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302458 background: #666;
2459 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302460 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302461 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2462 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2463 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 +05302464 -webkit-transition: none;
2465 -moz-transition: none;
2466 -ms-transition: none;
2467 -o-transition: none;
2468 transition: none;
2469}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302470.navbar-search .search-query :-moz-placeholder {
2471 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302472}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302473.navbar-search .search-query::-webkit-input-placeholder {
2474 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302475}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302476.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302477 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302478 background-color: #999999;
2479 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302480}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302481.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302482 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302483 color: #333333;
2484 text-shadow: 0 1px 0 #ffffff;
2485 background-color: #ffffff;
2486 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302487 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2488 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2489 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302490 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302491}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302492.navbar-fixed-top {
2493 position: fixed;
2494 top: 0;
2495 right: 0;
2496 left: 0;
2497 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302498}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302499.navbar-fixed-top .navbar-inner {
2500 padding-left: 0;
2501 padding-right: 0;
2502 -webkit-border-radius: 0;
2503 -moz-border-radius: 0;
2504 border-radius: 0;
2505}
2506.navbar .nav {
2507 position: relative;
2508 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302509 display: block;
2510 float: left;
2511 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302512}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302513.navbar .nav.pull-right {
2514 float: right;
2515}
2516.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302517 display: block;
2518 float: left;
2519}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302520.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302521 float: none;
2522 padding: 10px 10px 11px;
2523 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302524 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302525 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302526 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302527}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302528.navbar .nav > li > a:hover {
2529 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302530 color: #ffffff;
2531 text-decoration: none;
2532}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302533.navbar .nav .active > a, .navbar .nav .active > a:hover {
2534 color: #ffffff;
2535 text-decoration: none;
2536 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302537 background-color: rgba(0, 0, 0, 0.5);
2538}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302539.navbar .divider-vertical {
2540 height: 40px;
2541 width: 1px;
2542 margin: 0 9px;
2543 overflow: hidden;
2544 background-color: #222222;
2545 border-right: 1px solid #333333;
2546}
2547.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302548 margin-left: 10px;
2549 margin-right: 0;
2550}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302551.navbar .dropdown-menu {
2552 margin-top: 1px;
2553 -webkit-border-radius: 4px;
2554 -moz-border-radius: 4px;
2555 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302556}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302557.navbar .dropdown-menu:before {
2558 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302559 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302560 border-left: 7px solid transparent;
2561 border-right: 7px solid transparent;
2562 border-bottom: 7px solid #ccc;
2563 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302564 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302565 top: -7px;
2566 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302567}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302568.navbar .dropdown-menu:after {
2569 content: '';
2570 display: inline-block;
2571 border-left: 6px solid transparent;
2572 border-right: 6px solid transparent;
2573 border-bottom: 6px solid #ffffff;
2574 position: absolute;
2575 top: -6px;
2576 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302577}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302578.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2579 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302580}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302581.navbar .nav .active .caret {
2582 opacity: 1;
2583 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302584}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302585.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2586 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302587}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302588.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302589 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302590}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302591.navbar .nav.pull-right .dropdown-menu {
2592 left: auto;
2593 right: 0;
2594}
2595.navbar .nav.pull-right .dropdown-menu:before {
2596 left: auto;
2597 right: 12px;
2598}
2599.navbar .nav.pull-right .dropdown-menu:after {
2600 left: auto;
2601 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302602}
2603
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302604/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302605.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302606 display: block;
2607 float: right;
2608 width: 20px;
2609 margin-bottom: -5px;
2610 margin-top: 10px;
2611 visibility: hidden;
2612}
2613
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302614.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302615 padding: 0px 20px;
2616}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302617
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302618
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302619/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302620 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302621 */
2622.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302623 position: relative;
2624}
2625.dropdown-toggle {
2626 *margin-bottom: -3px;
2627}
2628.dropdown-toggle:active, .open .dropdown-toggle {
2629 outline: 0;
2630}
2631.caret {
2632 display: inline-block;
2633 width: 0;
2634 height: 0;
2635 text-indent: -99999px;
2636 *text-indent: 0;
2637 vertical-align: top;
2638 border-left: 4px solid transparent;
2639 border-right: 4px solid transparent;
2640 border-top: 4px solid #000000;
2641 opacity: 0.3;
2642 filter: alpha(opacity=30);
2643 content: "\2193";
2644}
2645.dropdown .caret {
2646 margin-top: 8px;
2647 margin-left: 2px;
2648}
2649.dropdown:hover .caret, .open.dropdown .caret {
2650 opacity: 1;
2651 filter: alpha(opacity=100);
2652}
2653.dropdown-menu {
2654 position: absolute;
2655 top: 100%;
2656 left: 0;
2657 z-index: 1000;
2658 float: left;
2659 display: none;
2660 min-width: 160px;
2661 max-width: 220px;
2662 _width: 160px;
2663 padding: 4px 0;
2664 margin: 0;
2665 list-style: none;
2666 background-color: #ffffff;
2667 border-color: #ccc;
2668 border-color: rgba(0, 0, 0, 0.2);
2669 border-style: solid;
2670 border-width: 1px;
2671 -webkit-border-radius: 0 0 5px 5px;
2672 -moz-border-radius: 0 0 5px 5px;
2673 border-radius: 0 0 5px 5px;
2674 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2675 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2676 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2677 -webkit-background-clip: padding-box;
2678 -moz-background-clip: padding;
2679 background-clip: padding-box;
2680 *border-right-width: 2px;
2681 *border-bottom-width: 2px;
2682}
2683.dropdown-menu.bottom-up {
2684 top: auto;
2685 bottom: 100%;
2686 margin-bottom: 2px;
2687}
2688.dropdown-menu .divider {
2689 height: 1px;
2690 margin: 5px 1px;
2691 overflow: hidden;
2692 background-color: #e5e5e5;
2693 border-bottom: 1px solid #ffffff;
2694 *width: 100%;
2695 *margin: -5px 0 5px;
2696}
2697.dropdown-menu a {
2698 display: block;
2699 padding: 3px 15px;
2700 clear: both;
2701 font-weight: normal;
2702 line-height: 18px;
2703 color: #555555;
2704 white-space: nowrap;
2705}
2706.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2707 color: #ffffff;
2708 text-decoration: none;
2709 background-color: #0088cc;
2710}
2711.dropdown.open {
2712 *z-index: 1000;
2713}
2714.dropdown.open .dropdown-toggle {
2715 color: #ffffff;
2716 background: #ccc;
2717 background: rgba(0, 0, 0, 0.3);
2718}
2719.dropdown.open .dropdown-menu {
2720 display: block;
2721}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302722
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302723/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302724 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302725 */
2726.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05302727 position: absolute;
2728 z-index: 1020;
2729 display: block;
2730 visibility: visible;
2731 padding: 5px;
2732 font-size: 11px;
2733 opacity: 0;
2734 filter: alpha(opacity=0);
2735}
2736.tooltip.in {
2737 opacity: 0.8;
2738 filter: alpha(opacity=80);
2739}
2740.tooltip.top {
2741 margin-top: -2px;
2742}
2743.tooltip.right {
2744 margin-left: 2px;
2745}
2746.tooltip.bottom {
2747 margin-top: 2px;
2748}
2749.tooltip.left {
2750 margin-left: -2px;
2751}
2752.tooltip.top .tooltip-arrow {
2753 bottom: 0;
2754 left: 50%;
2755 margin-left: -5px;
2756 border-left: 5px solid transparent;
2757 border-right: 5px solid transparent;
2758 border-top: 5px solid #000000;
2759}
2760.tooltip.left .tooltip-arrow {
2761 top: 50%;
2762 right: 0;
2763 margin-top: -5px;
2764 border-top: 5px solid transparent;
2765 border-bottom: 5px solid transparent;
2766 border-left: 5px solid #000000;
2767}
2768.tooltip.bottom .tooltip-arrow {
2769 top: 0;
2770 left: 50%;
2771 margin-left: -5px;
2772 border-left: 5px solid transparent;
2773 border-right: 5px solid transparent;
2774 border-bottom: 5px solid #000000;
2775}
2776.tooltip.right .tooltip-arrow {
2777 top: 50%;
2778 left: 0;
2779 margin-top: -5px;
2780 border-top: 5px solid transparent;
2781 border-bottom: 5px solid transparent;
2782 border-right: 5px solid #000000;
2783}
2784.tooltip-inner {
2785 max-width: 200px;
2786 padding: 3px 8px;
2787 color: #ffffff;
2788 text-align: center;
2789 text-decoration: none;
2790 background-color: #000000;
2791 -webkit-border-radius: 4px;
2792 -moz-border-radius: 4px;
2793 border-radius: 4px;
2794}
2795.tooltip-arrow {
2796 position: absolute;
2797 width: 0;
2798 height: 0;
2799}
2800.popover {
2801 position: absolute;
2802 top: 0;
2803 left: 0;
2804 z-index: 1010;
2805 display: none;
2806 padding: 5px;
2807}
2808.popover.top {
2809 margin-top: -5px;
2810}
2811.popover.right {
2812 margin-left: 5px;
2813}
2814.popover.bottom {
2815 margin-top: 5px;
2816}
2817.popover.left {
2818 margin-left: -5px;
2819}
2820.popover.top .arrow {
2821 bottom: 0;
2822 left: 50%;
2823 margin-left: -5px;
2824 border-left: 5px solid transparent;
2825 border-right: 5px solid transparent;
2826 border-top: 5px solid #000000;
2827}
2828.popover.right .arrow {
2829 top: 50%;
2830 left: 0;
2831 margin-top: -5px;
2832 border-top: 5px solid transparent;
2833 border-bottom: 5px solid transparent;
2834 border-right: 5px solid #000000;
2835}
2836.popover.bottom .arrow {
2837 top: 0;
2838 left: 50%;
2839 margin-left: -5px;
2840 border-left: 5px solid transparent;
2841 border-right: 5px solid transparent;
2842 border-bottom: 5px solid #000000;
2843}
2844.popover.left .arrow {
2845 top: 50%;
2846 right: 0;
2847 margin-top: -5px;
2848 border-top: 5px solid transparent;
2849 border-bottom: 5px solid transparent;
2850 border-left: 5px solid #000000;
2851}
2852.popover .arrow {
2853 position: absolute;
2854 width: 0;
2855 height: 0;
2856}
2857.popover-inner {
2858 padding: 3px;
2859 width: 280px;
2860 overflow: hidden;
2861 background: #000000;
2862 background: rgba(0, 0, 0, 0.8);
2863 -webkit-border-radius: 6px;
2864 -moz-border-radius: 6px;
2865 border-radius: 6px;
2866 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2867 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2868 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2869}
2870.popover-title {
2871 padding: 9px 15px;
2872 line-height: 1;
2873 background-color: #f5f5f5;
2874 border-bottom: 1px solid #eee;
2875 -webkit-border-radius: 3px 3px 0 0;
2876 -moz-border-radius: 3px 3px 0 0;
2877 border-radius: 3px 3px 0 0;
2878}
2879.popover-content {
2880 padding: 14px;
2881 background-color: #ffffff;
2882 -webkit-border-radius: 0 0 3px 3px;
2883 -moz-border-radius: 0 0 3px 3px;
2884 border-radius: 0 0 3px 3px;
2885 -webkit-background-clip: padding-box;
2886 -moz-background-clip: padding-box;
2887 background-clip: padding-box;
2888}
2889.popover-content p, .popover-content ul, .popover-content ol {
2890 margin-bottom: 0;
2891}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302892
Rushabh Mehtad0251332012-02-21 17:26:50 +05302893/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302894 * lib/css/bootstrap/label.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302895 */
2896.label {
Rushabh Mehta2886b952012-02-24 11:26:31 +05302897 padding: 2px 4px 3px;
2898 font-size: 11.049999999999999px;
2899 font-weight: bold;
2900 color: #ffffff;
2901 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2902 background-color: #999999;
2903 -webkit-border-radius: 3px;
2904 -moz-border-radius: 3px;
2905 border-radius: 3px;
2906}
2907.label:hover {
2908 color: #ffffff;
2909 text-decoration: none;
2910}
2911.label-important {
2912 background-color: #b94a48;
2913}
2914.label-important:hover {
2915 background-color: #953b39;
2916}
2917.label-warning {
2918 background-color: #f89406;
2919}
2920.label-warning:hover {
2921 background-color: #c67605;
2922}
2923.label-success {
2924 background-color: #468847;
2925}
2926.label-success:hover {
2927 background-color: #356635;
2928}
2929.label-info {
2930 background-color: #3a87ad;
2931}
2932.label-info:hover {
2933 background-color: #2d6987;
2934}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302935
Rushabh Mehta2886b952012-02-24 11:26:31 +05302936/*
2937 * lib/css/bootstrap/icons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302938 */
2939[class^="icon-"], [class*=" icon-"] {
Rushabh Mehta2886b952012-02-24 11:26:31 +05302940 display: inline-block;
2941 width: 14px;
2942 height: 14px;
2943 line-height: 14px;
2944 vertical-align: text-top;
2945 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2946 background-position: 14px 14px;
2947 background-repeat: no-repeat;
2948 *margin-right: .3em;
2949}
2950[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
2951 *margin-left: 0;
2952}
2953.icon-white {
2954 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
2955}
2956.icon-glass {
2957 background-position: 0 0;
2958}
2959.icon-music {
2960 background-position: -24px 0;
2961}
2962.icon-search {
2963 background-position: -48px 0;
2964}
2965.icon-envelope {
2966 background-position: -72px 0;
2967}
2968.icon-heart {
2969 background-position: -96px 0;
2970}
2971.icon-star {
2972 background-position: -120px 0;
2973}
2974.icon-star-empty {
2975 background-position: -144px 0;
2976}
2977.icon-user {
2978 background-position: -168px 0;
2979}
2980.icon-film {
2981 background-position: -192px 0;
2982}
2983.icon-th-large {
2984 background-position: -216px 0;
2985}
2986.icon-th {
2987 background-position: -240px 0;
2988}
2989.icon-th-list {
2990 background-position: -264px 0;
2991}
2992.icon-ok {
2993 background-position: -288px 0;
2994}
2995.icon-remove {
2996 background-position: -312px 0;
2997}
2998.icon-zoom-in {
2999 background-position: -336px 0;
3000}
3001.icon-zoom-out {
3002 background-position: -360px 0;
3003}
3004.icon-off {
3005 background-position: -384px 0;
3006}
3007.icon-signal {
3008 background-position: -408px 0;
3009}
3010.icon-cog {
3011 background-position: -432px 0;
3012}
3013.icon-trash {
3014 background-position: -456px 0;
3015}
3016.icon-home {
3017 background-position: 0 -24px;
3018}
3019.icon-file {
3020 background-position: -24px -24px;
3021}
3022.icon-time {
3023 background-position: -48px -24px;
3024}
3025.icon-road {
3026 background-position: -72px -24px;
3027}
3028.icon-download-alt {
3029 background-position: -96px -24px;
3030}
3031.icon-download {
3032 background-position: -120px -24px;
3033}
3034.icon-upload {
3035 background-position: -144px -24px;
3036}
3037.icon-inbox {
3038 background-position: -168px -24px;
3039}
3040.icon-play-circle {
3041 background-position: -192px -24px;
3042}
3043.icon-repeat {
3044 background-position: -216px -24px;
3045}
3046.icon-refresh {
3047 background-position: -240px -24px;
3048}
3049.icon-list-alt {
3050 background-position: -264px -24px;
3051}
3052.icon-lock {
3053 background-position: -287px -24px;
3054}
3055.icon-flag {
3056 background-position: -312px -24px;
3057}
3058.icon-headphones {
3059 background-position: -336px -24px;
3060}
3061.icon-volume-off {
3062 background-position: -360px -24px;
3063}
3064.icon-volume-down {
3065 background-position: -384px -24px;
3066}
3067.icon-volume-up {
3068 background-position: -408px -24px;
3069}
3070.icon-qrcode {
3071 background-position: -432px -24px;
3072}
3073.icon-barcode {
3074 background-position: -456px -24px;
3075}
3076.icon-tag {
3077 background-position: 0 -48px;
3078}
3079.icon-tags {
3080 background-position: -25px -48px;
3081}
3082.icon-book {
3083 background-position: -48px -48px;
3084}
3085.icon-bookmark {
3086 background-position: -72px -48px;
3087}
3088.icon-print {
3089 background-position: -96px -48px;
3090}
3091.icon-camera {
3092 background-position: -120px -48px;
3093}
3094.icon-font {
3095 background-position: -144px -48px;
3096}
3097.icon-bold {
3098 background-position: -167px -48px;
3099}
3100.icon-italic {
3101 background-position: -192px -48px;
3102}
3103.icon-text-height {
3104 background-position: -216px -48px;
3105}
3106.icon-text-width {
3107 background-position: -240px -48px;
3108}
3109.icon-align-left {
3110 background-position: -264px -48px;
3111}
3112.icon-align-center {
3113 background-position: -288px -48px;
3114}
3115.icon-align-right {
3116 background-position: -312px -48px;
3117}
3118.icon-align-justify {
3119 background-position: -336px -48px;
3120}
3121.icon-list {
3122 background-position: -360px -48px;
3123}
3124.icon-indent-left {
3125 background-position: -384px -48px;
3126}
3127.icon-indent-right {
3128 background-position: -408px -48px;
3129}
3130.icon-facetime-video {
3131 background-position: -432px -48px;
3132}
3133.icon-picture {
3134 background-position: -456px -48px;
3135}
3136.icon-pencil {
3137 background-position: 0 -72px;
3138}
3139.icon-map-marker {
3140 background-position: -24px -72px;
3141}
3142.icon-adjust {
3143 background-position: -48px -72px;
3144}
3145.icon-tint {
3146 background-position: -72px -72px;
3147}
3148.icon-edit {
3149 background-position: -96px -72px;
3150}
3151.icon-share {
3152 background-position: -120px -72px;
3153}
3154.icon-check {
3155 background-position: -144px -72px;
3156}
3157.icon-move {
3158 background-position: -168px -72px;
3159}
3160.icon-step-backward {
3161 background-position: -192px -72px;
3162}
3163.icon-fast-backward {
3164 background-position: -216px -72px;
3165}
3166.icon-backward {
3167 background-position: -240px -72px;
3168}
3169.icon-play {
3170 background-position: -264px -72px;
3171}
3172.icon-pause {
3173 background-position: -288px -72px;
3174}
3175.icon-stop {
3176 background-position: -312px -72px;
3177}
3178.icon-forward {
3179 background-position: -336px -72px;
3180}
3181.icon-fast-forward {
3182 background-position: -360px -72px;
3183}
3184.icon-step-forward {
3185 background-position: -384px -72px;
3186}
3187.icon-eject {
3188 background-position: -408px -72px;
3189}
3190.icon-chevron-left {
3191 background-position: -432px -72px;
3192}
3193.icon-chevron-right {
3194 background-position: -456px -72px;
3195}
3196.icon-plus-sign {
3197 background-position: 0 -96px;
3198}
3199.icon-minus-sign {
3200 background-position: -24px -96px;
3201}
3202.icon-remove-sign {
3203 background-position: -48px -96px;
3204}
3205.icon-ok-sign {
3206 background-position: -72px -96px;
3207}
3208.icon-question-sign {
3209 background-position: -96px -96px;
3210}
3211.icon-info-sign {
3212 background-position: -120px -96px;
3213}
3214.icon-screenshot {
3215 background-position: -144px -96px;
3216}
3217.icon-remove-circle {
3218 background-position: -168px -96px;
3219}
3220.icon-ok-circle {
3221 background-position: -192px -96px;
3222}
3223.icon-ban-circle {
3224 background-position: -216px -96px;
3225}
3226.icon-arrow-left {
3227 background-position: -240px -96px;
3228}
3229.icon-arrow-right {
3230 background-position: -264px -96px;
3231}
3232.icon-arrow-up {
3233 background-position: -289px -96px;
3234}
3235.icon-arrow-down {
3236 background-position: -312px -96px;
3237}
3238.icon-share-alt {
3239 background-position: -336px -96px;
3240}
3241.icon-resize-full {
3242 background-position: -360px -96px;
3243}
3244.icon-resize-small {
3245 background-position: -384px -96px;
3246}
3247.icon-plus {
3248 background-position: -408px -96px;
3249}
3250.icon-minus {
3251 background-position: -433px -96px;
3252}
3253.icon-asterisk {
3254 background-position: -456px -96px;
3255}
3256.icon-exclamation-sign {
3257 background-position: 0 -120px;
3258}
3259.icon-gift {
3260 background-position: -24px -120px;
3261}
3262.icon-leaf {
3263 background-position: -48px -120px;
3264}
3265.icon-fire {
3266 background-position: -72px -120px;
3267}
3268.icon-eye-open {
3269 background-position: -96px -120px;
3270}
3271.icon-eye-close {
3272 background-position: -120px -120px;
3273}
3274.icon-warning-sign {
3275 background-position: -144px -120px;
3276}
3277.icon-plane {
3278 background-position: -168px -120px;
3279}
3280.icon-calendar {
3281 background-position: -192px -120px;
3282}
3283.icon-random {
3284 background-position: -216px -120px;
3285}
3286.icon-comment {
3287 background-position: -240px -120px;
3288}
3289.icon-magnet {
3290 background-position: -264px -120px;
3291}
3292.icon-chevron-up {
3293 background-position: -288px -120px;
3294}
3295.icon-chevron-down {
3296 background-position: -313px -119px;
3297}
3298.icon-retweet {
3299 background-position: -336px -120px;
3300}
3301.icon-shopping-cart {
3302 background-position: -360px -120px;
3303}
3304.icon-folder-close {
3305 background-position: -384px -120px;
3306}
3307.icon-folder-open {
3308 background-position: -408px -120px;
3309}
3310.icon-resize-vertical {
3311 background-position: -432px -119px;
3312}
3313.icon-resize-horizontal {
3314 background-position: -456px -118px;
3315}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303316
Rushabh Mehta2886b952012-02-24 11:26:31 +05303317/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303318 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303319 */
3320h1, h2, h3, h4, h5 {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303321 font-family: Tahoma, Arial, Verdana, sans-serif;
3322 font-weight: bold;
3323}
3324
3325body {
3326 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
3327 font-size: 12px;
3328}
3329
3330span, div, td, input, textarea, button, select {
3331 font-family: inherit;
3332}
3333
3334body {
Rushabh Mehta5d267a42012-03-01 18:53:06 +05303335 background: url(../images/stripedbg.png) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303336}
3337
3338.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303339 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303340 text-align: center;
3341}
3342
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303343.module-icons {
3344 background: url(../images/module-icons.png) no-repeat top left;
3345 width:16px;
3346 height:16px;
3347}
3348
3349.module-icons-accounts{ background-position: 0 0; }
3350.module-icons-analysis{ background-position: 0 -66px; }
3351.module-icons-buying{ background-position: 0 -132px; }
3352.module-icons-home{ background-position: 0 -198px; }
3353.module-icons-hr{ background-position: 0 -264px; }
3354.module-icons-people{ background-position: 0 -330px; }
3355.module-icons-production{ background-position: 0 -396px; }
3356.module-icons-projects{ background-position: 0 -462px; }
3357.module-icons-selling{ background-position: 0 -528px; }
3358.module-icons-setup{ background-position: 0 -594px; }
3359.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05303360.module-icons-support{ background-position: 0 -726px; }
3361
Anand Doshidb628762012-02-24 17:56:00 +05303362.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303363 margin: -3px 0px;
3364 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303365 min-width: 20px;
3366 text-align: center;
3367 display: inline-block;
3368 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303369 color: #999999;
3370 background-color: #333131;
3371}
3372
3373.navbar-new-comments:hover,
3374.navbar-new-comments:active,
3375.navbar-new-comments:focus {
3376 color: #fff;
3377}
3378
3379
3380.navbar-new-comments-true {
3381 color: #fff;
3382 background-color: #B00D07;
3383}
3384
3385.navbar-icon-home {
3386 vertical-align: middle;
3387 opacity:0.4;
3388 Filter:alpha(opacity=40); /* For IE8 and earlier */
3389}
3390
3391.navbar-icon-home:hover,
3392.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05303393.navbar-icon-home:active,
3394.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303395 opacity:1;
3396 Filter:alpha(opacity=100); /* For IE8 and earlier */
3397}
3398
3399/*extra size menus for recent*/
3400.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3401 min-width: 160px !important;
3402 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303403}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303404