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