blob: a7732322a6c2e722e6def677d3d678b6e9bd83e1 [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
3 * lib/css/legacy/body.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5html {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05306 margin: 0px;
7 padding: 0px;
8}
9
10body {
11 margin: 0px;
12 padding: 0px;
13 font-family: Arial, Helvetica, Sans;
Rushabh Mehta983a1712012-03-21 13:35:34 +053014 font-size: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053015 color: #000;
Rushabh Mehta3f29b852012-02-20 15:40:29 +053016 background-color: #e2e2e2;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053017}
18
Rushabh Mehtaafaac602012-02-14 11:44:13 +053019pre { margin: 0px; padding: 0px; }
20
21button { margin: 2px; margin-left: 0px; }
22
23label {
24 padding-top: 15px;
25 color: #404040;
26}
27
28select, input, textarea {
Rushabh Mehtab9878d02012-03-12 16:12:09 +053029 border: 1px solid #ccc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053030 -moz-border-radius: 4px;
31 -webkit-border-radius: 4px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053032 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053033 padding: 4px;
Rushabh Mehtab9878d02012-03-12 16:12:09 +053034 color: #444;
35 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
36 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
37 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
Rushabh Mehtaafaac602012-02-14 11:44:13 +053038}
39
40textarea {
41 font-family: inherit;
42 height: 120px;
43 width: 90%;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053044 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053045 white-space: normal;
46}
47
48table { padding: 0px; border-collapse: 'collapse'}
49
50td {
51 padding:0px;
52 margin: 0px;
53 vertical-align: top;
54}
55
56p {
57 margin: 0px 0px 9px 0px;
58 line-height: 1.5em;
59}
60
61li {
62 line-height: 1.5em;
63}
64
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053065hr {
66 margin: 18px 0;
67 border: 0;
68 border-top: 1px solid #e5e5e5;
69 border-bottom: 1px solid #ffffff;
70}
71
Rushabh Mehtad0251332012-02-21 17:26:50 +053072/* links */
73
Rushabh Mehtaafaac602012-02-14 11:44:13 +053074a:active { outline:none; }
75
Rushabh Mehtad0251332012-02-21 17:26:50 +053076a {
77 color: #0088cc;
78 text-decoration: none;
79}
80a:hover {
81 color: #005580;
82 text-decoration: underline;
83}
84
85.link_type {
86 padding:2px;
87 color: #0088cc;
88 cursor: pointer;
89}
90
91.link_type:hover {
92 color: #005580;
93 text-decoration: underline;
94}
95
Rushabh Mehtaafaac602012-02-14 11:44:13 +053096:focus { -moz-outline-style:none; }
97
98table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
99table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
100
101div.fix_ff_cursor { overflow: auto; }
102
103/* --- Layout --- */
104
105div.comment { color: #444; }
106
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530107.small {
108 font-size: 11px;
109}
110
111.help {
112 margin: 3px 0px;
113 color: #888;
114}
115
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530116div#body_div {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530117 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530118 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530119 width: 900px;
120 margin: auto;
121 margin-top: 56px;
122}
123
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530124.content {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530125 width: 900px;
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530126 margin-bottom: 30px;
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530127}
128
129.background-fade-in {
130 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
131 -moz-transition: background 1s ease-in;
132 -o-transition: background 1s ease-in;
133 transition: background 1s ease-in;
134}
135
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530136footer {
137 position: absolute;
138 bottom: 0px;
139 width: 100%;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530140}
141header .container {
142 width: 900px;
143 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530144}
145
Rushabh Mehta2438de42012-03-15 16:43:46 +0530146@media (max-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530147 div#body_div, header .container, .content, #opened-page-selector, footer {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530148 width: 900px;
149 }
150}
151
152@media (min-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530153 div#body_div, header .container, .content, #opened-page-selector, footer {
154 width: 1100px;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530155 }
156}
157
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530158div.no_script {
159 display: none;
160}
161
162div.loading_div {
163 position: absolute;
164 background-color: #FFFFCC;
165 z-index: 1999;
166 right: 5px;
167 width: 90px;
168 display: none;
169 text-align: center;
170 padding: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530171 border: 1px solid #FF4;
172}
173
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530174div.std-footer {
175 margin: 13px 0px;
176 border-top: 1px solid #AAA;
177 padding: 13px;
178}
179
180div.std-footer-item {
181 margin: 0px 13px 13px 0px;
182}
183
184.shadow {
185 -moz-box-shadow: 0px 2px 2px #888;
186 -webkit-box-shadow: 0px 2px 2px #888;
187 box-shadow: 0px 2px 2px #888;
188}
189
190.round {
191 -webkit-border-radius: 5px;
192 -moz-border-radius: 5px;
193 border-radius: 5px;
194}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530195
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530196.layout_wrapper, .layout-wrapper {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530197 -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
198 -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
199 box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530200 background-color: #fff;
201 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530202 margin-bottom: 30px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530203}
204
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530205.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530206 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530207 padding: 0px;
208}
209
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530210.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530211 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530212 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530213 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530214 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530215 min-height: 600px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530216 -moz-box-shadow: 7px 0px 6px -2px #ddd;
217 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
218 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530219}
220
221.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530222 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530223 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530224 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530225 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530226 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530227 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530228}
229
230/* from bootstrap */
231.container {
232 margin-left: auto;
233 margin-right: auto;
234 zoom: 1;
235}
236.container:before, .container:after {
237 display: table;
238 content: "";
239 zoom: 1;
240}
241.container:after {
242 clear: both;
243}
244
Anand Doshi40ee8d62012-02-24 19:21:47 +0530245.well {
246 min-height: 20px;
247 padding: 19px;
248 margin-bottom: 20px;
249 background-color: #f5f5f5;
250 border: 1px solid #eee;
251 border: 1px solid rgba(0, 0, 0, 0.05);
252 -webkit-border-radius: 4px;
253 -moz-border-radius: 4px;
254 border-radius: 4px;
255 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
256 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
257 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
258}
259
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530260.avatar-small {
261 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530262 width: 24px;
263 height: 20px;
264 vertical-align: middle;
265 overflow: hidden;
266 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530267}
268.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530269 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530270}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530271
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530272/*
273 * lib/css/legacy/messages.css
274 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530275
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530276/* FLOATING MESSAGE */
277
278.btn-img { cursor: pointer; }
279
280div.fetching { color: #888; text-align:right; }
281
282div.notice {
283 postion: absolute;
284 background-color: #000;
285 -moz-border-radius: 5px; -webkit-border-radius: 5px;
286 opacity: 0.6;
287 right: 0;
288 top: 0;
289 margin-top: 8px;
290 z-index: -1;
291 padding: 8px;
292}
293
294/** help **/
295
296.info-box {
297 background-color: #F8F8F8;
298 border: 1px solid #CCCCCC;
299 border-radius: 3px 3px 3px 3px;
300 line-height: 1.6em;
301 overflow: auto;
302 padding: 6px 10px;
303 margin-bottom: 9px;
304}
305
306.help_box, .help-box {
307 background-color:#FFC;
308 font-size: 13px;
309 color: #864;
310 padding: 7px;
311 margin: 11px 0px;
312 border: 1px solid #EEB;
313}
314
315.help_box_big {
316 background-color:#FFC;
317 color: #864;
318 padding: 7px;
319 margin: 7px 0px;
320 border: 1px solid #EEB;
321 text-align: center;
322 font-size: 14px;
323}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530324
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530325/*
326 * lib/css/legacy/forms.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530327 */
328/* FORMS */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530329
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530330div.form-section-head {
Rushabh Mehta38474e22012-03-13 16:11:52 +0530331 margin: 11px 0px 3px 0px;
332 border-top: 1px solid #ccc;
333 padding-top: 11px;
334}
335
336div.form-layout-row:first-child .form-section-head {
337 border-top: 0px solid #ccc !important;
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530338}
339
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530340div.form-section-head h3 {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530341 line-height: 20px;
342}
343
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530344div.form-section-head hr {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530345 margin: 9px 0px;
346}
347
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530348
349div.frm_print_wrapper {
350 background-color:#FFF;
351 border:1px solid #444;
352 padding: 40px;
353
354 box-shadow:1px 1px 8px #229;
355 -moz-box-shadow: 1px 1px 8px #229;
356 -webkit-box-shadow: 1px 1px 8px #229;
357}
358
359div.page_break {
360 margin: 24px 0px;
361 border-top: 1px dashed #888;
362}
363
364div.grid_tbarlinks {
365 border-bottom: 0px;
366 background-color: #CCC;
367 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530368 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530369 float: right;
370
371 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
372 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
373}
374
375
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530376div.dialog_frm {
377 position: relative;
378 margin: 10px;
379}
380
381
382
383/*------------------*/
384
385.top_cell {
386 height: 50px;
387}
388
389div.attach_area {
390 padding: 8px;
391 margin: 8px;
392 background-color: #EEE;
393}
394
395div.attach_area table {
396 width: 100%;
397}
398
399.tablabel_normal {
400 margin: 0 4px 0 0;
401 padding: 3px 5px;
402 line-height: 1.3em;
403 display: inline;
404 cursor: pointer;
405}
406
407.tablabel_selected {
408 margin: 0 4px 0 0;
409 padding: 3px 5px;
410 line-height: 1.3em;
411 font-weight: bold;
412 display: inline;
413 cursor: pointer;
414 color: #000;
415}
416
417.scrollhead_wrapper {
418 position: absolute;
419 z-index: 1;
420 height: 30px;
421}
422
423.treeimg {
424 cursor: pointer;
425 margin-right: 3px;
426}
427
428
429.sectionCell {
430 padding: 5px;
431 vertical-align: top;
432}
433
434.code_area {
435 width: 80%;
436 margin: 8px;
437 padding: 4px;
438 background-color: #F8F8F8;
439 border: 1px solid #CCC;
440 overflow-x: auto;
441}
442
443.code_text {
444 width: 100%;
445 height: 360px;
446 margin-top: 3px;
447 font-family: Courier, Fixed;
448 font-size: 12px;
449}
450
451div.time_field select{
452 display: inline;
453 margin: 2px;
454 width: 45px;
455}
456
457/* Documents */
458
459.frm_field_table {
460 width: 100%;
461 border-collapse: collapse;
462}
463
464.datalabelcell {
465 padding: 2px 0px;
466 width: 160px;
467 vertical-align: top;
468}
469.datainputcell { padding: 2px 0px; }
470
471
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530472.help ol {
473 padding-left: 19px;
474}
475
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530476.field_description_top {
477 margin-bottom: 3px;
478}
479
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530480.input_area input, select, textarea {
481 font-size: 14px;
482 padding: 2px;
483}
484
485.input_area input {
486 width: 80%;
487 margin: 0px;
488}
489.input_area select {
490 width: 80%;
491}
492.input_area textarea {
493 width: 90%;
494}
495
496.disp_area {
497 width: 80%;
498 padding: 2px 0px;
499 font-size: 12px;
500}
501.disp_area_no_val {
502 height: 14px;
503}
504
505.no_img {
506 padding: 40px;
507 width: 100px;
508 height: 20px;
509 color: #888;
510 text-align: center;
511 border: 1px solid #AAA;
512}
513
514.input-mandatory {
515 font-size: 14px !important;
516 font-weight: bold;
517}
518
519.field-to-update {
520 background-color:#FEE;
521}
522
523/* sidebar */
524
525div.sidebar-comment-wrapper input {
526 width: 50%;
527}
528div.sidebar-comment-message {
529 margin-top: 8px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530530 color: #777;
531}
532
533div.sidebar-comment-text {
534 font-size: 12px;
535 font-weight: bold;
536 margin-top: 8px;
537 color: #444;
538}
539div.sidebar-comment-info {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530540 color: #777;
541}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530542
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530543/*
544 * lib/css/legacy/grid.css
545 */
546
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530547
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530548/* Grid */
549
550
551/* --- Simple --- */
552.grid_wrapper_simple {
553 width: 100%;
554 margin-bottom: 8px;
555 border: 1px solid #AA9;
556}
557
558.grid_head_wrapper_simple {
559 padding: 0px;
560 border-bottom: 2px solid #AAA;
561}
562
563.grid_head_wrapper_simple td {
564 border-right: 1px solid #AA9;
565}
566
567.grid_head_wrapper_simple td div {
568 padding: 2px;
569}
570
571.grid_tab_wrapper_simple {
572}
573
574.grid_cell_simple {
575 padding: 2px;
576 background-color: #fff;
577 border-right: 1px solid #AA9;
578}
579
580
581/* --- Normal --- */
582.grid_wrapper {
583 position: relative;
584 overflow: auto;
585 border: 1px solid #AAA;
586 width: 100%;
587 margin-bottom: 8px;
588 background-color: #fff;
589}
590
591.grid_tab_wrapper {
592 position: absolute;
593 top: 40px;
594 border-bottom: 1px solid #DDD;
595}
596
597.grid_table, .grid_head_table {
598 table-layout: fixed;
599 border-collapse: collapse;
600 /*width: 100%;*/
601}
602
603.grid_cell {
604 border-right: 1px solid #ddd;
605 padding: 0px;
606 background-color: #fff;
607}
608
609.grid_head_wrapper {
610 position: absolute;
611 z-index: 1;
612 height: 40px;
613 padding: 0px;
614 overflow: hidden;
615 /*background-color: #fff;*/
616}
617
618.grid_head_table td {
619 background-color: #EEE;
620 border-right: 1px solid #AAA;
621 border-bottom: 1px solid #AAA;
622 height: 40px;
623 padding: 0px;
624}
625
626.grid_head_table td div {
627 color: #222;
628 font-weight: bold;
629 overflow: hidden;
630 padding: 2px 0px;
631 text-align: center;
632}
633
634.grid_selector {
635 padding: 1px;
636 border-right: 1px solid #DDD;
637 width: 20px;
638 background-color: #fff;
639}
640
641.grid_cell_div {
642 padding: 2px;
643 cursor: pointer;
644 overflow: hidden;
645 border: 2px solid #FFF;
646}
647
648.grid_cell_div_selected {
649 border: 2px solid #88f;
650}
651
652.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
653 margin: 0px;
654 border: 0px;
655 width: 100%;
656 margin: 0px;
657 }
658
659.grid_cell_div textarea {
660 border: 3px solid #abf;
661 height:200px;
662 width: 300px;
663 z-index: 10;
664 position:absolute;
665}
666
667.gridDivSelected option { border: 0px; }
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530668
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530669/*
670 * lib/css/legacy/listing.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530671 */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530672
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530673
674/* SRS */
675
676table.srs_result_tab {
677 border: 2px solid #AAA;
678 border-collapse: collapse;
679}
680
681/* firefox bug fix for disappering borders */
682table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
683 position: static;
684}
685
686table.srs_result_tab td {
687 padding: 3px 2px;
688 position: static;
689}
690
691div.srs_body_area {
692}
693
694div.srs_results_area {
695}
696
697div.srs_filter_wrapper {
698 border: 1px solid #CCF;
699
700 background-color: #EEF;
701 margin:0px 0px 8px 0px;
702
703 -moz-border-radius: 5px;
704 -webkit-border-radius: 5px;
705 border-radius: 5px;
706}
707
708div.srs_filter_area {
709 padding: 8px;
710}
711
712div.srs_filter_area td {
713 vertical-align: middle;
714}
715
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530716/*
717 * lib/css/legacy/report.css
718 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530719
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530720/* Reports */
721
722div.report_grid_area {
723 position: relative;
724 padding: 8px;
725}
726
727
728div.report_tab {
729 border: 1px solid #AAA;
730 position: relative;
731 overflow: auto;
732}
733
734div.report_no_data {
735 padding: 8px;
736 background-color: #EEE;
737 border: 1px solid #DDD;
738 position: absolute;
739 margin-left: 40%;
740 margin-top: 50px;
741 display: none;
742}
743
744div.report_htitle {
745 float: left;
746 padding: 2px;
747 font-size: 14px;
748 font-weight: bold;
749 margin-left: 4px;
750 color: #665;
751 /*font-weight: bold;*/
752}
753
754div.report_tbar {
755 background-color: #EEF;
756 border: 1px solid #CCF;
757 border-bottom: 0px;
758 height: 28px;
759}
760
761div.report_tbar table{
762 width: 100%;
763}
764div.report_tbar table td {
765
766}
767div.report_tbar table td div {
768 position: relative;
769}
770div.report_tbar button, div.report_tbar select, div.report_tbar img {
771 font-size: 11px;
772 margin: 0px;
773}
774
775div.report_head_wrapper {
776 position: absolute;
777 height: 24px;
778 top: 0px;
779 z-index: 1;
780}
781
782div.report_tab_wrapper {
783 position: absolute;
784 border-bottom: 1px solid #AAA;
785 border-top: 1px solid #AAA;
786}
787
788div.report_tab_wrapper table, div.report_head_wrapper table {
789 table-layout: fixed;
790 border-collapse: collapse;
791 /*width: 100%;*/
792}
793
794div.report_tab_wrapper table td, div.report_head_wrapper table td {
795 border-left: 1px solid #AAA;
796 border-right: 1px solid #AAA;
797 border-bottom: 1px solid #AAA;
798 overflow: hidden;
799 padding: 0px;
800}
801
802div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
803 padding: 3px;
804 overflow: hidden;
805}
806
807.report_head_cell {
808 background-color: #EEE;
809 border-bottom: 1px solid #AA9;
810 text-align: center;
811 font-weight: bold;
812}
813.report_head_cell div {
814 color:#222;
815 height: 18px;
816}
817
818
819/* FINDER */
820
821div.finder_wrapper {
822}
823
824div.finder_body_area {
825 margin: 16px;
826}
827
828div.finder_body {
829 display: none;
830}
831
832div.finder_advanced_area table {
833 width: 80%;
834}
835
836div.finder_advanced_area textarea {
837 width: 80%;
838}
839
840div.finder_filter_area {
841 position: relative;
842}
843
844div.filter_head {
845 font-size: 14px;
846 margin-bottom: 2px;
847}
848div.filter_dt_head {
849 font-size: 14px;
850 font-weight: bold;
851 margin-bottom: 2px;
852}
853table.filter_tab {
854 width: 96%;
855 border-collapse: collapse;
856}
857
858table.filter_tab td {
859 width: 50%;
860}
861
862div.finder_picker_area {
863
864}
865div.builder_field {
866 margin: 0px;
867}
868div.builder_dt_head {
869 font-size: 14px;
870 font-weight: bold;
871 margin-bottom: 2px;
872}
873
874div.builder_field table {
875 width: 90%;
876 border-collapse: collapse;
877}
878
879div.builder_label {
880 height: 20px;
881}
882
883div.builder_head {
884 font-size: 16px;
885 font-weight: bold;
886 color: #AB6;
887}
888
889table.builder_tab {
890 width: 96%;
891 border-collapse: collapse;
892}
893
894table.builder_tab td {
895 width: 33%;
896 padding: 2px;
897}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530898
899/*
900 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530901 */
902/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530903
904div.dialog_wrapper {
905 position: absolute;
906 width: 440px;
907 display: none;
908 z-index: 90;
909 background-color: #FFF;
910 border: 3px solid #222;
911 box-shadow:1px 1px 5px #777;
912 -moz-box-shadow: 1px 1px 5px #777;
913 -webkit-box-shadow: 1px 1px 5px #777;
914
915 border-radius: 5px;
916 -moz-border-radius: 5px;
917 -webkit-border-radius: 5px;
918}
919
920div.dialog_head {
921 height: 22px;
922 padding: 4px;
923 background-color: #222;
924 color: #FFF;
925}
926
927div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530928 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530929 border-radius: 5px;
930 -moz-border-radius: 5px;
931 -webkit-border-radius: 5px;
932}
933
934div.dialog_back {
935 position: fixed;
936 display: none;
937 top: 0px;
938 left: 0px;
939 bottom: 0px;
940 right: 0px;
941 background-color: #EEE;
942 opacity: 0.6;
943 z-index: 50;
944 text-align: center;
945}
946
947div.dialog_message {
948 display: none;
949 position: absolute;
950 width: 250px;
951 font-size: 12px;
952 z-index: 91;
953 background-color:#FFF;
954 padding: 12px;
955 border: 1px solid #444;
956}
957
958div.dialog_row {
959 padding: 8px 8px 0px 8px;
960}
961
962div.dialog_row table {
963 width: 100%;
964}
965
966div.dialog_row table td {
967}
968
969div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
970 width: 80%;
971 font-size: 14px;
972}
973
974div.dialog_row table td textarea {
975 width: 80%;
976 height: 200px;
977 font-size: 12px;
978}
979
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530980
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530981/*
982 * lib/css/legacy/tabs.css
983 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530984
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530985/******* TABS ********/
986
987div.box_label_wrapper {
988 border-bottom: 6px solid #777;
989}
990
991div.box_label_body {
992 height: 22px;
993}
994
995ul.box_tabs {
996 margin: 0px;
997 padding: 0px;
998 list-style: none;
999}
1000
1001ul.box_tabs li {
1002 height: 22px;
1003 float:left;
1004 font-size: 12px;
1005 text-decoration: underline;
1006
1007 background-color: #DDD;
1008
1009 margin:0;
1010 margin-left: 4px;
1011 padding:0 0 0 9px;
1012 cursor: pointer;
1013}
1014
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301015ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301016 display:block;
1017 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301018 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301019}
1020
1021ul.box_tabs li.box_tab_mouseover {
1022 background-color: #BBB;
1023}
1024
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301025ul.box_tabs li.box_tab_selected {
1026 background-color: #777;
1027
1028 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1029 background: -moz-linear-gradient(top, #999, #777);
1030
1031 color: #FFF;
1032 font-weight:bold;
1033
1034}
1035ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301036 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301037}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301038
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301039/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301040 * lib/css/legacy/sidebar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301041 */
1042div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301043}
1044
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301045div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301046 font-size: 14px;
1047 font-weight: bold;
1048 color: #555;
1049 margin-bottom: 12px;
1050}
1051
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301052div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301053 margin-bottom: 11px;
1054 overflow: hidden;
1055}
1056
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301057div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301058 padding: 5px 11px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301059 border-bottom: 1px solid #aaa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301060}
1061
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301062div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301063 margin: 7px 11px 11px 11px;
1064}
1065
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301066div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301067 margin-bottom: 7px;
1068}
1069
Rushabh Mehtad0251332012-02-21 17:26:50 +05301070div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301071 color: #666;
1072}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301073
1074/*
1075 * lib/css/Aristo/aristo.selected.css
1076 */
1077/*
1078 * jQuery UI CSS Framework 1.8.7
1079 *
1080 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1081 * Dual licensed under the MIT or GPL Version 2 licenses.
1082 * http://jquery.org/license
1083 *
1084 * http://docs.jquery.com/UI/Theming/API
1085 */
1086
1087/* Layout helpers
1088----------------------------------*/
1089.ui-helper-hidden { display: none; }
1090.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
1091.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
1092.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
1093.ui-helper-clearfix { display: inline-block; }
1094/* required comment for clearfix to work in Opera \*/
1095* html .ui-helper-clearfix { height:1%; }
1096.ui-helper-clearfix { display:block; }
1097/* end clearfix */
1098.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
1099
1100
1101/* Interaction Cues
1102----------------------------------*/
1103.ui-state-disabled { cursor: default !important; }
1104
1105
1106/* Icons
1107----------------------------------*/
1108
1109/* states and images */
1110.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
1111
1112
1113/* Misc visuals
1114----------------------------------*/
1115
1116/* Overlays */
1117.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1118
1119
1120/*
1121 * jQuery UI CSS Framework 1.8.7
1122 *
1123 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1124 * Dual licensed under the MIT or GPL Version 2 licenses.
1125 * http://jquery.org/license
1126 *
1127 * http://docs.jquery.com/UI/Theming/API
1128 *
1129 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
1130 */
1131
1132
1133/* Component containers
1134----------------------------------*/
1135.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
1136.ui-widget .ui-widget { font-size: 1em; }
1137.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
1138.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
1139.ui-widget-content a { color: #4F4F4F; }
1140.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
1141.ui-widget-header {
1142 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1143 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1144 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1145 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1146 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1147 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1148 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1149}
1150.ui-widget-header a { color: #4F4F4F; }
1151
1152/* Interaction states
1153----------------------------------*/
1154.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
1155.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1156 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1157 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1158 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1159 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1160 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1161 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1162 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1163 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1164 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1165 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1166}
1167.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
1168.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; }
1169.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
1170.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
1171 outline: none;
1172 color: #1c4257; border: 1px solid #7096ab;
1173 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
1174 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
1175 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
1176 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
1177 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
1178 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
1179 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
1180 -webkit-box-shadow: none;
1181 -moz-box-shadow: none;
1182 box-shadow: none;
1183}
1184.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
1185.ui-widget :active { outline: none; }
1186
1187/* Interaction Cues
1188----------------------------------*/
1189.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; }
1190.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
1191.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; }
1192.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
1193.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
1194.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
1195.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
1196.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
1197
1198/* Icons
1199----------------------------------*/
1200
1201/* states and images */
1202.ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1203.ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1204.ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1205.ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1206.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1207.ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1208.ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1209.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; }
1210.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
1211
1212/* positioning */
1213.ui-icon-carat-1-n { background-position: 0 0; }
1214.ui-icon-carat-1-ne { background-position: -16px 0; }
1215.ui-icon-carat-1-e { background-position: -32px 0; }
1216.ui-icon-carat-1-se { background-position: -48px 0; }
1217.ui-icon-carat-1-s { background-position: -64px 0; }
1218.ui-icon-carat-1-sw { background-position: -80px 0; }
1219.ui-icon-carat-1-w { background-position: -96px 0; }
1220.ui-icon-carat-1-nw { background-position: -112px 0; }
1221.ui-icon-carat-2-n-s { background-position: -128px 0; }
1222.ui-icon-carat-2-e-w { background-position: -144px 0; }
1223.ui-icon-triangle-1-n { background-position: 0 -16px; }
1224.ui-icon-triangle-1-ne { background-position: -16px -16px; }
1225.ui-icon-triangle-1-e { background-position: -32px -16px; }
1226.ui-icon-triangle-1-se { background-position: -48px -16px; }
1227.ui-icon-triangle-1-s { background-position: -64px -16px; }
1228.ui-icon-triangle-1-sw { background-position: -80px -16px; }
1229.ui-icon-triangle-1-w { background-position: -96px -16px; }
1230.ui-icon-triangle-1-nw { background-position: -112px -16px; }
1231.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
1232.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
1233.ui-icon-arrow-1-n { background-position: 0 -32px; }
1234.ui-icon-arrow-1-ne { background-position: -16px -32px; }
1235.ui-icon-arrow-1-e { background-position: -32px -32px; }
1236.ui-icon-arrow-1-se { background-position: -48px -32px; }
1237.ui-icon-arrow-1-s { background-position: -64px -32px; }
1238.ui-icon-arrow-1-sw { background-position: -80px -32px; }
1239.ui-icon-arrow-1-w { background-position: -96px -32px; }
1240.ui-icon-arrow-1-nw { background-position: -112px -32px; }
1241.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
1242.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
1243.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
1244.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
1245.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
1246.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
1247.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
1248.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
1249.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
1250.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
1251.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
1252.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
1253.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
1254.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
1255.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
1256.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
1257.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
1258.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
1259.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
1260.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
1261.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
1262.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
1263.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
1264.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
1265.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
1266.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
1267.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
1268.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
1269.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
1270.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
1271.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
1272.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
1273.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
1274.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
1275.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
1276.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
1277.ui-icon-arrow-4 { background-position: 0 -80px; }
1278.ui-icon-arrow-4-diag { background-position: -16px -80px; }
1279.ui-icon-extlink { background-position: -32px -80px; }
1280.ui-icon-newwin { background-position: -48px -80px; }
1281.ui-icon-refresh { background-position: -64px -80px; }
1282.ui-icon-shuffle { background-position: -80px -80px; }
1283.ui-icon-transfer-e-w { background-position: -96px -80px; }
1284.ui-icon-transferthick-e-w { background-position: -112px -80px; }
1285.ui-icon-folder-collapsed { background-position: 0 -96px; }
1286.ui-icon-folder-open { background-position: -16px -96px; }
1287.ui-icon-document { background-position: -32px -96px; }
1288.ui-icon-document-b { background-position: -48px -96px; }
1289.ui-icon-note { background-position: -64px -96px; }
1290.ui-icon-mail-closed { background-position: -80px -96px; }
1291.ui-icon-mail-open { background-position: -96px -96px; }
1292.ui-icon-suitcase { background-position: -112px -96px; }
1293.ui-icon-comment { background-position: -128px -96px; }
1294.ui-icon-person { background-position: -144px -96px; }
1295.ui-icon-print { background-position: -160px -96px; }
1296.ui-icon-trash { background-position: -176px -96px; }
1297.ui-icon-locked { background-position: -192px -96px; }
1298.ui-icon-unlocked { background-position: -208px -96px; }
1299.ui-icon-bookmark { background-position: -224px -96px; }
1300.ui-icon-tag { background-position: -240px -96px; }
1301.ui-icon-home { background-position: 0 -112px; }
1302.ui-icon-flag { background-position: -16px -112px; }
1303.ui-icon-calendar { background-position: -32px -112px; }
1304.ui-icon-cart { background-position: -48px -112px; }
1305.ui-icon-pencil { background-position: -64px -112px; }
1306.ui-icon-clock { background-position: -80px -112px; }
1307.ui-icon-disk { background-position: -96px -112px; }
1308.ui-icon-calculator { background-position: -112px -112px; }
1309.ui-icon-zoomin { background-position: -128px -112px; }
1310.ui-icon-zoomout { background-position: -144px -112px; }
1311.ui-icon-search { background-position: -160px -112px; }
1312.ui-icon-wrench { background-position: -176px -112px; }
1313.ui-icon-gear { background-position: -192px -112px; }
1314.ui-icon-heart { background-position: -208px -112px; }
1315.ui-icon-star { background-position: -224px -112px; }
1316.ui-icon-link { background-position: -240px -112px; }
1317.ui-icon-cancel { background-position: 0 -128px; }
1318.ui-icon-plus { background-position: -16px -128px; }
1319.ui-icon-plusthick { background-position: -32px -128px; }
1320.ui-icon-minus { background-position: -48px -128px; }
1321.ui-icon-minusthick { background-position: -64px -128px; }
1322.ui-icon-close { background-position: -80px -128px; }
1323.ui-icon-closethick { background-position: -96px -128px; }
1324.ui-icon-key { background-position: -112px -128px; }
1325.ui-icon-lightbulb { background-position: -128px -128px; }
1326.ui-icon-scissors { background-position: -144px -128px; }
1327.ui-icon-clipboard { background-position: -160px -128px; }
1328.ui-icon-copy { background-position: -176px -128px; }
1329.ui-icon-contact { background-position: -192px -128px; }
1330.ui-icon-image { background-position: -208px -128px; }
1331.ui-icon-video { background-position: -224px -128px; }
1332.ui-icon-script { background-position: -240px -128px; }
1333.ui-icon-alert { background-position: 0 -144px; }
1334.ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
1335.ui-icon-notice { background-position: -32px -144px; }
1336.ui-icon-help { background-position: -48px -144px; }
1337.ui-icon-check { background-position: -64px -144px; }
1338.ui-icon-bullet { background-position: -80px -144px; }
1339.ui-icon-radio-off { background-position: -96px -144px; }
1340.ui-icon-radio-on { background-position: -112px -144px; }
1341.ui-icon-pin-w { background-position: -128px -144px; }
1342.ui-icon-pin-s { background-position: -144px -144px; }
1343.ui-icon-play { background-position: 0 -160px; }
1344.ui-icon-pause { background-position: -16px -160px; }
1345.ui-icon-seek-next { background-position: -32px -160px; }
1346.ui-icon-seek-prev { background-position: -48px -160px; }
1347.ui-icon-seek-end { background-position: -64px -160px; }
1348.ui-icon-seek-start { background-position: -80px -160px; }
1349/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1350.ui-icon-seek-first { background-position: -80px -160px; }
1351.ui-icon-stop { background-position: -96px -160px; }
1352.ui-icon-eject { background-position: -112px -160px; }
1353.ui-icon-volume-off { background-position: -128px -160px; }
1354.ui-icon-volume-on { background-position: -144px -160px; }
1355.ui-icon-power { background-position: 0 -176px; }
1356.ui-icon-signal-diag { background-position: -16px -176px; }
1357.ui-icon-signal { background-position: -32px -176px; }
1358.ui-icon-battery-0 { background-position: -48px -176px; }
1359.ui-icon-battery-1 { background-position: -64px -176px; }
1360.ui-icon-battery-2 { background-position: -80px -176px; }
1361.ui-icon-battery-3 { background-position: -96px -176px; }
1362.ui-icon-circle-plus { background-position: 0 -192px; }
1363.ui-icon-circle-minus { background-position: -16px -192px; }
1364.ui-icon-circle-close { background-position: -32px -192px; }
1365.ui-icon-circle-triangle-e { background-position: -48px -192px; }
1366.ui-icon-circle-triangle-s { background-position: -64px -192px; }
1367.ui-icon-circle-triangle-w { background-position: -80px -192px; }
1368.ui-icon-circle-triangle-n { background-position: -96px -192px; }
1369.ui-icon-circle-arrow-e { background-position: -112px -192px; }
1370.ui-icon-circle-arrow-s { background-position: -128px -192px; }
1371.ui-icon-circle-arrow-w { background-position: -144px -192px; }
1372.ui-icon-circle-arrow-n { background-position: -160px -192px; }
1373.ui-icon-circle-zoomin { background-position: -176px -192px; }
1374.ui-icon-circle-zoomout { background-position: -192px -192px; }
1375.ui-icon-circle-check { background-position: -208px -192px; }
1376.ui-icon-circlesmall-plus { background-position: 0 -208px; }
1377.ui-icon-circlesmall-minus { background-position: -16px -208px; }
1378.ui-icon-circlesmall-close { background-position: -32px -208px; }
1379.ui-icon-squaresmall-plus { background-position: -48px -208px; }
1380.ui-icon-squaresmall-minus { background-position: -64px -208px; }
1381.ui-icon-squaresmall-close { background-position: -80px -208px; }
1382.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
1383.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
1384.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
1385.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
1386.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
1387.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
1388
1389
1390/* Misc visuals
1391----------------------------------*/
1392
1393/* Corner radius */
1394.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
1395.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
1396.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
1397.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1398.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; }
1399.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; }
1400.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; }
1401.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; }
1402.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
1403
1404/* Overlays */
1405.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
1406.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; }
1407
1408/*
1409 * jQuery UI Autocomplete 1.8.7
1410 *
1411 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1412 * Dual licensed under the MIT or GPL Version 2 licenses.
1413 * http://jquery.org/license
1414 *
1415 * http://docs.jquery.com/UI/Autocomplete#theming
1416 */
1417.ui-autocomplete {
1418 position: absolute; cursor: default; z-index: 3;
1419 -moz-border-radius: 0;
1420 -webkit-border-radius: 0;
1421 border-radius: 0;
1422 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1423 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1424 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1425}
1426
1427/* workarounds */
1428* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
1429
1430/*
1431 * jQuery UI Menu 1.8.7
1432 *
1433 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1434 * Dual licensed under the MIT or GPL Version 2 licenses.
1435 * http://jquery.org/license
1436 *
1437 * http://docs.jquery.com/UI/Menu#theming
1438 */
1439.ui-menu {
1440 list-style:none;
1441 padding: 2px;
1442 margin: 0;
1443 display:block;
1444 float: left;
1445}
1446.ui-menu .ui-menu {
1447 margin-top: -3px;
1448}
1449.ui-menu .ui-menu-item {
1450 margin:0;
1451 padding: 0;
1452 zoom: 1;
1453 float: left;
1454 clear: left;
1455 width: 100%;
1456}
1457.ui-menu .ui-menu-item a {
1458 text-decoration:none;
1459 display:block;
1460 padding:.2em .4em;
1461 line-height:1.5;
1462 zoom:1;
1463}
1464.ui-menu .ui-menu-item a.ui-state-hover,
1465.ui-menu .ui-menu-item a.ui-state-active {
1466 font-weight: normal;
1467 margin: -1px;
1468 background: #5f83b9;
1469 color: #FFFFFF;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301470 border-color: #466086;
1471 -moz-border-radius: 0;
1472 -webkit-border-radius: 0;
1473 border-radius: 0;
1474}
1475
1476/*
1477 * jQuery UI Datepicker 1.8.7
1478 *
1479 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1480 * Dual licensed under the MIT or GPL Version 2 licenses.
1481 * http://jquery.org/license
1482 *
1483 * http://docs.jquery.com/UI/Datepicker#theming
1484 */
1485.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
1486.ui-datepicker {
1487 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1488 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1489 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1490}
1491.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; }
1492.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
1493.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
1494.ui-datepicker .ui-datepicker-prev { left:2px; }
1495.ui-datepicker .ui-datepicker-next { right:2px; }
1496.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
1497.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
1498.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
1499.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
1500.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; }
1501.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); }
1502.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
1503.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
1504.ui-datepicker select.ui-datepicker-month,
1505.ui-datepicker select.ui-datepicker-year { width: 49%;}
1506.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
1507.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
1508.ui-datepicker td { border: 0; padding: 1px; }
1509.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
1510.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; }
1511.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
1512.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
1513.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
1514.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; }
1515.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
1516.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
1517
1518/* with multiple calendars */
1519.ui-datepicker.ui-datepicker-multi { width:auto; }
1520.ui-datepicker-multi .ui-datepicker-group { float:left; }
1521.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
1522.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
1523.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
1524.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
1525.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
1526.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
1527.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
1528.ui-datepicker-row-break { clear:both; width:100%; }
1529
1530/* RTL support */
1531.ui-datepicker-rtl { direction: rtl; }
1532.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
1533.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
1534.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
1535.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
1536.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
1537.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
1538.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
1539.ui-datepicker-rtl .ui-datepicker-group { float:right; }
1540.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1541.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1542
1543/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1544.ui-datepicker-cover {
1545 display: none; /*sorry for IE5*/
1546 display/**/: block; /*sorry for IE5*/
1547 position: absolute; /*must have*/
1548 z-index: -1; /*must have*/
1549 filter: mask(); /*must have*/
1550 top: -4px; /*must have*/
1551 left: -4px; /*must have*/
1552 width: 200px; /*must have*/
1553 height: 200px; /*must have*/
1554}
1555
1556
1557
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301558/*
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301559 * lib/css/ui/list.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301560 */
1561.hide {
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301562 display: none;
1563}
1564
1565.list-filters {
1566 margin: 7px 0px;
1567}
1568
1569.wnlist .img-load {
1570 display: none;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301571 margin-left: 11px;
1572 margin-top: 8px;
1573}
1574
Rushabh Mehta2438de42012-03-15 16:43:46 +05301575/* list-row */
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301576div.list-row {
1577 border-bottom: 1px solid #eee;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301578 padding: 5px 0px;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301579}
1580div.list-row:hover {
1581 background-color: #eef
1582}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301583
Rushabh Mehta2438de42012-03-15 16:43:46 +05301584div.list-row .label {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301585 margin-right: 4px;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301586}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301587
1588div.list-row table {
1589 table-layout: fixed;
1590 border-collapse: collapse;
1591 width: 100%;
1592}
1593
1594div.list-row table td {
1595 overflow: hidden;
1596 padding-right: 3px;
1597 vertical-align: middle;
1598 height: 24px;
1599 max-height: 24px;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301600}
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301601
Rushabh Mehta9f89e352012-03-09 17:51:39 +05301602div.paging-button {
1603 text-align: center;
1604 padding: 11px 0px;
1605}
1606
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301607div.show_filters {
1608 display: none;
1609}
1610
1611div.filter_list {
1612 padding: 13px;
1613}
1614
1615div.show_filters.well {
1616 margin-top: 11px;
1617 margin-bottom: 11px;
1618}
1619
1620div.filter_list .run_btn {
1621 text-align: right;
1622}
1623
1624div.filter_list .add_filter {
1625 margin: 3px 0px;
1626}
1627
1628div.list_filter {
1629 margin: 7px 0px;
1630}
1631
1632div.list_filter input, div.list_filter select {
1633 width: 130px;
1634 margin-right: 7px;
1635}
1636
Rushabh Mehta2438de42012-03-15 16:43:46 +05301637/* bar */
1638
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301639span.bar-outer {
1640 display: inline-block;
1641 margin: 0px 7px;
1642 margin-top: 3px;
1643 background-color: #fff;
1644 border: 1px solid #aaa;
1645 height: 10px;
1646}
1647
1648span.bar-inner {
1649 display: inline-block;
1650 background-color: #bdf;
1651 height: 100%;
1652 margin-bottom: 2px;
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301653 float: left;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301654}
1655span.bar-complete {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301656 background-color: #009900;
1657}
1658span.bar-empty {
1659 background-color: #990000;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301660}
1661
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301662
Rushabh Mehta2438de42012-03-15 16:43:46 +05301663/* stats */
1664
1665div.stat-wrapper {
1666 margin-bottom: 19px;
1667}
1668
1669div.stat-grid {
1670 border: 2px solid #bbb;
1671 background-color: white;
1672 border-radius: 5px;
1673 -moz-border-radius: 5px;
1674 -webkit-border-radius: 5px;
1675 overflow: hidden;
1676}
1677
1678div.stat-label {
1679 position: relative;
1680 padding: 3px;
1681 text-align: center;
1682}
1683div.stat-label, div.stat-label a {
1684 z-index: 5;
1685}
1686
1687div.stat-item {
1688 position: relative;
1689 border-bottom: 1px solid #ddd;
1690}
1691div.stat-item:last-child {
1692 border-bottom: 0px solid #ddd;
1693}
1694
1695div.stat-bar {
1696 position: absolute;
1697 left: 0px;
1698 background-color: #def;
1699 height: 100%;
1700 z-index: 0;
1701}
1702
1703
1704
1705
1706
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301707/*
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301708 * lib/css/ui/fonts.css
1709 */
1710@font-face {
1711 font-family: 'Pontano Sans';
1712 font-style: normal;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301713 font-weight: 800;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301714 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1715}
1716
1717@font-face {
1718 font-family: 'Droid Sans';
1719 font-style: normal;
1720 font-weight: normal;
1721 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1722}
1723
Rushabh Mehta983a1712012-03-21 13:35:34 +05301724@font-face {
1725 font-family: 'PT Sans';
1726 font-style: normal;
1727 font-weight: normal;
1728 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1729}
1730
1731@font-face {
1732 font-family: 'Open Sans';
1733 font-style: normal;
1734 font-weight: 400;
1735 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1736}
1737@font-face {
1738 font-family: 'Lato';
1739 font-style: normal;
1740 font-weight: 400;
1741 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1742}
1743
1744
1745
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301746/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301747 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301748 */
1749/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301750
1751h1,
1752h2,
1753h3,
1754h4,
1755h5,
1756h6 {
1757 margin: 0;
1758 font-weight: bold;
1759 color: #333333;
1760 text-rendering: optimizelegibility;
1761 margin-bottom: 0.3em;
1762}
1763h1 small,
1764h2 small,
1765h3 small,
1766h4 small,
1767h5 small,
1768h6 small {
1769 font-weight: normal;
1770 color: #999999;
1771}
1772h1 {
1773 font-size: 30px;
1774 line-height: 36px;
1775}
1776h1 small {
1777 font-size: 18px;
1778}
1779h2 {
1780 font-size: 24px;
1781 line-height: 36px;
1782}
1783h2 small {
1784 font-size: 18px;
1785}
1786h3 {
1787 line-height: 27px;
1788 font-size: 18px;
1789}
1790h3 small {
1791 font-size: 14px;
1792}
1793h4, h5, h6 {
1794 line-height: 18px;
1795}
1796h4 {
1797 font-size: 14px;
1798}
1799h4 small {
1800 font-size: 12px;
1801}
1802h5 {
1803 font-size: 12px;
1804}
1805h6 {
1806 font-size: 11px;
1807 color: #999999;
1808 text-transform: uppercase;
1809}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301810
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301811/*
1812 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301813 */
1814.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301815 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301816 float: right;
1817 font-size: 20px;
1818 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301819 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301820 color: #000000;
1821 text-shadow: 0 1px 0 #ffffff;
1822 opacity: 0.2;
1823 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301824}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301825.close:hover {
1826 color: #000000;
1827 text-decoration: none;
1828 opacity: 0.4;
1829 filter: alpha(opacity=40);
1830 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301831}
1832.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301833 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301834 padding: 4px 10px 4px;
1835 font-size: 13px;
1836 line-height: 18px;
1837 color: #333333;
1838 text-align: center;
1839 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1840 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301841 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1842 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1843 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1844 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1845 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1846 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301847 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301848 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301849 border: 1px solid #ccc;
1850 border-bottom-color: #bbb;
1851 -webkit-border-radius: 4px;
1852 -moz-border-radius: 4px;
1853 border-radius: 4px;
1854 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1855 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1856 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 +05301857 cursor: pointer;
1858 *margin-left: .3em;
1859}
1860.btn:first-child {
1861 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301862}
1863.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301864 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301865 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301866 background-color: #e6e6e6;
1867 background-position: 0 -15px;
1868 -webkit-transition: background-position 0.1s linear;
1869 -moz-transition: background-position 0.1s linear;
1870 -ms-transition: background-position 0.1s linear;
1871 -o-transition: background-position 0.1s linear;
1872 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301873}
1874.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301875 outline: thin dotted;
1876 outline: 5px auto -webkit-focus-ring-color;
1877 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301878}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301879.btn.active, .btn:active {
1880 background-image: none;
1881 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1882 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1883 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1884 background-color: #e6e6e6;
1885 background-color: #d9d9d9 \9;
1886 color: rgba(0, 0, 0, 0.5);
1887 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301888}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301889.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301890 cursor: default;
1891 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301892 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301893 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301894 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301895 -webkit-box-shadow: none;
1896 -moz-box-shadow: none;
1897 box-shadow: none;
1898}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301899.btn-large {
1900 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301901 font-size: 15px;
1902 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301903 -webkit-border-radius: 5px;
1904 -moz-border-radius: 5px;
1905 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301906}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301907.btn-large .icon {
1908 margin-top: 1px;
1909}
1910.btn-small {
1911 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301912 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301913 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301914}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301915.btn-small .icon {
1916 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301917}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301918.btn-primary,
1919.btn-primary:hover,
1920.btn-warning,
1921.btn-warning:hover,
1922.btn-danger,
1923.btn-danger:hover,
1924.btn-success,
1925.btn-success:hover,
1926.btn-info,
1927.btn-info:hover {
1928 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1929 color: #ffffff;
1930}
1931.btn-primary.active,
1932.btn-warning.active,
1933.btn-danger.active,
1934.btn-success.active,
1935.btn-info.active {
1936 color: rgba(255, 255, 255, 0.75);
1937}
1938.btn-primary {
1939 background-color: #006dcc;
1940 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1941 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1942 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1943 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1944 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1945 background-image: linear-gradient(top, #0088cc, #0044cc);
1946 background-repeat: repeat-x;
1947 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
1948 border-color: #0044cc #0044cc #002a80;
1949 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1950 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1951}
1952.btn-primary:hover,
1953.btn-primary:active,
1954.btn-primary.active,
1955.btn-primary.disabled,
1956.btn-primary[disabled] {
1957 background-color: #0044cc;
1958}
1959.btn-primary:active, .btn-primary.active {
1960 background-color: #003399 \9;
1961}
1962.btn-warning {
1963 background-color: #faa732;
1964 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1965 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1966 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1967 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1968 background-image: -o-linear-gradient(top, #fbb450, #f89406);
1969 background-image: linear-gradient(top, #fbb450, #f89406);
1970 background-repeat: repeat-x;
1971 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1972 border-color: #f89406 #f89406 #ad6704;
1973 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1974 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1975}
1976.btn-warning:hover,
1977.btn-warning:active,
1978.btn-warning.active,
1979.btn-warning.disabled,
1980.btn-warning[disabled] {
1981 background-color: #f89406;
1982}
1983.btn-warning:active, .btn-warning.active {
1984 background-color: #c67605 \9;
1985}
1986.btn-danger {
1987 background-color: #da4f49;
1988 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1989 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1990 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1991 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1992 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1993 background-image: linear-gradient(top, #ee5f5b, #bd362f);
1994 background-repeat: repeat-x;
1995 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1996 border-color: #bd362f #bd362f #802420;
1997 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1998 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1999}
2000.btn-danger:hover,
2001.btn-danger:active,
2002.btn-danger.active,
2003.btn-danger.disabled,
2004.btn-danger[disabled] {
2005 background-color: #bd362f;
2006}
2007.btn-danger:active, .btn-danger.active {
2008 background-color: #942a25 \9;
2009}
2010.btn-success {
2011 background-color: #5bb75b;
2012 background-image: -moz-linear-gradient(top, #62c462, #51a351);
2013 background-image: -ms-linear-gradient(top, #62c462, #51a351);
2014 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
2015 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
2016 background-image: -o-linear-gradient(top, #62c462, #51a351);
2017 background-image: linear-gradient(top, #62c462, #51a351);
2018 background-repeat: repeat-x;
2019 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
2020 border-color: #51a351 #51a351 #387038;
2021 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2022 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2023}
2024.btn-success:hover,
2025.btn-success:active,
2026.btn-success.active,
2027.btn-success.disabled,
2028.btn-success[disabled] {
2029 background-color: #51a351;
2030}
2031.btn-success:active, .btn-success.active {
2032 background-color: #408140 \9;
2033}
2034.btn-info {
2035 background-color: #49afcd;
2036 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
2037 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
2038 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
2039 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
2040 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
2041 background-image: linear-gradient(top, #5bc0de, #2f96b4);
2042 background-repeat: repeat-x;
2043 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
2044 border-color: #2f96b4 #2f96b4 #1f6377;
2045 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2046 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2047}
2048.btn-info:hover,
2049.btn-info:active,
2050.btn-info.active,
2051.btn-info.disabled,
2052.btn-info[disabled] {
2053 background-color: #2f96b4;
2054}
2055.btn-info:active, .btn-info.active {
2056 background-color: #24748c \9;
2057}
2058button.btn, input[type="submit"].btn {
2059 *padding-top: 2px;
2060 *padding-bottom: 2px;
2061}
2062button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302063 padding: 0;
2064 border: 0;
2065}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302066button.btn.large, input[type="submit"].btn.large {
2067 *padding-top: 7px;
2068 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302069}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302070button.btn.small, input[type="submit"].btn.small {
2071 *padding-top: 3px;
2072 *padding-bottom: 3px;
2073}
2074.btn-group {
2075 position: relative;
2076 *zoom: 1;
2077 *margin-left: .3em;
2078}
2079.btn-group:before, .btn-group:after {
2080 display: table;
2081 content: "";
2082}
2083.btn-group:after {
2084 clear: both;
2085}
2086.btn-group:first-child {
2087 *margin-left: 0;
2088}
2089.btn-group + .btn-group {
2090 margin-left: 5px;
2091}
2092.btn-toolbar {
2093 margin-top: 9px;
2094 margin-bottom: 9px;
2095}
2096.btn-toolbar .btn-group {
2097 display: inline-block;
2098 *display: inline;
2099 /* IE7 inline-block hack */
2100
2101 *zoom: 1;
2102}
2103.btn-group .btn {
2104 position: relative;
2105 float: left;
2106 margin-left: -1px;
2107 -webkit-border-radius: 0;
2108 -moz-border-radius: 0;
2109 border-radius: 0;
2110}
2111.btn-group .btn:first-child {
2112 margin-left: 0;
2113 -webkit-border-top-left-radius: 4px;
2114 -moz-border-radius-topleft: 4px;
2115 border-top-left-radius: 4px;
2116 -webkit-border-bottom-left-radius: 4px;
2117 -moz-border-radius-bottomleft: 4px;
2118 border-bottom-left-radius: 4px;
2119}
2120.btn-group .btn:last-child, .btn-group .dropdown-toggle {
2121 -webkit-border-top-right-radius: 4px;
2122 -moz-border-radius-topright: 4px;
2123 border-top-right-radius: 4px;
2124 -webkit-border-bottom-right-radius: 4px;
2125 -moz-border-radius-bottomright: 4px;
2126 border-bottom-right-radius: 4px;
2127}
2128.btn-group .btn.large:first-child {
2129 margin-left: 0;
2130 -webkit-border-top-left-radius: 6px;
2131 -moz-border-radius-topleft: 6px;
2132 border-top-left-radius: 6px;
2133 -webkit-border-bottom-left-radius: 6px;
2134 -moz-border-radius-bottomleft: 6px;
2135 border-bottom-left-radius: 6px;
2136}
2137.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
2138 -webkit-border-top-right-radius: 6px;
2139 -moz-border-radius-topright: 6px;
2140 border-top-right-radius: 6px;
2141 -webkit-border-bottom-right-radius: 6px;
2142 -moz-border-radius-bottomright: 6px;
2143 border-bottom-right-radius: 6px;
2144}
2145.btn-group .btn:hover,
2146.btn-group .btn:focus,
2147.btn-group .btn:active,
2148.btn-group .btn.active {
2149 z-index: 2;
2150}
2151.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2152 outline: 0;
2153}
2154.btn-group .dropdown-toggle {
2155 padding-left: 8px;
2156 padding-right: 8px;
2157 -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);
2158 -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);
2159 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);
2160 *padding-top: 5px;
2161 *padding-bottom: 5px;
2162}
2163.btn-group.open {
2164 *z-index: 1000;
2165}
2166.btn-group.open .dropdown-menu {
2167 display: block;
2168 margin-top: 1px;
2169 -webkit-border-radius: 5px;
2170 -moz-border-radius: 5px;
2171 border-radius: 5px;
2172}
2173.btn-group.open .dropdown-toggle {
2174 background-image: none;
2175 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2176 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2177 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2178}
2179.btn .caret {
2180 margin-top: 7px;
2181 margin-left: 0;
2182}
2183.btn:hover .caret, .open.btn-group .caret {
2184 opacity: 1;
2185 filter: alpha(opacity=100);
2186}
2187.btn-primary .caret,
2188.btn-danger .caret,
2189.btn-info .caret,
2190.btn-success .caret {
2191 border-top-color: #ffffff;
2192 opacity: 0.75;
2193 filter: alpha(opacity=75);
2194}
2195.btn-small .caret {
2196 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302197}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302198
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302199/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302200 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302201 */
2202.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302203 margin-left: 0;
2204 margin-bottom: 18px;
2205 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302206}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302207.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302208 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302209}
2210.nav > li > a:hover {
2211 text-decoration: none;
2212 background-color: #eeeeee;
2213}
2214.nav-list {
2215 padding-left: 14px;
2216 padding-right: 14px;
2217 margin-bottom: 0;
2218}
2219.nav-list > li > a, .nav-list .nav-header {
2220 display: block;
2221 padding: 3px 15px;
2222 margin-left: -15px;
2223 margin-right: -15px;
2224 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2225}
2226.nav-list .nav-header {
2227 font-size: 11px;
2228 font-weight: bold;
2229 line-height: 18px;
2230 color: #999999;
2231 text-transform: uppercase;
2232}
2233.nav-list > li + .nav-header {
2234 margin-top: 9px;
2235}
2236.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302237 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302238 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2239 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302240}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302241.nav-list [class^="icon-"] {
2242 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302243}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302244.nav-tabs, .nav-pills {
2245 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302246}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302247.nav-tabs:before,
2248.nav-pills:before,
2249.nav-tabs:after,
2250.nav-pills:after {
2251 display: table;
2252 content: "";
2253}
2254.nav-tabs:after, .nav-pills:after {
2255 clear: both;
2256}
2257.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302258 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302259}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302260.nav-tabs > li > a, .nav-pills > li > a {
2261 padding-right: 12px;
2262 padding-left: 12px;
2263 margin-right: 2px;
2264 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302265}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302266.nav-tabs {
2267 border-bottom: 1px solid #ddd;
2268}
2269.nav-tabs > li {
2270 margin-bottom: -1px;
2271}
2272.nav-tabs > li > a {
2273 padding-top: 9px;
2274 padding-bottom: 9px;
2275 border: 1px solid transparent;
2276 -webkit-border-radius: 4px 4px 0 0;
2277 -moz-border-radius: 4px 4px 0 0;
2278 border-radius: 4px 4px 0 0;
2279}
2280.nav-tabs > li > a:hover {
2281 border-color: #eeeeee #eeeeee #dddddd;
2282}
2283.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2284 color: #555555;
2285 background-color: #ffffff;
2286 border: 1px solid #ddd;
2287 border-bottom-color: transparent;
2288 cursor: default;
2289}
2290.nav-pills > li > a {
2291 padding-top: 8px;
2292 padding-bottom: 8px;
2293 margin-top: 2px;
2294 margin-bottom: 2px;
2295 -webkit-border-radius: 5px;
2296 -moz-border-radius: 5px;
2297 border-radius: 5px;
2298}
2299.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302300 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302301 background-color: #0088cc;
2302}
2303.nav-stacked > li {
2304 float: none;
2305}
2306.nav-stacked > li > a {
2307 margin-right: 0;
2308}
2309.nav-tabs.nav-stacked {
2310 border-bottom: 0;
2311}
2312.nav-tabs.nav-stacked > li > a {
2313 border: 1px solid #ddd;
2314 -webkit-border-radius: 0;
2315 -moz-border-radius: 0;
2316 border-radius: 0;
2317}
2318.nav-tabs.nav-stacked > li:first-child > a {
2319 -webkit-border-radius: 4px 4px 0 0;
2320 -moz-border-radius: 4px 4px 0 0;
2321 border-radius: 4px 4px 0 0;
2322}
2323.nav-tabs.nav-stacked > li:last-child > a {
2324 -webkit-border-radius: 0 0 4px 4px;
2325 -moz-border-radius: 0 0 4px 4px;
2326 border-radius: 0 0 4px 4px;
2327}
2328.nav-tabs.nav-stacked > li > a:hover {
2329 border-color: #ddd;
2330 z-index: 2;
2331}
2332.nav-pills.nav-stacked > li > a {
2333 margin-bottom: 3px;
2334}
2335.nav-pills.nav-stacked > li:last-child > a {
2336 margin-bottom: 1px;
2337}
2338.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2339 margin-top: 1px;
2340 border-width: 1px;
2341}
2342.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302343 -webkit-border-radius: 4px;
2344 -moz-border-radius: 4px;
2345 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302346}
2347.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2348 border-top-color: #0088cc;
2349 margin-top: 6px;
2350}
2351.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2352 border-top-color: #005580;
2353}
2354.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2355 border-top-color: #333333;
2356}
2357.nav > .dropdown.active > a:hover {
2358 color: #000000;
2359 cursor: pointer;
2360}
2361.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2362 color: #ffffff;
2363 background-color: #999999;
2364 border-color: #999999;
2365}
2366.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2367 border-top-color: #ffffff;
2368 opacity: 1;
2369 filter: alpha(opacity=100);
2370}
2371
2372.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302373 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302374 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302375}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302376.navbar-inner {
2377 padding-left: 20px;
2378 padding-right: 20px;
2379 background-color: #2c2c2c;
2380 background-image: -moz-linear-gradient(top, #333333, #222222);
2381 background-image: -ms-linear-gradient(top, #333333, #222222);
2382 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2383 background-image: -webkit-linear-gradient(top, #333333, #222222);
2384 background-image: -o-linear-gradient(top, #333333, #222222);
2385 background-image: linear-gradient(top, #333333, #222222);
2386 background-repeat: repeat-x;
2387 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2388 -webkit-border-radius: 4px;
2389 -moz-border-radius: 4px;
2390 border-radius: 4px;
2391 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2392 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2393 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2394}
2395.btn-navbar {
2396 display: none;
2397 float: right;
2398 padding: 7px 10px;
2399 margin-left: 5px;
2400 margin-right: 5px;
2401 background-color: #2c2c2c;
2402 background-image: -moz-linear-gradient(top, #333333, #222222);
2403 background-image: -ms-linear-gradient(top, #333333, #222222);
2404 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2405 background-image: -webkit-linear-gradient(top, #333333, #222222);
2406 background-image: -o-linear-gradient(top, #333333, #222222);
2407 background-image: linear-gradient(top, #333333, #222222);
2408 background-repeat: repeat-x;
2409 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2410 border-color: #222222 #222222 #000000;
2411 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2412 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2413 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2414 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2415 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2416}
2417.btn-navbar:hover,
2418.btn-navbar:active,
2419.btn-navbar.active,
2420.btn-navbar.disabled,
2421.btn-navbar[disabled] {
2422 background-color: #222222;
2423}
2424.btn-navbar:active, .btn-navbar.active {
2425 background-color: #080808 \9;
2426}
2427.btn-navbar .icon-bar {
2428 display: block;
2429 width: 18px;
2430 height: 2px;
2431 background-color: #f5f5f5;
2432 -webkit-border-radius: 1px;
2433 -moz-border-radius: 1px;
2434 border-radius: 1px;
2435 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2436 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2437 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2438}
2439.btn-navbar .icon-bar + .icon-bar {
2440 margin-top: 3px;
2441}
2442.nav-collapse.collapse {
2443 height: auto;
2444}
2445.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302446 text-decoration: none;
2447}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302448.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302449 float: left;
2450 display: block;
2451 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302452 font-size: 20px;
2453 font-weight: 200;
2454 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302455 color: #ffffff;
2456}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302457.navbar .navbar-text {
2458 margin-bottom: 0;
2459 line-height: 40px;
2460 color: #999999;
2461}
2462.navbar .navbar-text a:hover {
2463 color: #ffffff;
2464 background-color: transparent;
2465}
2466.navbar .btn, .navbar .btn-group {
2467 margin-top: 5px;
2468}
2469.navbar .btn-group .btn {
2470 margin-top: 0;
2471}
2472.navbar-form {
2473 margin-bottom: 0;
2474 *zoom: 1;
2475}
2476.navbar-form:before, .navbar-form:after {
2477 display: table;
2478 content: "";
2479}
2480.navbar-form:after {
2481 clear: both;
2482}
2483.navbar-form input, .navbar-form select {
2484 display: inline-block;
2485 margin-top: 5px;
2486 margin-bottom: 0;
2487}
2488.navbar-form .radio, .navbar-form .checkbox {
2489 margin-top: 5px;
2490}
2491.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2492 margin-top: 3px;
2493}
2494.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302495 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302496 float: left;
2497 margin-top: 6px;
2498 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302499}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302500.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302501 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302502 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2503 font-size: 13px;
2504 font-weight: normal;
2505 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302506 color: #ffffff;
2507 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302508 background: #666;
2509 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302510 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302511 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2512 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2513 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 +05302514 -webkit-transition: none;
2515 -moz-transition: none;
2516 -ms-transition: none;
2517 -o-transition: none;
2518 transition: none;
2519}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302520.navbar-search .search-query :-moz-placeholder {
2521 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302522}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302523.navbar-search .search-query::-webkit-input-placeholder {
2524 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302525}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302526.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302527 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302528 background-color: #999999;
2529 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302530}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302531.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302532 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302533 color: #333333;
2534 text-shadow: 0 1px 0 #ffffff;
2535 background-color: #ffffff;
2536 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302537 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2538 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2539 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302540 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302541}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302542.navbar-fixed-top {
2543 position: fixed;
2544 top: 0;
2545 right: 0;
2546 left: 0;
2547 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302548}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302549.navbar-fixed-top .navbar-inner {
2550 padding-left: 0;
2551 padding-right: 0;
2552 -webkit-border-radius: 0;
2553 -moz-border-radius: 0;
2554 border-radius: 0;
2555}
2556.navbar .nav {
2557 position: relative;
2558 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302559 display: block;
2560 float: left;
2561 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302562}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302563.navbar .nav.pull-right {
2564 float: right;
2565}
2566.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302567 display: block;
2568 float: left;
2569}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302570.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302571 float: none;
2572 padding: 10px 10px 11px;
2573 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302574 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302575 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302576 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302577}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302578.navbar .nav > li > a:hover {
2579 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302580 color: #ffffff;
2581 text-decoration: none;
2582}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302583.navbar .nav .active > a, .navbar .nav .active > a:hover {
2584 color: #ffffff;
2585 text-decoration: none;
2586 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302587 background-color: rgba(0, 0, 0, 0.5);
2588}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302589.navbar .divider-vertical {
2590 height: 40px;
2591 width: 1px;
2592 margin: 0 9px;
2593 overflow: hidden;
2594 background-color: #222222;
2595 border-right: 1px solid #333333;
2596}
2597.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302598 margin-left: 10px;
2599 margin-right: 0;
2600}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302601.navbar .dropdown-menu {
2602 margin-top: 1px;
2603 -webkit-border-radius: 4px;
2604 -moz-border-radius: 4px;
2605 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302606}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302607.navbar .dropdown-menu:before {
2608 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302609 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302610 border-left: 7px solid transparent;
2611 border-right: 7px solid transparent;
2612 border-bottom: 7px solid #ccc;
2613 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302614 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302615 top: -7px;
2616 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302617}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302618.navbar .dropdown-menu:after {
2619 content: '';
2620 display: inline-block;
2621 border-left: 6px solid transparent;
2622 border-right: 6px solid transparent;
2623 border-bottom: 6px solid #ffffff;
2624 position: absolute;
2625 top: -6px;
2626 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302627}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302628.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2629 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302630}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302631.navbar .nav .active .caret {
2632 opacity: 1;
2633 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302634}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302635.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2636 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302637}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302638.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302639 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302640}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302641.navbar .nav.pull-right .dropdown-menu {
2642 left: auto;
2643 right: 0;
2644}
2645.navbar .nav.pull-right .dropdown-menu:before {
2646 left: auto;
2647 right: 12px;
2648}
2649.navbar .nav.pull-right .dropdown-menu:after {
2650 left: auto;
2651 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302652}
2653
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302654/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302655.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302656 display: block;
2657 float: right;
2658 width: 20px;
2659 margin-bottom: -5px;
2660 margin-top: 10px;
2661 visibility: hidden;
2662}
2663
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302664.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302665 padding: 0px 20px;
2666}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302667
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302668
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302669/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302670 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302671 */
2672.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302673 position: relative;
2674}
2675.dropdown-toggle {
2676 *margin-bottom: -3px;
2677}
2678.dropdown-toggle:active, .open .dropdown-toggle {
2679 outline: 0;
2680}
2681.caret {
2682 display: inline-block;
2683 width: 0;
2684 height: 0;
2685 text-indent: -99999px;
2686 *text-indent: 0;
2687 vertical-align: top;
2688 border-left: 4px solid transparent;
2689 border-right: 4px solid transparent;
2690 border-top: 4px solid #000000;
2691 opacity: 0.3;
2692 filter: alpha(opacity=30);
2693 content: "\2193";
2694}
2695.dropdown .caret {
2696 margin-top: 8px;
2697 margin-left: 2px;
2698}
2699.dropdown:hover .caret, .open.dropdown .caret {
2700 opacity: 1;
2701 filter: alpha(opacity=100);
2702}
2703.dropdown-menu {
2704 position: absolute;
2705 top: 100%;
2706 left: 0;
2707 z-index: 1000;
2708 float: left;
2709 display: none;
2710 min-width: 160px;
2711 max-width: 220px;
2712 _width: 160px;
2713 padding: 4px 0;
2714 margin: 0;
2715 list-style: none;
2716 background-color: #ffffff;
2717 border-color: #ccc;
2718 border-color: rgba(0, 0, 0, 0.2);
2719 border-style: solid;
2720 border-width: 1px;
2721 -webkit-border-radius: 0 0 5px 5px;
2722 -moz-border-radius: 0 0 5px 5px;
2723 border-radius: 0 0 5px 5px;
2724 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2725 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2726 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2727 -webkit-background-clip: padding-box;
2728 -moz-background-clip: padding;
2729 background-clip: padding-box;
2730 *border-right-width: 2px;
2731 *border-bottom-width: 2px;
2732}
2733.dropdown-menu.bottom-up {
2734 top: auto;
2735 bottom: 100%;
2736 margin-bottom: 2px;
2737}
2738.dropdown-menu .divider {
2739 height: 1px;
2740 margin: 5px 1px;
2741 overflow: hidden;
2742 background-color: #e5e5e5;
2743 border-bottom: 1px solid #ffffff;
2744 *width: 100%;
2745 *margin: -5px 0 5px;
2746}
2747.dropdown-menu a {
2748 display: block;
2749 padding: 3px 15px;
2750 clear: both;
2751 font-weight: normal;
2752 line-height: 18px;
2753 color: #555555;
2754 white-space: nowrap;
2755}
2756.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2757 color: #ffffff;
2758 text-decoration: none;
2759 background-color: #0088cc;
2760}
2761.dropdown.open {
2762 *z-index: 1000;
2763}
2764.dropdown.open .dropdown-toggle {
2765 color: #ffffff;
2766 background: #ccc;
2767 background: rgba(0, 0, 0, 0.3);
2768}
2769.dropdown.open .dropdown-menu {
2770 display: block;
2771}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302772
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302773/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302774 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302775 */
2776.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05302777 position: absolute;
2778 z-index: 1020;
2779 display: block;
2780 visibility: visible;
2781 padding: 5px;
2782 font-size: 11px;
2783 opacity: 0;
2784 filter: alpha(opacity=0);
2785}
2786.tooltip.in {
2787 opacity: 0.8;
2788 filter: alpha(opacity=80);
2789}
2790.tooltip.top {
2791 margin-top: -2px;
2792}
2793.tooltip.right {
2794 margin-left: 2px;
2795}
2796.tooltip.bottom {
2797 margin-top: 2px;
2798}
2799.tooltip.left {
2800 margin-left: -2px;
2801}
2802.tooltip.top .tooltip-arrow {
2803 bottom: 0;
2804 left: 50%;
2805 margin-left: -5px;
2806 border-left: 5px solid transparent;
2807 border-right: 5px solid transparent;
2808 border-top: 5px solid #000000;
2809}
2810.tooltip.left .tooltip-arrow {
2811 top: 50%;
2812 right: 0;
2813 margin-top: -5px;
2814 border-top: 5px solid transparent;
2815 border-bottom: 5px solid transparent;
2816 border-left: 5px solid #000000;
2817}
2818.tooltip.bottom .tooltip-arrow {
2819 top: 0;
2820 left: 50%;
2821 margin-left: -5px;
2822 border-left: 5px solid transparent;
2823 border-right: 5px solid transparent;
2824 border-bottom: 5px solid #000000;
2825}
2826.tooltip.right .tooltip-arrow {
2827 top: 50%;
2828 left: 0;
2829 margin-top: -5px;
2830 border-top: 5px solid transparent;
2831 border-bottom: 5px solid transparent;
2832 border-right: 5px solid #000000;
2833}
2834.tooltip-inner {
2835 max-width: 200px;
2836 padding: 3px 8px;
2837 color: #ffffff;
2838 text-align: center;
2839 text-decoration: none;
2840 background-color: #000000;
2841 -webkit-border-radius: 4px;
2842 -moz-border-radius: 4px;
2843 border-radius: 4px;
2844}
2845.tooltip-arrow {
2846 position: absolute;
2847 width: 0;
2848 height: 0;
2849}
2850.popover {
2851 position: absolute;
2852 top: 0;
2853 left: 0;
2854 z-index: 1010;
2855 display: none;
2856 padding: 5px;
2857}
2858.popover.top {
2859 margin-top: -5px;
2860}
2861.popover.right {
2862 margin-left: 5px;
2863}
2864.popover.bottom {
2865 margin-top: 5px;
2866}
2867.popover.left {
2868 margin-left: -5px;
2869}
2870.popover.top .arrow {
2871 bottom: 0;
2872 left: 50%;
2873 margin-left: -5px;
2874 border-left: 5px solid transparent;
2875 border-right: 5px solid transparent;
2876 border-top: 5px solid #000000;
2877}
2878.popover.right .arrow {
2879 top: 50%;
2880 left: 0;
2881 margin-top: -5px;
2882 border-top: 5px solid transparent;
2883 border-bottom: 5px solid transparent;
2884 border-right: 5px solid #000000;
2885}
2886.popover.bottom .arrow {
2887 top: 0;
2888 left: 50%;
2889 margin-left: -5px;
2890 border-left: 5px solid transparent;
2891 border-right: 5px solid transparent;
2892 border-bottom: 5px solid #000000;
2893}
2894.popover.left .arrow {
2895 top: 50%;
2896 right: 0;
2897 margin-top: -5px;
2898 border-top: 5px solid transparent;
2899 border-bottom: 5px solid transparent;
2900 border-left: 5px solid #000000;
2901}
2902.popover .arrow {
2903 position: absolute;
2904 width: 0;
2905 height: 0;
2906}
2907.popover-inner {
2908 padding: 3px;
2909 width: 280px;
2910 overflow: hidden;
2911 background: #000000;
2912 background: rgba(0, 0, 0, 0.8);
2913 -webkit-border-radius: 6px;
2914 -moz-border-radius: 6px;
2915 border-radius: 6px;
2916 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2917 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2918 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2919}
2920.popover-title {
2921 padding: 9px 15px;
2922 line-height: 1;
2923 background-color: #f5f5f5;
2924 border-bottom: 1px solid #eee;
2925 -webkit-border-radius: 3px 3px 0 0;
2926 -moz-border-radius: 3px 3px 0 0;
2927 border-radius: 3px 3px 0 0;
2928}
2929.popover-content {
2930 padding: 14px;
2931 background-color: #ffffff;
2932 -webkit-border-radius: 0 0 3px 3px;
2933 -moz-border-radius: 0 0 3px 3px;
2934 border-radius: 0 0 3px 3px;
2935 -webkit-background-clip: padding-box;
2936 -moz-background-clip: padding-box;
2937 background-clip: padding-box;
2938}
2939.popover-content p, .popover-content ul, .popover-content ol {
2940 margin-bottom: 0;
2941}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302942
Rushabh Mehtad0251332012-02-21 17:26:50 +05302943/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302944 * lib/css/bootstrap/label.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302945 */
2946.label {
Rushabh Mehta2886b952012-02-24 11:26:31 +05302947 padding: 2px 4px 3px;
2948 font-size: 11.049999999999999px;
2949 font-weight: bold;
2950 color: #ffffff;
2951 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2952 background-color: #999999;
2953 -webkit-border-radius: 3px;
2954 -moz-border-radius: 3px;
2955 border-radius: 3px;
2956}
2957.label:hover {
2958 color: #ffffff;
2959 text-decoration: none;
2960}
2961.label-important {
2962 background-color: #b94a48;
2963}
2964.label-important:hover {
2965 background-color: #953b39;
2966}
2967.label-warning {
2968 background-color: #f89406;
2969}
2970.label-warning:hover {
2971 background-color: #c67605;
2972}
2973.label-success {
2974 background-color: #468847;
2975}
2976.label-success:hover {
2977 background-color: #356635;
2978}
2979.label-info {
2980 background-color: #3a87ad;
2981}
2982.label-info:hover {
2983 background-color: #2d6987;
2984}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302985
Rushabh Mehta2886b952012-02-24 11:26:31 +05302986/*
2987 * lib/css/bootstrap/icons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302988 */
2989[class^="icon-"], [class*=" icon-"] {
Rushabh Mehta2886b952012-02-24 11:26:31 +05302990 display: inline-block;
2991 width: 14px;
2992 height: 14px;
2993 line-height: 14px;
2994 vertical-align: text-top;
2995 background-image: url("../lib/images/icons/glyphicons-halflings.png");
2996 background-position: 14px 14px;
2997 background-repeat: no-repeat;
2998 *margin-right: .3em;
2999}
3000[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
3001 *margin-left: 0;
3002}
3003.icon-white {
3004 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
3005}
3006.icon-glass {
3007 background-position: 0 0;
3008}
3009.icon-music {
3010 background-position: -24px 0;
3011}
3012.icon-search {
3013 background-position: -48px 0;
3014}
3015.icon-envelope {
3016 background-position: -72px 0;
3017}
3018.icon-heart {
3019 background-position: -96px 0;
3020}
3021.icon-star {
3022 background-position: -120px 0;
3023}
3024.icon-star-empty {
3025 background-position: -144px 0;
3026}
3027.icon-user {
3028 background-position: -168px 0;
3029}
3030.icon-film {
3031 background-position: -192px 0;
3032}
3033.icon-th-large {
3034 background-position: -216px 0;
3035}
3036.icon-th {
3037 background-position: -240px 0;
3038}
3039.icon-th-list {
3040 background-position: -264px 0;
3041}
3042.icon-ok {
3043 background-position: -288px 0;
3044}
3045.icon-remove {
3046 background-position: -312px 0;
3047}
3048.icon-zoom-in {
3049 background-position: -336px 0;
3050}
3051.icon-zoom-out {
3052 background-position: -360px 0;
3053}
3054.icon-off {
3055 background-position: -384px 0;
3056}
3057.icon-signal {
3058 background-position: -408px 0;
3059}
3060.icon-cog {
3061 background-position: -432px 0;
3062}
3063.icon-trash {
3064 background-position: -456px 0;
3065}
3066.icon-home {
3067 background-position: 0 -24px;
3068}
3069.icon-file {
3070 background-position: -24px -24px;
3071}
3072.icon-time {
3073 background-position: -48px -24px;
3074}
3075.icon-road {
3076 background-position: -72px -24px;
3077}
3078.icon-download-alt {
3079 background-position: -96px -24px;
3080}
3081.icon-download {
3082 background-position: -120px -24px;
3083}
3084.icon-upload {
3085 background-position: -144px -24px;
3086}
3087.icon-inbox {
3088 background-position: -168px -24px;
3089}
3090.icon-play-circle {
3091 background-position: -192px -24px;
3092}
3093.icon-repeat {
3094 background-position: -216px -24px;
3095}
3096.icon-refresh {
3097 background-position: -240px -24px;
3098}
3099.icon-list-alt {
3100 background-position: -264px -24px;
3101}
3102.icon-lock {
3103 background-position: -287px -24px;
3104}
3105.icon-flag {
3106 background-position: -312px -24px;
3107}
3108.icon-headphones {
3109 background-position: -336px -24px;
3110}
3111.icon-volume-off {
3112 background-position: -360px -24px;
3113}
3114.icon-volume-down {
3115 background-position: -384px -24px;
3116}
3117.icon-volume-up {
3118 background-position: -408px -24px;
3119}
3120.icon-qrcode {
3121 background-position: -432px -24px;
3122}
3123.icon-barcode {
3124 background-position: -456px -24px;
3125}
3126.icon-tag {
3127 background-position: 0 -48px;
3128}
3129.icon-tags {
3130 background-position: -25px -48px;
3131}
3132.icon-book {
3133 background-position: -48px -48px;
3134}
3135.icon-bookmark {
3136 background-position: -72px -48px;
3137}
3138.icon-print {
3139 background-position: -96px -48px;
3140}
3141.icon-camera {
3142 background-position: -120px -48px;
3143}
3144.icon-font {
3145 background-position: -144px -48px;
3146}
3147.icon-bold {
3148 background-position: -167px -48px;
3149}
3150.icon-italic {
3151 background-position: -192px -48px;
3152}
3153.icon-text-height {
3154 background-position: -216px -48px;
3155}
3156.icon-text-width {
3157 background-position: -240px -48px;
3158}
3159.icon-align-left {
3160 background-position: -264px -48px;
3161}
3162.icon-align-center {
3163 background-position: -288px -48px;
3164}
3165.icon-align-right {
3166 background-position: -312px -48px;
3167}
3168.icon-align-justify {
3169 background-position: -336px -48px;
3170}
3171.icon-list {
3172 background-position: -360px -48px;
3173}
3174.icon-indent-left {
3175 background-position: -384px -48px;
3176}
3177.icon-indent-right {
3178 background-position: -408px -48px;
3179}
3180.icon-facetime-video {
3181 background-position: -432px -48px;
3182}
3183.icon-picture {
3184 background-position: -456px -48px;
3185}
3186.icon-pencil {
3187 background-position: 0 -72px;
3188}
3189.icon-map-marker {
3190 background-position: -24px -72px;
3191}
3192.icon-adjust {
3193 background-position: -48px -72px;
3194}
3195.icon-tint {
3196 background-position: -72px -72px;
3197}
3198.icon-edit {
3199 background-position: -96px -72px;
3200}
3201.icon-share {
3202 background-position: -120px -72px;
3203}
3204.icon-check {
3205 background-position: -144px -72px;
3206}
3207.icon-move {
3208 background-position: -168px -72px;
3209}
3210.icon-step-backward {
3211 background-position: -192px -72px;
3212}
3213.icon-fast-backward {
3214 background-position: -216px -72px;
3215}
3216.icon-backward {
3217 background-position: -240px -72px;
3218}
3219.icon-play {
3220 background-position: -264px -72px;
3221}
3222.icon-pause {
3223 background-position: -288px -72px;
3224}
3225.icon-stop {
3226 background-position: -312px -72px;
3227}
3228.icon-forward {
3229 background-position: -336px -72px;
3230}
3231.icon-fast-forward {
3232 background-position: -360px -72px;
3233}
3234.icon-step-forward {
3235 background-position: -384px -72px;
3236}
3237.icon-eject {
3238 background-position: -408px -72px;
3239}
3240.icon-chevron-left {
3241 background-position: -432px -72px;
3242}
3243.icon-chevron-right {
3244 background-position: -456px -72px;
3245}
3246.icon-plus-sign {
3247 background-position: 0 -96px;
3248}
3249.icon-minus-sign {
3250 background-position: -24px -96px;
3251}
3252.icon-remove-sign {
3253 background-position: -48px -96px;
3254}
3255.icon-ok-sign {
3256 background-position: -72px -96px;
3257}
3258.icon-question-sign {
3259 background-position: -96px -96px;
3260}
3261.icon-info-sign {
3262 background-position: -120px -96px;
3263}
3264.icon-screenshot {
3265 background-position: -144px -96px;
3266}
3267.icon-remove-circle {
3268 background-position: -168px -96px;
3269}
3270.icon-ok-circle {
3271 background-position: -192px -96px;
3272}
3273.icon-ban-circle {
3274 background-position: -216px -96px;
3275}
3276.icon-arrow-left {
3277 background-position: -240px -96px;
3278}
3279.icon-arrow-right {
3280 background-position: -264px -96px;
3281}
3282.icon-arrow-up {
3283 background-position: -289px -96px;
3284}
3285.icon-arrow-down {
3286 background-position: -312px -96px;
3287}
3288.icon-share-alt {
3289 background-position: -336px -96px;
3290}
3291.icon-resize-full {
3292 background-position: -360px -96px;
3293}
3294.icon-resize-small {
3295 background-position: -384px -96px;
3296}
3297.icon-plus {
3298 background-position: -408px -96px;
3299}
3300.icon-minus {
3301 background-position: -433px -96px;
3302}
3303.icon-asterisk {
3304 background-position: -456px -96px;
3305}
3306.icon-exclamation-sign {
3307 background-position: 0 -120px;
3308}
3309.icon-gift {
3310 background-position: -24px -120px;
3311}
3312.icon-leaf {
3313 background-position: -48px -120px;
3314}
3315.icon-fire {
3316 background-position: -72px -120px;
3317}
3318.icon-eye-open {
3319 background-position: -96px -120px;
3320}
3321.icon-eye-close {
3322 background-position: -120px -120px;
3323}
3324.icon-warning-sign {
3325 background-position: -144px -120px;
3326}
3327.icon-plane {
3328 background-position: -168px -120px;
3329}
3330.icon-calendar {
3331 background-position: -192px -120px;
3332}
3333.icon-random {
3334 background-position: -216px -120px;
3335}
3336.icon-comment {
3337 background-position: -240px -120px;
3338}
3339.icon-magnet {
3340 background-position: -264px -120px;
3341}
3342.icon-chevron-up {
3343 background-position: -288px -120px;
3344}
3345.icon-chevron-down {
3346 background-position: -313px -119px;
3347}
3348.icon-retweet {
3349 background-position: -336px -120px;
3350}
3351.icon-shopping-cart {
3352 background-position: -360px -120px;
3353}
3354.icon-folder-close {
3355 background-position: -384px -120px;
3356}
3357.icon-folder-open {
3358 background-position: -408px -120px;
3359}
3360.icon-resize-vertical {
3361 background-position: -432px -119px;
3362}
3363.icon-resize-horizontal {
3364 background-position: -456px -118px;
3365}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303366
Rushabh Mehta2886b952012-02-24 11:26:31 +05303367/*
Rushabh Mehtad48417c2012-03-19 18:42:13 +05303368 * lib/css/bootstrap/popover.css
3369 */
3370.popover {
3371 position: absolute;
3372 top: 0;
3373 left: 0;
3374 z-index: 1010;
3375 display: none;
3376 padding: 5px;
3377}
3378.popover.top {
3379 margin-top: -5px;
3380}
3381.popover.right {
3382 margin-left: 5px;
3383}
3384.popover.bottom {
3385 margin-top: 5px;
3386}
3387.popover.left {
3388 margin-left: -5px;
3389}
3390.popover.top .arrow {
3391 bottom: 0;
3392 left: 50%;
3393 margin-left: -5px;
3394 border-left: 5px solid transparent;
3395 border-right: 5px solid transparent;
3396 border-top: 5px solid #000000;
3397}
3398.popover.right .arrow {
3399 top: 50%;
3400 left: 0;
3401 margin-top: -5px;
3402 border-top: 5px solid transparent;
3403 border-bottom: 5px solid transparent;
3404 border-right: 5px solid #000000;
3405}
3406.popover.bottom .arrow {
3407 top: 0;
3408 left: 50%;
3409 margin-left: -5px;
3410 border-left: 5px solid transparent;
3411 border-right: 5px solid transparent;
3412 border-bottom: 5px solid #000000;
3413}
3414.popover.left .arrow {
3415 top: 50%;
3416 right: 0;
3417 margin-top: -5px;
3418 border-top: 5px solid transparent;
3419 border-bottom: 5px solid transparent;
3420 border-left: 5px solid #000000;
3421}
3422.popover .arrow {
3423 position: absolute;
3424 width: 0;
3425 height: 0;
3426}
3427.popover-inner {
3428 padding: 3px;
3429 width: 280px;
3430 overflow: hidden;
3431 background: #000000;
3432 background: rgba(0, 0, 0, 0.8);
3433 -webkit-border-radius: 6px;
3434 -moz-border-radius: 6px;
3435 border-radius: 6px;
3436 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3437 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3438 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3439}
3440.popover-title {
3441 padding: 9px 15px;
3442 line-height: 1;
3443 background-color: #f5f5f5;
3444 border-bottom: 1px solid #eee;
3445 -webkit-border-radius: 3px 3px 0 0;
3446 -moz-border-radius: 3px 3px 0 0;
3447 border-radius: 3px 3px 0 0;
3448}
3449.popover-content {
3450 padding: 14px;
3451 background-color: #ffffff;
3452 -webkit-border-radius: 0 0 3px 3px;
3453 -moz-border-radius: 0 0 3px 3px;
3454 border-radius: 0 0 3px 3px;
3455 -webkit-background-clip: padding-box;
3456 -moz-background-clip: padding-box;
3457 background-clip: padding-box;
3458}
3459.popover-content p, .popover-content ul, .popover-content ol {
3460 margin-bottom: 0;
3461}
3462
3463/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303464 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303465 */
3466h1, h2, h3, h4, h5 {
Rushabh Mehta983a1712012-03-21 13:35:34 +05303467 font-family: "Lato", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303468 font-weight: bold;
3469}
3470
3471body {
Rushabh Mehta983a1712012-03-21 13:35:34 +05303472 font-family: "Lato", Helvetica, "Helvetica Neue", sans-serif;
3473 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303474}
3475
3476span, div, td, input, textarea, button, select {
3477 font-family: inherit;
3478}
3479
3480body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05303481 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303482}
3483
Rushabh Mehta983a1712012-03-21 13:35:34 +05303484.small {
3485 font-size: 11.5px;
3486}
3487
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303488.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303489 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303490 text-align: center;
3491}
3492
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303493.module-icons {
3494 background: url(../images/module-icons.png) no-repeat top left;
3495 width:16px;
3496 height:16px;
3497}
3498
3499.module-icons-accounts{ background-position: 0 0; }
3500.module-icons-analysis{ background-position: 0 -66px; }
3501.module-icons-buying{ background-position: 0 -132px; }
3502.module-icons-home{ background-position: 0 -198px; }
3503.module-icons-hr{ background-position: 0 -264px; }
3504.module-icons-people{ background-position: 0 -330px; }
3505.module-icons-production{ background-position: 0 -396px; }
3506.module-icons-projects{ background-position: 0 -462px; }
3507.module-icons-selling{ background-position: 0 -528px; }
3508.module-icons-setup{ background-position: 0 -594px; }
3509.module-icons-stock{ background-position: 0 -660px; }
Anand Doshic3023be2012-02-20 16:31:55 +05303510.module-icons-support{ background-position: 0 -726px; }
3511
Anand Doshidb628762012-02-24 17:56:00 +05303512.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303513 margin: -3px 0px;
3514 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303515 min-width: 20px;
3516 text-align: center;
3517 display: inline-block;
3518 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303519 color: #999999;
3520 background-color: #333131;
3521}
3522
3523.navbar-new-comments:hover,
3524.navbar-new-comments:active,
3525.navbar-new-comments:focus {
3526 color: #fff;
3527}
3528
3529
3530.navbar-new-comments-true {
3531 color: #fff;
3532 background-color: #B00D07;
3533}
3534
3535.navbar-icon-home {
3536 vertical-align: middle;
3537 opacity:0.4;
3538 Filter:alpha(opacity=40); /* For IE8 and earlier */
3539}
3540
3541.navbar-icon-home:hover,
3542.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05303543.navbar-icon-home:active,
3544.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303545 opacity:1;
3546 Filter:alpha(opacity=100); /* For IE8 and earlier */
3547}
3548
3549/*extra size menus for recent*/
3550.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3551 min-width: 160px !important;
3552 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303553}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303554