blob: b64db5c122b7a1dc3d20e5537cc301510d648ce9 [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 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530112 margin-bottom: 3px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530113 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 Mehtaf7f7f632012-04-11 15:18:24 +0530199 -webkit-border-radius: 5px;
200 -moz-border-radius: 5px;
201 border-radius: 5px;
202 margin-bottom: 30px;
203 overflow: hidden;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530204}
205
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530206.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530207 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530208 padding: 0px;
209}
210
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530211.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530212 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530213 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530214 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530215 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530216 min-height: 600px;
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530217 -moz-box-shadow: 4px 0px 3px #ddd;
218 -webkit-box-shadow: 4px 0px 3px #ddd;
219 box-shadow: 4px 0px 3px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530220}
221
222.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530223 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530224 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530225 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530226 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530227 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530228 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530229}
230
231/* from bootstrap */
232.container {
233 margin-left: auto;
234 margin-right: auto;
235 zoom: 1;
236}
237.container:before, .container:after {
238 display: table;
239 content: "";
240 zoom: 1;
241}
242.container:after {
243 clear: both;
244}
245
Anand Doshi40ee8d62012-02-24 19:21:47 +0530246.well {
247 min-height: 20px;
248 padding: 19px;
249 margin-bottom: 20px;
250 background-color: #f5f5f5;
251 border: 1px solid #eee;
252 border: 1px solid rgba(0, 0, 0, 0.05);
253 -webkit-border-radius: 4px;
254 -moz-border-radius: 4px;
255 border-radius: 4px;
256 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
257 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
258 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
259}
260
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530261.avatar-small {
262 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530263 width: 24px;
264 height: 20px;
265 vertical-align: middle;
266 overflow: hidden;
267 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530268}
269.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530270 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530271}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530272
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530273/*
274 * lib/css/legacy/messages.css
275 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530276
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530277/* FLOATING MESSAGE */
278
279.btn-img { cursor: pointer; }
280
281div.fetching { color: #888; text-align:right; }
282
283div.notice {
284 postion: absolute;
285 background-color: #000;
286 -moz-border-radius: 5px; -webkit-border-radius: 5px;
287 opacity: 0.6;
288 right: 0;
289 top: 0;
290 margin-top: 8px;
291 z-index: -1;
292 padding: 8px;
293}
294
295/** help **/
296
297.info-box {
298 background-color: #F8F8F8;
299 border: 1px solid #CCCCCC;
300 border-radius: 3px 3px 3px 3px;
301 line-height: 1.6em;
302 overflow: auto;
303 padding: 6px 10px;
304 margin-bottom: 9px;
305}
306
307.help_box, .help-box {
308 background-color:#FFC;
309 font-size: 13px;
310 color: #864;
311 padding: 7px;
312 margin: 11px 0px;
313 border: 1px solid #EEB;
314}
315
316.help_box_big {
317 background-color:#FFC;
318 color: #864;
319 padding: 7px;
320 margin: 7px 0px;
321 border: 1px solid #EEB;
322 text-align: center;
323 font-size: 14px;
324}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530325
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530326/*
327 * lib/css/legacy/forms.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530328 */
329/* FORMS */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530330
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530331div.form-section-head {
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530332 margin: 11px -15px 3px -15px;
Rushabh Mehta38474e22012-03-13 16:11:52 +0530333 border-top: 1px solid #ccc;
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530334 padding: 11px 15px 0px 15px;
Rushabh Mehta38474e22012-03-13 16:11:52 +0530335}
336
337div.form-layout-row:first-child .form-section-head {
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530338 border-top: 0px solid #ccc !important;
339 margin-top: 0px;
340 padding-top: 0px;
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530341}
342
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530343div.form-section-head h3 {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530344 line-height: 20px;
345}
346
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530347div.form-section-head hr {
Rushabh Mehtab9878d02012-03-12 16:12:09 +0530348 margin: 9px 0px;
349}
350
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530351
352div.frm_print_wrapper {
353 background-color:#FFF;
354 border:1px solid #444;
355 padding: 40px;
356
357 box-shadow:1px 1px 8px #229;
358 -moz-box-shadow: 1px 1px 8px #229;
359 -webkit-box-shadow: 1px 1px 8px #229;
360}
361
362div.page_break {
363 margin: 24px 0px;
364 border-top: 1px dashed #888;
365}
366
367div.grid_tbarlinks {
368 border-bottom: 0px;
369 background-color: #CCC;
370 padding: 4px 4px 2px 4px;
Rushabh Mehtaa2713f82012-02-17 14:04:55 +0530371 width: 190px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530372 float: right;
373
374 -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
375 -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
376}
377
378
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530379div.dialog_frm {
380 position: relative;
381 margin: 10px;
382}
383
384
385
386/*------------------*/
387
388.top_cell {
389 height: 50px;
390}
391
392div.attach_area {
393 padding: 8px;
394 margin: 8px;
395 background-color: #EEE;
396}
397
398div.attach_area table {
399 width: 100%;
400}
401
402.tablabel_normal {
403 margin: 0 4px 0 0;
404 padding: 3px 5px;
405 line-height: 1.3em;
406 display: inline;
407 cursor: pointer;
408}
409
410.tablabel_selected {
411 margin: 0 4px 0 0;
412 padding: 3px 5px;
413 line-height: 1.3em;
414 font-weight: bold;
415 display: inline;
416 cursor: pointer;
417 color: #000;
418}
419
420.scrollhead_wrapper {
421 position: absolute;
422 z-index: 1;
423 height: 30px;
424}
425
426.treeimg {
427 cursor: pointer;
428 margin-right: 3px;
429}
430
431
432.sectionCell {
433 padding: 5px;
434 vertical-align: top;
435}
436
437.code_area {
438 width: 80%;
439 margin: 8px;
440 padding: 4px;
441 background-color: #F8F8F8;
442 border: 1px solid #CCC;
443 overflow-x: auto;
444}
445
446.code_text {
447 width: 100%;
448 height: 360px;
449 margin-top: 3px;
450 font-family: Courier, Fixed;
451 font-size: 12px;
452}
453
454div.time_field select{
455 display: inline;
456 margin: 2px;
457 width: 45px;
458}
459
460/* Documents */
461
462.frm_field_table {
463 width: 100%;
464 border-collapse: collapse;
465}
466
467.datalabelcell {
468 padding: 2px 0px;
469 width: 160px;
470 vertical-align: top;
471}
472.datainputcell { padding: 2px 0px; }
473
474
Rushabh Mehta052b7e42012-03-13 15:19:06 +0530475.help ol {
476 padding-left: 19px;
477}
478
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530479.field_description_top {
480 margin-bottom: 3px;
481}
482
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530483.input_area input, select, textarea {
484 font-size: 14px;
485 padding: 2px;
486}
487
488.input_area input {
489 width: 80%;
490 margin: 0px;
491}
492.input_area select {
493 width: 80%;
494}
495.input_area textarea {
496 width: 90%;
497}
498
499.disp_area {
500 width: 80%;
501 padding: 2px 0px;
502 font-size: 12px;
503}
504.disp_area_no_val {
505 height: 14px;
506}
507
508.no_img {
509 padding: 40px;
510 width: 100px;
511 height: 20px;
512 color: #888;
513 text-align: center;
514 border: 1px solid #AAA;
515}
516
517.input-mandatory {
518 font-size: 14px !important;
519 font-weight: bold;
520}
521
522.field-to-update {
523 background-color:#FEE;
524}
525
526/* sidebar */
527
528div.sidebar-comment-wrapper input {
529 width: 50%;
530}
531div.sidebar-comment-message {
532 margin-top: 8px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530533 color: #777;
534}
535
536div.sidebar-comment-text {
537 font-size: 12px;
538 font-weight: bold;
539 margin-top: 8px;
540 color: #444;
541}
542div.sidebar-comment-info {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530543 color: #777;
544}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530545
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530546/*
547 * lib/css/legacy/grid.css
548 */
549
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530550
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530551/* Grid */
552
553
554/* --- Simple --- */
555.grid_wrapper_simple {
556 width: 100%;
557 margin-bottom: 8px;
558 border: 1px solid #AA9;
559}
560
561.grid_head_wrapper_simple {
562 padding: 0px;
563 border-bottom: 2px solid #AAA;
564}
565
566.grid_head_wrapper_simple td {
567 border-right: 1px solid #AA9;
568}
569
570.grid_head_wrapper_simple td div {
571 padding: 2px;
572}
573
574.grid_tab_wrapper_simple {
575}
576
577.grid_cell_simple {
578 padding: 2px;
579 background-color: #fff;
580 border-right: 1px solid #AA9;
581}
582
583
584/* --- Normal --- */
585.grid_wrapper {
586 position: relative;
587 overflow: auto;
588 border: 1px solid #AAA;
589 width: 100%;
590 margin-bottom: 8px;
591 background-color: #fff;
592}
593
594.grid_tab_wrapper {
595 position: absolute;
596 top: 40px;
597 border-bottom: 1px solid #DDD;
598}
599
600.grid_table, .grid_head_table {
601 table-layout: fixed;
602 border-collapse: collapse;
603 /*width: 100%;*/
604}
605
606.grid_cell {
607 border-right: 1px solid #ddd;
608 padding: 0px;
609 background-color: #fff;
610}
611
612.grid_head_wrapper {
613 position: absolute;
614 z-index: 1;
615 height: 40px;
616 padding: 0px;
617 overflow: hidden;
618 /*background-color: #fff;*/
619}
620
621.grid_head_table td {
622 background-color: #EEE;
623 border-right: 1px solid #AAA;
624 border-bottom: 1px solid #AAA;
625 height: 40px;
626 padding: 0px;
627}
628
629.grid_head_table td div {
630 color: #222;
631 font-weight: bold;
632 overflow: hidden;
633 padding: 2px 0px;
634 text-align: center;
635}
636
637.grid_selector {
638 padding: 1px;
639 border-right: 1px solid #DDD;
640 width: 20px;
641 background-color: #fff;
642}
643
644.grid_cell_div {
645 padding: 2px;
646 cursor: pointer;
647 overflow: hidden;
648 border: 2px solid #FFF;
649}
650
651.grid_cell_div_selected {
652 border: 2px solid #88f;
653}
654
655.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
656 margin: 0px;
657 border: 0px;
658 width: 100%;
659 margin: 0px;
660 }
661
662.grid_cell_div textarea {
663 border: 3px solid #abf;
664 height:200px;
665 width: 300px;
666 z-index: 10;
667 position:absolute;
668}
669
670.gridDivSelected option { border: 0px; }
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530671
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530672/*
673 * lib/css/legacy/listing.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530674 */
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530675
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530676
677/* SRS */
678
679table.srs_result_tab {
680 border: 2px solid #AAA;
681 border-collapse: collapse;
682}
683
684/* firefox bug fix for disappering borders */
685table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
686 position: static;
687}
688
689table.srs_result_tab td {
690 padding: 3px 2px;
691 position: static;
692}
693
694div.srs_body_area {
695}
696
697div.srs_results_area {
698}
699
700div.srs_filter_wrapper {
701 border: 1px solid #CCF;
702
703 background-color: #EEF;
704 margin:0px 0px 8px 0px;
705
706 -moz-border-radius: 5px;
707 -webkit-border-radius: 5px;
708 border-radius: 5px;
709}
710
711div.srs_filter_area {
712 padding: 8px;
713}
714
715div.srs_filter_area td {
716 vertical-align: middle;
717}
718
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530719/*
720 * lib/css/legacy/report.css
721 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530722
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530723/* Reports */
724
725div.report_grid_area {
726 position: relative;
727 padding: 8px;
728}
729
730
731div.report_tab {
732 border: 1px solid #AAA;
733 position: relative;
734 overflow: auto;
735}
736
737div.report_no_data {
738 padding: 8px;
739 background-color: #EEE;
740 border: 1px solid #DDD;
741 position: absolute;
742 margin-left: 40%;
743 margin-top: 50px;
744 display: none;
745}
746
747div.report_htitle {
748 float: left;
749 padding: 2px;
750 font-size: 14px;
751 font-weight: bold;
752 margin-left: 4px;
753 color: #665;
754 /*font-weight: bold;*/
755}
756
757div.report_tbar {
758 background-color: #EEF;
759 border: 1px solid #CCF;
760 border-bottom: 0px;
761 height: 28px;
762}
763
764div.report_tbar table{
765 width: 100%;
766}
767div.report_tbar table td {
768
769}
770div.report_tbar table td div {
771 position: relative;
772}
773div.report_tbar button, div.report_tbar select, div.report_tbar img {
774 font-size: 11px;
775 margin: 0px;
776}
777
778div.report_head_wrapper {
779 position: absolute;
780 height: 24px;
781 top: 0px;
782 z-index: 1;
783}
784
785div.report_tab_wrapper {
786 position: absolute;
787 border-bottom: 1px solid #AAA;
788 border-top: 1px solid #AAA;
789}
790
791div.report_tab_wrapper table, div.report_head_wrapper table {
792 table-layout: fixed;
793 border-collapse: collapse;
794 /*width: 100%;*/
795}
796
797div.report_tab_wrapper table td, div.report_head_wrapper table td {
798 border-left: 1px solid #AAA;
799 border-right: 1px solid #AAA;
800 border-bottom: 1px solid #AAA;
801 overflow: hidden;
802 padding: 0px;
803}
804
805div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
806 padding: 3px;
807 overflow: hidden;
808}
809
810.report_head_cell {
811 background-color: #EEE;
812 border-bottom: 1px solid #AA9;
813 text-align: center;
814 font-weight: bold;
815}
816.report_head_cell div {
817 color:#222;
818 height: 18px;
819}
820
821
822/* FINDER */
823
824div.finder_wrapper {
825}
826
827div.finder_body_area {
828 margin: 16px;
829}
830
831div.finder_body {
832 display: none;
833}
834
835div.finder_advanced_area table {
836 width: 80%;
837}
838
839div.finder_advanced_area textarea {
840 width: 80%;
841}
842
843div.finder_filter_area {
844 position: relative;
845}
846
847div.filter_head {
848 font-size: 14px;
849 margin-bottom: 2px;
850}
851div.filter_dt_head {
852 font-size: 14px;
853 font-weight: bold;
854 margin-bottom: 2px;
855}
856table.filter_tab {
857 width: 96%;
858 border-collapse: collapse;
859}
860
861table.filter_tab td {
862 width: 50%;
863}
864
865div.finder_picker_area {
866
867}
868div.builder_field {
869 margin: 0px;
870}
871div.builder_dt_head {
872 font-size: 14px;
873 font-weight: bold;
874 margin-bottom: 2px;
875}
876
877div.builder_field table {
878 width: 90%;
879 border-collapse: collapse;
880}
881
882div.builder_label {
883 height: 20px;
884}
885
886div.builder_head {
887 font-size: 16px;
888 font-weight: bold;
889 color: #AB6;
890}
891
892table.builder_tab {
893 width: 96%;
894 border-collapse: collapse;
895}
896
897table.builder_tab td {
898 width: 33%;
899 padding: 2px;
900}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530901
902/*
903 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530904 */
905/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530906
907div.dialog_wrapper {
908 position: absolute;
909 width: 440px;
910 display: none;
911 z-index: 90;
912 background-color: #FFF;
913 border: 3px solid #222;
914 box-shadow:1px 1px 5px #777;
915 -moz-box-shadow: 1px 1px 5px #777;
916 -webkit-box-shadow: 1px 1px 5px #777;
917
918 border-radius: 5px;
919 -moz-border-radius: 5px;
920 -webkit-border-radius: 5px;
921}
922
923div.dialog_head {
924 height: 22px;
925 padding: 4px;
926 background-color: #222;
927 color: #FFF;
928}
929
930div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530931 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530932 border-radius: 5px;
933 -moz-border-radius: 5px;
934 -webkit-border-radius: 5px;
935}
936
937div.dialog_back {
938 position: fixed;
939 display: none;
940 top: 0px;
941 left: 0px;
942 bottom: 0px;
943 right: 0px;
944 background-color: #EEE;
945 opacity: 0.6;
946 z-index: 50;
947 text-align: center;
948}
949
950div.dialog_message {
951 display: none;
952 position: absolute;
953 width: 250px;
954 font-size: 12px;
955 z-index: 91;
956 background-color:#FFF;
957 padding: 12px;
958 border: 1px solid #444;
959}
960
961div.dialog_row {
962 padding: 8px 8px 0px 8px;
963}
964
965div.dialog_row table {
966 width: 100%;
967}
968
969div.dialog_row table td {
970}
971
972div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
973 width: 80%;
974 font-size: 14px;
975}
976
977div.dialog_row table td textarea {
978 width: 80%;
979 height: 200px;
980 font-size: 12px;
981}
982
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530983
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530984/*
985 * lib/css/legacy/tabs.css
986 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530987
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530988/******* TABS ********/
989
990div.box_label_wrapper {
991 border-bottom: 6px solid #777;
992}
993
994div.box_label_body {
995 height: 22px;
996}
997
998ul.box_tabs {
999 margin: 0px;
1000 padding: 0px;
1001 list-style: none;
1002}
1003
1004ul.box_tabs li {
1005 height: 22px;
1006 float:left;
1007 font-size: 12px;
1008 text-decoration: underline;
1009
1010 background-color: #DDD;
1011
1012 margin:0;
1013 margin-left: 4px;
1014 padding:0 0 0 9px;
1015 cursor: pointer;
1016}
1017
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301018ul.box_tabs li a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301019 display:block;
1020 padding:3px 15px 3px 6px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301021 text-decoration: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301022}
1023
1024ul.box_tabs li.box_tab_mouseover {
1025 background-color: #BBB;
1026}
1027
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301028ul.box_tabs li.box_tab_selected {
1029 background-color: #777;
1030
1031 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
1032 background: -moz-linear-gradient(top, #999, #777);
1033
1034 color: #FFF;
1035 font-weight:bold;
1036
1037}
1038ul.box_tabs li.box_tab_selected a {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301039 color: #fff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301040}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301041
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301042/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301043 * lib/css/legacy/sidebar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301044 */
1045div.psidebar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301046}
1047
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301048div.psidebar div.head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301049 font-size: 14px;
1050 font-weight: bold;
1051 color: #555;
1052 margin-bottom: 12px;
1053}
1054
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301055div.psidebar div.section {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301056 margin-bottom: 11px;
1057 overflow: hidden;
1058}
1059
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301060div.psidebar div.section-head {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301061 padding: 5px 11px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301062 border-bottom: 1px solid #aaa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301063}
1064
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301065div.psidebar div.section-body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301066 margin: 7px 11px 11px 11px;
1067}
1068
Rushabh Mehta09a897a2012-02-20 18:30:52 +05301069div.psidebar div.section-item {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301070 margin-bottom: 7px;
1071}
1072
Rushabh Mehtad0251332012-02-21 17:26:50 +05301073div.psidebar div.section-item, div.psidebar .section-link {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301074 color: #666;
1075}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301076
1077/*
1078 * lib/css/Aristo/aristo.selected.css
1079 */
1080/*
1081 * jQuery UI CSS Framework 1.8.7
1082 *
1083 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1084 * Dual licensed under the MIT or GPL Version 2 licenses.
1085 * http://jquery.org/license
1086 *
1087 * http://docs.jquery.com/UI/Theming/API
1088 */
1089
1090/* Layout helpers
1091----------------------------------*/
1092.ui-helper-hidden { display: none; }
1093.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
1094.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
1095.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
1096.ui-helper-clearfix { display: inline-block; }
1097/* required comment for clearfix to work in Opera \*/
1098* html .ui-helper-clearfix { height:1%; }
1099.ui-helper-clearfix { display:block; }
1100/* end clearfix */
1101.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
1102
1103
1104/* Interaction Cues
1105----------------------------------*/
1106.ui-state-disabled { cursor: default !important; }
1107
1108
1109/* Icons
1110----------------------------------*/
1111
1112/* states and images */
1113.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
1114
1115
1116/* Misc visuals
1117----------------------------------*/
1118
1119/* Overlays */
1120.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1121
1122
1123/*
1124 * jQuery UI CSS Framework 1.8.7
1125 *
1126 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1127 * Dual licensed under the MIT or GPL Version 2 licenses.
1128 * http://jquery.org/license
1129 *
1130 * http://docs.jquery.com/UI/Theming/API
1131 *
1132 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
1133 */
1134
1135
1136/* Component containers
1137----------------------------------*/
1138.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
1139.ui-widget .ui-widget { font-size: 1em; }
1140.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
1141.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
1142.ui-widget-content a { color: #4F4F4F; }
1143.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
1144.ui-widget-header {
1145 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1146 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1147 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1148 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1149 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1150 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1151 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1152}
1153.ui-widget-header a { color: #4F4F4F; }
1154
1155/* Interaction states
1156----------------------------------*/
1157.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
1158.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1159 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
1160 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
1161 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
1162 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
1163 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
1164 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
1165 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
1166 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1167 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1168 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
1169}
1170.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
1171.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; }
1172.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
1173.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
1174 outline: none;
1175 color: #1c4257; border: 1px solid #7096ab;
1176 background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
1177 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
1178 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
1179 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
1180 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
1181 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
1182 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
1183 -webkit-box-shadow: none;
1184 -moz-box-shadow: none;
1185 box-shadow: none;
1186}
1187.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
1188.ui-widget :active { outline: none; }
1189
1190/* Interaction Cues
1191----------------------------------*/
1192.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; }
1193.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
1194.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; }
1195.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
1196.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
1197.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
1198.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
1199.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
1200
1201/* Icons
1202----------------------------------*/
1203
1204/* states and images */
1205.ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1206.ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1207.ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); }
1208.ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1209.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1210.ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1211.ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); }
1212.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; }
1213.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
1214
1215/* positioning */
1216.ui-icon-carat-1-n { background-position: 0 0; }
1217.ui-icon-carat-1-ne { background-position: -16px 0; }
1218.ui-icon-carat-1-e { background-position: -32px 0; }
1219.ui-icon-carat-1-se { background-position: -48px 0; }
1220.ui-icon-carat-1-s { background-position: -64px 0; }
1221.ui-icon-carat-1-sw { background-position: -80px 0; }
1222.ui-icon-carat-1-w { background-position: -96px 0; }
1223.ui-icon-carat-1-nw { background-position: -112px 0; }
1224.ui-icon-carat-2-n-s { background-position: -128px 0; }
1225.ui-icon-carat-2-e-w { background-position: -144px 0; }
1226.ui-icon-triangle-1-n { background-position: 0 -16px; }
1227.ui-icon-triangle-1-ne { background-position: -16px -16px; }
1228.ui-icon-triangle-1-e { background-position: -32px -16px; }
1229.ui-icon-triangle-1-se { background-position: -48px -16px; }
1230.ui-icon-triangle-1-s { background-position: -64px -16px; }
1231.ui-icon-triangle-1-sw { background-position: -80px -16px; }
1232.ui-icon-triangle-1-w { background-position: -96px -16px; }
1233.ui-icon-triangle-1-nw { background-position: -112px -16px; }
1234.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
1235.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
1236.ui-icon-arrow-1-n { background-position: 0 -32px; }
1237.ui-icon-arrow-1-ne { background-position: -16px -32px; }
1238.ui-icon-arrow-1-e { background-position: -32px -32px; }
1239.ui-icon-arrow-1-se { background-position: -48px -32px; }
1240.ui-icon-arrow-1-s { background-position: -64px -32px; }
1241.ui-icon-arrow-1-sw { background-position: -80px -32px; }
1242.ui-icon-arrow-1-w { background-position: -96px -32px; }
1243.ui-icon-arrow-1-nw { background-position: -112px -32px; }
1244.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
1245.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
1246.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
1247.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
1248.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
1249.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
1250.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
1251.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
1252.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
1253.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
1254.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
1255.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
1256.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
1257.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
1258.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
1259.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
1260.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
1261.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
1262.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
1263.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
1264.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
1265.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
1266.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
1267.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
1268.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
1269.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
1270.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
1271.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
1272.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
1273.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
1274.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
1275.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
1276.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
1277.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
1278.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
1279.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
1280.ui-icon-arrow-4 { background-position: 0 -80px; }
1281.ui-icon-arrow-4-diag { background-position: -16px -80px; }
1282.ui-icon-extlink { background-position: -32px -80px; }
1283.ui-icon-newwin { background-position: -48px -80px; }
1284.ui-icon-refresh { background-position: -64px -80px; }
1285.ui-icon-shuffle { background-position: -80px -80px; }
1286.ui-icon-transfer-e-w { background-position: -96px -80px; }
1287.ui-icon-transferthick-e-w { background-position: -112px -80px; }
1288.ui-icon-folder-collapsed { background-position: 0 -96px; }
1289.ui-icon-folder-open { background-position: -16px -96px; }
1290.ui-icon-document { background-position: -32px -96px; }
1291.ui-icon-document-b { background-position: -48px -96px; }
1292.ui-icon-note { background-position: -64px -96px; }
1293.ui-icon-mail-closed { background-position: -80px -96px; }
1294.ui-icon-mail-open { background-position: -96px -96px; }
1295.ui-icon-suitcase { background-position: -112px -96px; }
1296.ui-icon-comment { background-position: -128px -96px; }
1297.ui-icon-person { background-position: -144px -96px; }
1298.ui-icon-print { background-position: -160px -96px; }
1299.ui-icon-trash { background-position: -176px -96px; }
1300.ui-icon-locked { background-position: -192px -96px; }
1301.ui-icon-unlocked { background-position: -208px -96px; }
1302.ui-icon-bookmark { background-position: -224px -96px; }
1303.ui-icon-tag { background-position: -240px -96px; }
1304.ui-icon-home { background-position: 0 -112px; }
1305.ui-icon-flag { background-position: -16px -112px; }
1306.ui-icon-calendar { background-position: -32px -112px; }
1307.ui-icon-cart { background-position: -48px -112px; }
1308.ui-icon-pencil { background-position: -64px -112px; }
1309.ui-icon-clock { background-position: -80px -112px; }
1310.ui-icon-disk { background-position: -96px -112px; }
1311.ui-icon-calculator { background-position: -112px -112px; }
1312.ui-icon-zoomin { background-position: -128px -112px; }
1313.ui-icon-zoomout { background-position: -144px -112px; }
1314.ui-icon-search { background-position: -160px -112px; }
1315.ui-icon-wrench { background-position: -176px -112px; }
1316.ui-icon-gear { background-position: -192px -112px; }
1317.ui-icon-heart { background-position: -208px -112px; }
1318.ui-icon-star { background-position: -224px -112px; }
1319.ui-icon-link { background-position: -240px -112px; }
1320.ui-icon-cancel { background-position: 0 -128px; }
1321.ui-icon-plus { background-position: -16px -128px; }
1322.ui-icon-plusthick { background-position: -32px -128px; }
1323.ui-icon-minus { background-position: -48px -128px; }
1324.ui-icon-minusthick { background-position: -64px -128px; }
1325.ui-icon-close { background-position: -80px -128px; }
1326.ui-icon-closethick { background-position: -96px -128px; }
1327.ui-icon-key { background-position: -112px -128px; }
1328.ui-icon-lightbulb { background-position: -128px -128px; }
1329.ui-icon-scissors { background-position: -144px -128px; }
1330.ui-icon-clipboard { background-position: -160px -128px; }
1331.ui-icon-copy { background-position: -176px -128px; }
1332.ui-icon-contact { background-position: -192px -128px; }
1333.ui-icon-image { background-position: -208px -128px; }
1334.ui-icon-video { background-position: -224px -128px; }
1335.ui-icon-script { background-position: -240px -128px; }
1336.ui-icon-alert { background-position: 0 -144px; }
1337.ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
1338.ui-icon-notice { background-position: -32px -144px; }
1339.ui-icon-help { background-position: -48px -144px; }
1340.ui-icon-check { background-position: -64px -144px; }
1341.ui-icon-bullet { background-position: -80px -144px; }
1342.ui-icon-radio-off { background-position: -96px -144px; }
1343.ui-icon-radio-on { background-position: -112px -144px; }
1344.ui-icon-pin-w { background-position: -128px -144px; }
1345.ui-icon-pin-s { background-position: -144px -144px; }
1346.ui-icon-play { background-position: 0 -160px; }
1347.ui-icon-pause { background-position: -16px -160px; }
1348.ui-icon-seek-next { background-position: -32px -160px; }
1349.ui-icon-seek-prev { background-position: -48px -160px; }
1350.ui-icon-seek-end { background-position: -64px -160px; }
1351.ui-icon-seek-start { background-position: -80px -160px; }
1352/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1353.ui-icon-seek-first { background-position: -80px -160px; }
1354.ui-icon-stop { background-position: -96px -160px; }
1355.ui-icon-eject { background-position: -112px -160px; }
1356.ui-icon-volume-off { background-position: -128px -160px; }
1357.ui-icon-volume-on { background-position: -144px -160px; }
1358.ui-icon-power { background-position: 0 -176px; }
1359.ui-icon-signal-diag { background-position: -16px -176px; }
1360.ui-icon-signal { background-position: -32px -176px; }
1361.ui-icon-battery-0 { background-position: -48px -176px; }
1362.ui-icon-battery-1 { background-position: -64px -176px; }
1363.ui-icon-battery-2 { background-position: -80px -176px; }
1364.ui-icon-battery-3 { background-position: -96px -176px; }
1365.ui-icon-circle-plus { background-position: 0 -192px; }
1366.ui-icon-circle-minus { background-position: -16px -192px; }
1367.ui-icon-circle-close { background-position: -32px -192px; }
1368.ui-icon-circle-triangle-e { background-position: -48px -192px; }
1369.ui-icon-circle-triangle-s { background-position: -64px -192px; }
1370.ui-icon-circle-triangle-w { background-position: -80px -192px; }
1371.ui-icon-circle-triangle-n { background-position: -96px -192px; }
1372.ui-icon-circle-arrow-e { background-position: -112px -192px; }
1373.ui-icon-circle-arrow-s { background-position: -128px -192px; }
1374.ui-icon-circle-arrow-w { background-position: -144px -192px; }
1375.ui-icon-circle-arrow-n { background-position: -160px -192px; }
1376.ui-icon-circle-zoomin { background-position: -176px -192px; }
1377.ui-icon-circle-zoomout { background-position: -192px -192px; }
1378.ui-icon-circle-check { background-position: -208px -192px; }
1379.ui-icon-circlesmall-plus { background-position: 0 -208px; }
1380.ui-icon-circlesmall-minus { background-position: -16px -208px; }
1381.ui-icon-circlesmall-close { background-position: -32px -208px; }
1382.ui-icon-squaresmall-plus { background-position: -48px -208px; }
1383.ui-icon-squaresmall-minus { background-position: -64px -208px; }
1384.ui-icon-squaresmall-close { background-position: -80px -208px; }
1385.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
1386.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
1387.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
1388.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
1389.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
1390.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
1391
1392
1393/* Misc visuals
1394----------------------------------*/
1395
1396/* Corner radius */
1397.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
1398.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
1399.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
1400.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
1401.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; }
1402.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; }
1403.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; }
1404.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; }
1405.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
1406
1407/* Overlays */
1408.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
1409.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; }
1410
1411/*
1412 * jQuery UI Autocomplete 1.8.7
1413 *
1414 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1415 * Dual licensed under the MIT or GPL Version 2 licenses.
1416 * http://jquery.org/license
1417 *
1418 * http://docs.jquery.com/UI/Autocomplete#theming
1419 */
1420.ui-autocomplete {
1421 position: absolute; cursor: default; z-index: 3;
1422 -moz-border-radius: 0;
1423 -webkit-border-radius: 0;
1424 border-radius: 0;
1425 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1426 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1427 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
1428}
1429
1430/* workarounds */
1431* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
1432
1433/*
1434 * jQuery UI Menu 1.8.7
1435 *
1436 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1437 * Dual licensed under the MIT or GPL Version 2 licenses.
1438 * http://jquery.org/license
1439 *
1440 * http://docs.jquery.com/UI/Menu#theming
1441 */
1442.ui-menu {
1443 list-style:none;
1444 padding: 2px;
1445 margin: 0;
1446 display:block;
1447 float: left;
1448}
1449.ui-menu .ui-menu {
1450 margin-top: -3px;
1451}
1452.ui-menu .ui-menu-item {
1453 margin:0;
1454 padding: 0;
1455 zoom: 1;
1456 float: left;
1457 clear: left;
1458 width: 100%;
1459}
1460.ui-menu .ui-menu-item a {
1461 text-decoration:none;
1462 display:block;
1463 padding:.2em .4em;
1464 line-height:1.5;
1465 zoom:1;
1466}
1467.ui-menu .ui-menu-item a.ui-state-hover,
1468.ui-menu .ui-menu-item a.ui-state-active {
1469 font-weight: normal;
1470 margin: -1px;
1471 background: #5f83b9;
1472 color: #FFFFFF;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301473 border-color: #466086;
1474 -moz-border-radius: 0;
1475 -webkit-border-radius: 0;
1476 border-radius: 0;
1477}
1478
1479/*
1480 * jQuery UI Datepicker 1.8.7
1481 *
1482 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1483 * Dual licensed under the MIT or GPL Version 2 licenses.
1484 * http://jquery.org/license
1485 *
1486 * http://docs.jquery.com/UI/Datepicker#theming
1487 */
1488.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
1489.ui-datepicker {
1490 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1491 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1492 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
1493}
1494.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; }
1495.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
1496.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
1497.ui-datepicker .ui-datepicker-prev { left:2px; }
1498.ui-datepicker .ui-datepicker-next { right:2px; }
1499.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
1500.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
1501.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
1502.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
1503.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; }
1504.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); }
1505.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
1506.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
1507.ui-datepicker select.ui-datepicker-month,
1508.ui-datepicker select.ui-datepicker-year { width: 49%;}
1509.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
1510.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
1511.ui-datepicker td { border: 0; padding: 1px; }
1512.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
1513.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; }
1514.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
1515.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
1516.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
1517.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; }
1518.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
1519.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
1520
1521/* with multiple calendars */
1522.ui-datepicker.ui-datepicker-multi { width:auto; }
1523.ui-datepicker-multi .ui-datepicker-group { float:left; }
1524.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
1525.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
1526.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
1527.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
1528.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
1529.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
1530.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
1531.ui-datepicker-row-break { clear:both; width:100%; }
1532
1533/* RTL support */
1534.ui-datepicker-rtl { direction: rtl; }
1535.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
1536.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
1537.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
1538.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
1539.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
1540.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
1541.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
1542.ui-datepicker-rtl .ui-datepicker-group { float:right; }
1543.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1544.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1545
1546/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1547.ui-datepicker-cover {
1548 display: none; /*sorry for IE5*/
1549 display/**/: block; /*sorry for IE5*/
1550 position: absolute; /*must have*/
1551 z-index: -1; /*must have*/
1552 filter: mask(); /*must have*/
1553 top: -4px; /*must have*/
1554 left: -4px; /*must have*/
1555 width: 200px; /*must have*/
1556 height: 200px; /*must have*/
1557}
1558
1559
1560
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301561/*
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301562 * lib/css/ui/list.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301563 */
1564.hide {
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301565 display: none;
1566}
1567
1568.list-filters {
1569 margin: 7px 0px;
1570}
1571
1572.wnlist .img-load {
1573 display: none;
Rushabh Mehta842f7822012-03-22 14:24:49 +05301574 float: left;
1575 margin-bottom: 8px;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301576}
1577
Rushabh Mehta2438de42012-03-15 16:43:46 +05301578/* list-row */
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301579div.list-row {
1580 border-bottom: 1px solid #eee;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301581 padding: 5px 0px;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301582}
1583div.list-row:hover {
1584 background-color: #eef
1585}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301586
Rushabh Mehta2438de42012-03-15 16:43:46 +05301587div.list-row .label {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301588 margin-right: 4px;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301589}
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301590
1591div.list-row table {
1592 table-layout: fixed;
1593 border-collapse: collapse;
1594 width: 100%;
1595}
1596
1597div.list-row table td {
1598 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05301599 /*padding-right: 3px;*/
1600 padding: 0px 3px;
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301601 vertical-align: middle;
1602 height: 24px;
1603 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05301604 word-wrap: break-word;
Rushabh Mehta2438de42012-03-15 16:43:46 +05301605}
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301606
Rushabh Mehta9f89e352012-03-09 17:51:39 +05301607div.paging-button {
1608 text-align: center;
1609 padding: 11px 0px;
1610}
1611
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301612div.show_filters {
1613 display: none;
1614}
1615
1616div.filter_list {
1617 padding: 13px;
1618}
1619
1620div.show_filters.well {
1621 margin-top: 11px;
1622 margin-bottom: 11px;
1623}
1624
1625div.filter_list .run_btn {
1626 text-align: right;
1627}
1628
1629div.filter_list .add_filter {
1630 margin: 3px 0px;
1631}
1632
1633div.list_filter {
1634 margin: 7px 0px;
1635}
1636
1637div.list_filter input, div.list_filter select {
1638 width: 130px;
1639 margin-right: 7px;
1640}
1641
Rushabh Mehta2438de42012-03-15 16:43:46 +05301642/* bar */
1643
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301644span.bar-outer {
1645 display: inline-block;
1646 margin: 0px 7px;
1647 margin-top: 3px;
1648 background-color: #fff;
1649 border: 1px solid #aaa;
1650 height: 10px;
1651}
1652
1653span.bar-inner {
1654 display: inline-block;
1655 background-color: #bdf;
1656 height: 100%;
1657 margin-bottom: 2px;
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301658 float: left;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301659}
1660span.bar-complete {
Rushabh Mehta437c1b52012-03-20 18:45:28 +05301661 background-color: #009900;
1662}
1663span.bar-empty {
1664 background-color: #990000;
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301665}
1666
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301667
Rushabh Mehta2438de42012-03-15 16:43:46 +05301668/* stats */
1669
1670div.stat-wrapper {
1671 margin-bottom: 19px;
1672}
1673
1674div.stat-grid {
1675 border: 2px solid #bbb;
1676 background-color: white;
1677 border-radius: 5px;
1678 -moz-border-radius: 5px;
1679 -webkit-border-radius: 5px;
1680 overflow: hidden;
1681}
1682
1683div.stat-label {
1684 position: relative;
1685 padding: 3px;
1686 text-align: center;
1687}
1688div.stat-label, div.stat-label a {
1689 z-index: 5;
1690}
1691
1692div.stat-item {
1693 position: relative;
1694 border-bottom: 1px solid #ddd;
1695}
1696div.stat-item:last-child {
1697 border-bottom: 0px solid #ddd;
1698}
1699
1700div.stat-bar {
1701 position: absolute;
1702 left: 0px;
1703 background-color: #def;
1704 height: 100%;
1705 z-index: 0;
1706}
1707
1708
1709
1710
1711
Rushabh Mehtaf81a64e2012-03-07 18:19:41 +05301712/*
Rushabh Mehtac6843482012-04-11 15:28:00 +05301713 * lib/css/ui/views.css
1714 */
1715.breadcrumbs-area {
1716 margin-bottom: 8px;
1717}
1718
1719.breadcrumbs {
1720 color: #000000;
1721}
1722
1723.breadcrumbs a {
1724 color: #000000;
1725}
1726
1727div.page-app-bar {
1728 padding: 6px;
1729 background: #eeeeee; /* Old browsers */
1730 background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
1731 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
1732 background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
1733 background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
1734 background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */
1735 background: linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* W3C */
1736 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
1737 border-bottom: 1px solid #ccc;
1738}
1739div.page-app-toolbar {
1740 padding: 4px;
1741 background: #eeeeee;
1742 border-top: 1px solid #f8f8f8;
1743 border-bottom: 1px solid #ccc;
1744}
1745
1746/*
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301747 * lib/css/ui/fonts.css
1748 */
1749@font-face {
1750 font-family: 'Pontano Sans';
1751 font-style: normal;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +05301752 font-weight: 800;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301753 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1754}
1755
1756@font-face {
1757 font-family: 'Droid Sans';
1758 font-style: normal;
1759 font-weight: normal;
1760 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1761}
1762
Rushabh Mehta983a1712012-03-21 13:35:34 +05301763@font-face {
1764 font-family: 'PT Sans';
1765 font-style: normal;
1766 font-weight: normal;
1767 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1768}
1769
1770@font-face {
1771 font-family: 'Open Sans';
1772 font-style: normal;
1773 font-weight: 400;
1774 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1775}
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301776
Rushabh Mehta983a1712012-03-21 13:35:34 +05301777@font-face {
1778 font-family: 'Lato';
1779 font-style: normal;
1780 font-weight: 400;
1781 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1782}
1783
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301784@font-face {
1785 font-family: 'Cabin';
1786 font-style: normal;
1787 font-weight: 400;
1788 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
1789}
Rushabh Mehta983a1712012-03-21 13:35:34 +05301790
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +05301791@font-face {
1792 font-family: 'Pacifico';
1793 font-style: normal;
1794 font-weight: normal;
1795 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('../lib/css/fonts/pacifico.woff') format('woff');
1796}
1797
1798
Rushabh Mehta983a1712012-03-21 13:35:34 +05301799
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301800/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301801 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301802 */
1803/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301804
1805h1,
1806h2,
1807h3,
1808h4,
1809h5,
1810h6 {
1811 margin: 0;
1812 font-weight: bold;
1813 color: #333333;
1814 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301815}
1816h1 small,
1817h2 small,
1818h3 small,
1819h4 small,
1820h5 small,
1821h6 small {
1822 font-weight: normal;
1823 color: #999999;
1824}
1825h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301826 font-size: 280%;
1827 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301828}
1829h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301830 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301831}
1832h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301833 font-size: 200%;
1834 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301835}
1836h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301837 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301838}
1839h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301840 font-size: 210%;
1841 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301842}
1843h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301844 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301845}
1846h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301847 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301848}
1849h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301850 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301851}
1852h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301853 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301854}
1855h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301856 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301857}
1858h6 {
1859 font-size: 11px;
1860 color: #999999;
1861 text-transform: uppercase;
1862}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301863
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301864/*
1865 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301866 */
1867.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +05301868 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301869 float: right;
1870 font-size: 20px;
1871 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301872 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301873 color: #000000;
1874 text-shadow: 0 1px 0 #ffffff;
1875 opacity: 0.2;
1876 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301877}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301878.close:hover {
1879 color: #000000;
1880 text-decoration: none;
1881 opacity: 0.4;
1882 filter: alpha(opacity=40);
1883 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301884}
1885.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301886 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301887 padding: 4px 10px 4px;
1888 font-size: 13px;
1889 line-height: 18px;
1890 color: #333333;
1891 text-align: center;
1892 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1893 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301894 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1895 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1896 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1897 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1898 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1899 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301900 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301901 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301902 border: 1px solid #ccc;
1903 border-bottom-color: #bbb;
1904 -webkit-border-radius: 4px;
1905 -moz-border-radius: 4px;
1906 border-radius: 4px;
1907 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1908 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1909 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 +05301910 cursor: pointer;
1911 *margin-left: .3em;
1912}
1913.btn:first-child {
1914 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301915}
1916.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301917 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301918 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301919 background-color: #e6e6e6;
1920 background-position: 0 -15px;
1921 -webkit-transition: background-position 0.1s linear;
1922 -moz-transition: background-position 0.1s linear;
1923 -ms-transition: background-position 0.1s linear;
1924 -o-transition: background-position 0.1s linear;
1925 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301926}
1927.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301928 outline: thin dotted;
1929 outline: 5px auto -webkit-focus-ring-color;
1930 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301931}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301932.btn.active, .btn:active {
1933 background-image: none;
1934 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1935 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1936 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1937 background-color: #e6e6e6;
1938 background-color: #d9d9d9 \9;
1939 color: rgba(0, 0, 0, 0.5);
1940 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301941}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301942.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301943 cursor: default;
1944 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301945 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301946 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301947 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301948 -webkit-box-shadow: none;
1949 -moz-box-shadow: none;
1950 box-shadow: none;
1951}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301952.btn-large {
1953 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301954 font-size: 15px;
1955 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301956 -webkit-border-radius: 5px;
1957 -moz-border-radius: 5px;
1958 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301959}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301960.btn-large .icon {
1961 margin-top: 1px;
1962}
1963.btn-small {
1964 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301965 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301966 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301967}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301968.btn-small .icon {
1969 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301970}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301971.btn-primary,
1972.btn-primary:hover,
1973.btn-warning,
1974.btn-warning:hover,
1975.btn-danger,
1976.btn-danger:hover,
1977.btn-success,
1978.btn-success:hover,
1979.btn-info,
1980.btn-info:hover {
1981 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1982 color: #ffffff;
1983}
1984.btn-primary.active,
1985.btn-warning.active,
1986.btn-danger.active,
1987.btn-success.active,
1988.btn-info.active {
1989 color: rgba(255, 255, 255, 0.75);
1990}
1991.btn-primary {
1992 background-color: #006dcc;
1993 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
1994 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
1995 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
1996 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
1997 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
1998 background-image: linear-gradient(top, #0088cc, #0044cc);
1999 background-repeat: repeat-x;
2000 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
2001 border-color: #0044cc #0044cc #002a80;
2002 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2003 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2004}
2005.btn-primary:hover,
2006.btn-primary:active,
2007.btn-primary.active,
2008.btn-primary.disabled,
2009.btn-primary[disabled] {
2010 background-color: #0044cc;
2011}
2012.btn-primary:active, .btn-primary.active {
2013 background-color: #003399 \9;
2014}
2015.btn-warning {
2016 background-color: #faa732;
2017 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
2018 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
2019 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
2020 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
2021 background-image: -o-linear-gradient(top, #fbb450, #f89406);
2022 background-image: linear-gradient(top, #fbb450, #f89406);
2023 background-repeat: repeat-x;
2024 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
2025 border-color: #f89406 #f89406 #ad6704;
2026 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2027 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2028}
2029.btn-warning:hover,
2030.btn-warning:active,
2031.btn-warning.active,
2032.btn-warning.disabled,
2033.btn-warning[disabled] {
2034 background-color: #f89406;
2035}
2036.btn-warning:active, .btn-warning.active {
2037 background-color: #c67605 \9;
2038}
2039.btn-danger {
2040 background-color: #da4f49;
2041 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
2042 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
2043 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
2044 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
2045 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
2046 background-image: linear-gradient(top, #ee5f5b, #bd362f);
2047 background-repeat: repeat-x;
2048 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
2049 border-color: #bd362f #bd362f #802420;
2050 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2051 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2052}
2053.btn-danger:hover,
2054.btn-danger:active,
2055.btn-danger.active,
2056.btn-danger.disabled,
2057.btn-danger[disabled] {
2058 background-color: #bd362f;
2059}
2060.btn-danger:active, .btn-danger.active {
2061 background-color: #942a25 \9;
2062}
2063.btn-success {
2064 background-color: #5bb75b;
2065 background-image: -moz-linear-gradient(top, #62c462, #51a351);
2066 background-image: -ms-linear-gradient(top, #62c462, #51a351);
2067 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
2068 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
2069 background-image: -o-linear-gradient(top, #62c462, #51a351);
2070 background-image: linear-gradient(top, #62c462, #51a351);
2071 background-repeat: repeat-x;
2072 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
2073 border-color: #51a351 #51a351 #387038;
2074 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2075 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2076}
2077.btn-success:hover,
2078.btn-success:active,
2079.btn-success.active,
2080.btn-success.disabled,
2081.btn-success[disabled] {
2082 background-color: #51a351;
2083}
2084.btn-success:active, .btn-success.active {
2085 background-color: #408140 \9;
2086}
2087.btn-info {
2088 background-color: #49afcd;
2089 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
2090 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
2091 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
2092 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
2093 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
2094 background-image: linear-gradient(top, #5bc0de, #2f96b4);
2095 background-repeat: repeat-x;
2096 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
2097 border-color: #2f96b4 #2f96b4 #1f6377;
2098 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2099 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2100}
2101.btn-info:hover,
2102.btn-info:active,
2103.btn-info.active,
2104.btn-info.disabled,
2105.btn-info[disabled] {
2106 background-color: #2f96b4;
2107}
2108.btn-info:active, .btn-info.active {
2109 background-color: #24748c \9;
2110}
2111button.btn, input[type="submit"].btn {
2112 *padding-top: 2px;
2113 *padding-bottom: 2px;
2114}
2115button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302116 padding: 0;
2117 border: 0;
2118}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302119button.btn.large, input[type="submit"].btn.large {
2120 *padding-top: 7px;
2121 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302122}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302123button.btn.small, input[type="submit"].btn.small {
2124 *padding-top: 3px;
2125 *padding-bottom: 3px;
2126}
2127.btn-group {
2128 position: relative;
2129 *zoom: 1;
2130 *margin-left: .3em;
2131}
2132.btn-group:before, .btn-group:after {
2133 display: table;
2134 content: "";
2135}
2136.btn-group:after {
2137 clear: both;
2138}
2139.btn-group:first-child {
2140 *margin-left: 0;
2141}
2142.btn-group + .btn-group {
2143 margin-left: 5px;
2144}
2145.btn-toolbar {
2146 margin-top: 9px;
2147 margin-bottom: 9px;
2148}
2149.btn-toolbar .btn-group {
2150 display: inline-block;
2151 *display: inline;
2152 /* IE7 inline-block hack */
2153
2154 *zoom: 1;
2155}
2156.btn-group .btn {
2157 position: relative;
2158 float: left;
2159 margin-left: -1px;
2160 -webkit-border-radius: 0;
2161 -moz-border-radius: 0;
2162 border-radius: 0;
2163}
2164.btn-group .btn:first-child {
2165 margin-left: 0;
2166 -webkit-border-top-left-radius: 4px;
2167 -moz-border-radius-topleft: 4px;
2168 border-top-left-radius: 4px;
2169 -webkit-border-bottom-left-radius: 4px;
2170 -moz-border-radius-bottomleft: 4px;
2171 border-bottom-left-radius: 4px;
2172}
2173.btn-group .btn:last-child, .btn-group .dropdown-toggle {
2174 -webkit-border-top-right-radius: 4px;
2175 -moz-border-radius-topright: 4px;
2176 border-top-right-radius: 4px;
2177 -webkit-border-bottom-right-radius: 4px;
2178 -moz-border-radius-bottomright: 4px;
2179 border-bottom-right-radius: 4px;
2180}
2181.btn-group .btn.large:first-child {
2182 margin-left: 0;
2183 -webkit-border-top-left-radius: 6px;
2184 -moz-border-radius-topleft: 6px;
2185 border-top-left-radius: 6px;
2186 -webkit-border-bottom-left-radius: 6px;
2187 -moz-border-radius-bottomleft: 6px;
2188 border-bottom-left-radius: 6px;
2189}
2190.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
2191 -webkit-border-top-right-radius: 6px;
2192 -moz-border-radius-topright: 6px;
2193 border-top-right-radius: 6px;
2194 -webkit-border-bottom-right-radius: 6px;
2195 -moz-border-radius-bottomright: 6px;
2196 border-bottom-right-radius: 6px;
2197}
2198.btn-group .btn:hover,
2199.btn-group .btn:focus,
2200.btn-group .btn:active,
2201.btn-group .btn.active {
2202 z-index: 2;
2203}
2204.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2205 outline: 0;
2206}
2207.btn-group .dropdown-toggle {
2208 padding-left: 8px;
2209 padding-right: 8px;
2210 -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);
2211 -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);
2212 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);
2213 *padding-top: 5px;
2214 *padding-bottom: 5px;
2215}
2216.btn-group.open {
2217 *z-index: 1000;
2218}
2219.btn-group.open .dropdown-menu {
2220 display: block;
2221 margin-top: 1px;
2222 -webkit-border-radius: 5px;
2223 -moz-border-radius: 5px;
2224 border-radius: 5px;
2225}
2226.btn-group.open .dropdown-toggle {
2227 background-image: none;
2228 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2229 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2230 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2231}
2232.btn .caret {
2233 margin-top: 7px;
2234 margin-left: 0;
2235}
2236.btn:hover .caret, .open.btn-group .caret {
2237 opacity: 1;
2238 filter: alpha(opacity=100);
2239}
2240.btn-primary .caret,
2241.btn-danger .caret,
2242.btn-info .caret,
2243.btn-success .caret {
2244 border-top-color: #ffffff;
2245 opacity: 0.75;
2246 filter: alpha(opacity=75);
2247}
2248.btn-small .caret {
2249 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302250}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302251
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302252/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302253 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302254 */
2255.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302256 margin-left: 0;
2257 margin-bottom: 18px;
2258 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302259}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302260.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302261 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302262}
2263.nav > li > a:hover {
2264 text-decoration: none;
2265 background-color: #eeeeee;
2266}
2267.nav-list {
2268 padding-left: 14px;
2269 padding-right: 14px;
2270 margin-bottom: 0;
2271}
2272.nav-list > li > a, .nav-list .nav-header {
2273 display: block;
2274 padding: 3px 15px;
2275 margin-left: -15px;
2276 margin-right: -15px;
2277 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2278}
2279.nav-list .nav-header {
2280 font-size: 11px;
2281 font-weight: bold;
2282 line-height: 18px;
2283 color: #999999;
2284 text-transform: uppercase;
2285}
2286.nav-list > li + .nav-header {
2287 margin-top: 9px;
2288}
2289.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302290 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302291 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2292 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302293}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302294.nav-list [class^="icon-"] {
2295 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302296}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302297.nav-tabs, .nav-pills {
2298 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302299}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302300.nav-tabs:before,
2301.nav-pills:before,
2302.nav-tabs:after,
2303.nav-pills:after {
2304 display: table;
2305 content: "";
2306}
2307.nav-tabs:after, .nav-pills:after {
2308 clear: both;
2309}
2310.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302311 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302312}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302313.nav-tabs > li > a, .nav-pills > li > a {
2314 padding-right: 12px;
2315 padding-left: 12px;
2316 margin-right: 2px;
2317 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302318}
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302319.nav-tabs {
2320 border-bottom: 1px solid #ddd;
2321}
2322.nav-tabs > li {
2323 margin-bottom: -1px;
2324}
2325.nav-tabs > li > a {
2326 padding-top: 9px;
2327 padding-bottom: 9px;
2328 border: 1px solid transparent;
2329 -webkit-border-radius: 4px 4px 0 0;
2330 -moz-border-radius: 4px 4px 0 0;
2331 border-radius: 4px 4px 0 0;
2332}
2333.nav-tabs > li > a:hover {
2334 border-color: #eeeeee #eeeeee #dddddd;
2335}
2336.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2337 color: #555555;
2338 background-color: #ffffff;
2339 border: 1px solid #ddd;
2340 border-bottom-color: transparent;
2341 cursor: default;
2342}
2343.nav-pills > li > a {
2344 padding-top: 8px;
2345 padding-bottom: 8px;
2346 margin-top: 2px;
2347 margin-bottom: 2px;
2348 -webkit-border-radius: 5px;
2349 -moz-border-radius: 5px;
2350 border-radius: 5px;
2351}
2352.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302353 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302354 background-color: #0088cc;
2355}
2356.nav-stacked > li {
2357 float: none;
2358}
2359.nav-stacked > li > a {
2360 margin-right: 0;
2361}
2362.nav-tabs.nav-stacked {
2363 border-bottom: 0;
2364}
2365.nav-tabs.nav-stacked > li > a {
2366 border: 1px solid #ddd;
2367 -webkit-border-radius: 0;
2368 -moz-border-radius: 0;
2369 border-radius: 0;
2370}
2371.nav-tabs.nav-stacked > li:first-child > a {
2372 -webkit-border-radius: 4px 4px 0 0;
2373 -moz-border-radius: 4px 4px 0 0;
2374 border-radius: 4px 4px 0 0;
2375}
2376.nav-tabs.nav-stacked > li:last-child > a {
2377 -webkit-border-radius: 0 0 4px 4px;
2378 -moz-border-radius: 0 0 4px 4px;
2379 border-radius: 0 0 4px 4px;
2380}
2381.nav-tabs.nav-stacked > li > a:hover {
2382 border-color: #ddd;
2383 z-index: 2;
2384}
2385.nav-pills.nav-stacked > li > a {
2386 margin-bottom: 3px;
2387}
2388.nav-pills.nav-stacked > li:last-child > a {
2389 margin-bottom: 1px;
2390}
2391.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2392 margin-top: 1px;
2393 border-width: 1px;
2394}
2395.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302396 -webkit-border-radius: 4px;
2397 -moz-border-radius: 4px;
2398 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05302399}
2400.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2401 border-top-color: #0088cc;
2402 margin-top: 6px;
2403}
2404.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2405 border-top-color: #005580;
2406}
2407.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2408 border-top-color: #333333;
2409}
2410.nav > .dropdown.active > a:hover {
2411 color: #000000;
2412 cursor: pointer;
2413}
2414.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2415 color: #ffffff;
2416 background-color: #999999;
2417 border-color: #999999;
2418}
2419.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2420 border-top-color: #ffffff;
2421 opacity: 1;
2422 filter: alpha(opacity=100);
2423}
2424
2425.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302426 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302427 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302428}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302429.navbar-inner {
2430 padding-left: 20px;
2431 padding-right: 20px;
2432 background-color: #2c2c2c;
2433 background-image: -moz-linear-gradient(top, #333333, #222222);
2434 background-image: -ms-linear-gradient(top, #333333, #222222);
2435 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2436 background-image: -webkit-linear-gradient(top, #333333, #222222);
2437 background-image: -o-linear-gradient(top, #333333, #222222);
2438 background-image: linear-gradient(top, #333333, #222222);
2439 background-repeat: repeat-x;
2440 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2441 -webkit-border-radius: 4px;
2442 -moz-border-radius: 4px;
2443 border-radius: 4px;
2444 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2445 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2446 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2447}
2448.btn-navbar {
2449 display: none;
2450 float: right;
2451 padding: 7px 10px;
2452 margin-left: 5px;
2453 margin-right: 5px;
2454 background-color: #2c2c2c;
2455 background-image: -moz-linear-gradient(top, #333333, #222222);
2456 background-image: -ms-linear-gradient(top, #333333, #222222);
2457 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2458 background-image: -webkit-linear-gradient(top, #333333, #222222);
2459 background-image: -o-linear-gradient(top, #333333, #222222);
2460 background-image: linear-gradient(top, #333333, #222222);
2461 background-repeat: repeat-x;
2462 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2463 border-color: #222222 #222222 #000000;
2464 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2465 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2466 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2467 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2468 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2469}
2470.btn-navbar:hover,
2471.btn-navbar:active,
2472.btn-navbar.active,
2473.btn-navbar.disabled,
2474.btn-navbar[disabled] {
2475 background-color: #222222;
2476}
2477.btn-navbar:active, .btn-navbar.active {
2478 background-color: #080808 \9;
2479}
2480.btn-navbar .icon-bar {
2481 display: block;
2482 width: 18px;
2483 height: 2px;
2484 background-color: #f5f5f5;
2485 -webkit-border-radius: 1px;
2486 -moz-border-radius: 1px;
2487 border-radius: 1px;
2488 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2489 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2490 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2491}
2492.btn-navbar .icon-bar + .icon-bar {
2493 margin-top: 3px;
2494}
2495.nav-collapse.collapse {
2496 height: auto;
2497}
2498.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302499 text-decoration: none;
2500}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302501.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302502 float: left;
2503 display: block;
2504 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302505 font-size: 20px;
2506 font-weight: 200;
2507 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302508 color: #ffffff;
2509}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302510.navbar .navbar-text {
2511 margin-bottom: 0;
2512 line-height: 40px;
2513 color: #999999;
2514}
2515.navbar .navbar-text a:hover {
2516 color: #ffffff;
2517 background-color: transparent;
2518}
2519.navbar .btn, .navbar .btn-group {
2520 margin-top: 5px;
2521}
2522.navbar .btn-group .btn {
2523 margin-top: 0;
2524}
2525.navbar-form {
2526 margin-bottom: 0;
2527 *zoom: 1;
2528}
2529.navbar-form:before, .navbar-form:after {
2530 display: table;
2531 content: "";
2532}
2533.navbar-form:after {
2534 clear: both;
2535}
2536.navbar-form input, .navbar-form select {
2537 display: inline-block;
2538 margin-top: 5px;
2539 margin-bottom: 0;
2540}
2541.navbar-form .radio, .navbar-form .checkbox {
2542 margin-top: 5px;
2543}
2544.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
2545 margin-top: 3px;
2546}
2547.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302548 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302549 float: left;
2550 margin-top: 6px;
2551 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302552}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302553.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302554 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302555 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2556 font-size: 13px;
2557 font-weight: normal;
2558 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302559 color: #ffffff;
2560 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302561 background: #666;
2562 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302563 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302564 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2565 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
2566 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 +05302567 -webkit-transition: none;
2568 -moz-transition: none;
2569 -ms-transition: none;
2570 -o-transition: none;
2571 transition: none;
2572}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302573.navbar-search .search-query :-moz-placeholder {
2574 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302575}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302576.navbar-search .search-query::-webkit-input-placeholder {
2577 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302578}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302579.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302580 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302581 background-color: #999999;
2582 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302583}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302584.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302585 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302586 color: #333333;
2587 text-shadow: 0 1px 0 #ffffff;
2588 background-color: #ffffff;
2589 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302590 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2591 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2592 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302593 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302594}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302595.navbar-fixed-top {
2596 position: fixed;
2597 top: 0;
2598 right: 0;
2599 left: 0;
2600 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302601}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302602.navbar-fixed-top .navbar-inner {
2603 padding-left: 0;
2604 padding-right: 0;
2605 -webkit-border-radius: 0;
2606 -moz-border-radius: 0;
2607 border-radius: 0;
2608}
2609.navbar .nav {
2610 position: relative;
2611 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302612 display: block;
2613 float: left;
2614 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302615}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302616.navbar .nav.pull-right {
2617 float: right;
2618}
2619.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302620 display: block;
2621 float: left;
2622}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302623.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302624 float: none;
2625 padding: 10px 10px 11px;
2626 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302627 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302628 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302629 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302630}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302631.navbar .nav > li > a:hover {
2632 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302633 color: #ffffff;
2634 text-decoration: none;
2635}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302636.navbar .nav .active > a, .navbar .nav .active > a:hover {
2637 color: #ffffff;
2638 text-decoration: none;
2639 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302640 background-color: rgba(0, 0, 0, 0.5);
2641}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302642.navbar .divider-vertical {
2643 height: 40px;
2644 width: 1px;
2645 margin: 0 9px;
2646 overflow: hidden;
2647 background-color: #222222;
2648 border-right: 1px solid #333333;
2649}
2650.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302651 margin-left: 10px;
2652 margin-right: 0;
2653}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302654.navbar .dropdown-menu {
2655 margin-top: 1px;
2656 -webkit-border-radius: 4px;
2657 -moz-border-radius: 4px;
2658 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302659}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302660.navbar .dropdown-menu:before {
2661 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302662 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302663 border-left: 7px solid transparent;
2664 border-right: 7px solid transparent;
2665 border-bottom: 7px solid #ccc;
2666 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302667 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302668 top: -7px;
2669 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302670}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302671.navbar .dropdown-menu:after {
2672 content: '';
2673 display: inline-block;
2674 border-left: 6px solid transparent;
2675 border-right: 6px solid transparent;
2676 border-bottom: 6px solid #ffffff;
2677 position: absolute;
2678 top: -6px;
2679 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302680}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302681.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
2682 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302683}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302684.navbar .nav .active .caret {
2685 opacity: 1;
2686 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302687}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302688.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
2689 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302690}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302691.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302692 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302693}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302694.navbar .nav.pull-right .dropdown-menu {
2695 left: auto;
2696 right: 0;
2697}
2698.navbar .nav.pull-right .dropdown-menu:before {
2699 left: auto;
2700 right: 12px;
2701}
2702.navbar .nav.pull-right .dropdown-menu:after {
2703 left: auto;
2704 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302705}
2706
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302707/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302708.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302709 display: block;
2710 float: right;
2711 width: 20px;
2712 margin-bottom: -5px;
2713 margin-top: 10px;
2714 visibility: hidden;
2715}
2716
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302717.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302718 padding: 0px 20px;
2719}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302720
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302721
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302722/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302723 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302724 */
2725.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302726 position: relative;
2727}
2728.dropdown-toggle {
2729 *margin-bottom: -3px;
2730}
2731.dropdown-toggle:active, .open .dropdown-toggle {
2732 outline: 0;
2733}
2734.caret {
2735 display: inline-block;
2736 width: 0;
2737 height: 0;
2738 text-indent: -99999px;
2739 *text-indent: 0;
2740 vertical-align: top;
2741 border-left: 4px solid transparent;
2742 border-right: 4px solid transparent;
2743 border-top: 4px solid #000000;
2744 opacity: 0.3;
2745 filter: alpha(opacity=30);
2746 content: "\2193";
2747}
2748.dropdown .caret {
2749 margin-top: 8px;
2750 margin-left: 2px;
2751}
2752.dropdown:hover .caret, .open.dropdown .caret {
2753 opacity: 1;
2754 filter: alpha(opacity=100);
2755}
2756.dropdown-menu {
2757 position: absolute;
2758 top: 100%;
2759 left: 0;
2760 z-index: 1000;
2761 float: left;
2762 display: none;
2763 min-width: 160px;
2764 max-width: 220px;
2765 _width: 160px;
2766 padding: 4px 0;
2767 margin: 0;
2768 list-style: none;
2769 background-color: #ffffff;
2770 border-color: #ccc;
2771 border-color: rgba(0, 0, 0, 0.2);
2772 border-style: solid;
2773 border-width: 1px;
2774 -webkit-border-radius: 0 0 5px 5px;
2775 -moz-border-radius: 0 0 5px 5px;
2776 border-radius: 0 0 5px 5px;
2777 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2778 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2779 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2780 -webkit-background-clip: padding-box;
2781 -moz-background-clip: padding;
2782 background-clip: padding-box;
2783 *border-right-width: 2px;
2784 *border-bottom-width: 2px;
2785}
2786.dropdown-menu.bottom-up {
2787 top: auto;
2788 bottom: 100%;
2789 margin-bottom: 2px;
2790}
2791.dropdown-menu .divider {
2792 height: 1px;
2793 margin: 5px 1px;
2794 overflow: hidden;
2795 background-color: #e5e5e5;
2796 border-bottom: 1px solid #ffffff;
2797 *width: 100%;
2798 *margin: -5px 0 5px;
2799}
2800.dropdown-menu a {
2801 display: block;
2802 padding: 3px 15px;
2803 clear: both;
2804 font-weight: normal;
2805 line-height: 18px;
2806 color: #555555;
2807 white-space: nowrap;
2808}
2809.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
2810 color: #ffffff;
2811 text-decoration: none;
2812 background-color: #0088cc;
2813}
2814.dropdown.open {
2815 *z-index: 1000;
2816}
2817.dropdown.open .dropdown-toggle {
2818 color: #ffffff;
2819 background: #ccc;
2820 background: rgba(0, 0, 0, 0.3);
2821}
2822.dropdown.open .dropdown-menu {
2823 display: block;
2824}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302825
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05302826/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05302827 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302828 */
2829.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05302830 position: absolute;
2831 z-index: 1020;
2832 display: block;
2833 visibility: visible;
2834 padding: 5px;
2835 font-size: 11px;
2836 opacity: 0;
2837 filter: alpha(opacity=0);
2838}
2839.tooltip.in {
2840 opacity: 0.8;
2841 filter: alpha(opacity=80);
2842}
2843.tooltip.top {
2844 margin-top: -2px;
2845}
2846.tooltip.right {
2847 margin-left: 2px;
2848}
2849.tooltip.bottom {
2850 margin-top: 2px;
2851}
2852.tooltip.left {
2853 margin-left: -2px;
2854}
2855.tooltip.top .tooltip-arrow {
2856 bottom: 0;
2857 left: 50%;
2858 margin-left: -5px;
2859 border-left: 5px solid transparent;
2860 border-right: 5px solid transparent;
2861 border-top: 5px solid #000000;
2862}
2863.tooltip.left .tooltip-arrow {
2864 top: 50%;
2865 right: 0;
2866 margin-top: -5px;
2867 border-top: 5px solid transparent;
2868 border-bottom: 5px solid transparent;
2869 border-left: 5px solid #000000;
2870}
2871.tooltip.bottom .tooltip-arrow {
2872 top: 0;
2873 left: 50%;
2874 margin-left: -5px;
2875 border-left: 5px solid transparent;
2876 border-right: 5px solid transparent;
2877 border-bottom: 5px solid #000000;
2878}
2879.tooltip.right .tooltip-arrow {
2880 top: 50%;
2881 left: 0;
2882 margin-top: -5px;
2883 border-top: 5px solid transparent;
2884 border-bottom: 5px solid transparent;
2885 border-right: 5px solid #000000;
2886}
2887.tooltip-inner {
2888 max-width: 200px;
2889 padding: 3px 8px;
2890 color: #ffffff;
2891 text-align: center;
2892 text-decoration: none;
2893 background-color: #000000;
2894 -webkit-border-radius: 4px;
2895 -moz-border-radius: 4px;
2896 border-radius: 4px;
2897}
2898.tooltip-arrow {
2899 position: absolute;
2900 width: 0;
2901 height: 0;
2902}
2903.popover {
2904 position: absolute;
2905 top: 0;
2906 left: 0;
2907 z-index: 1010;
2908 display: none;
2909 padding: 5px;
2910}
2911.popover.top {
2912 margin-top: -5px;
2913}
2914.popover.right {
2915 margin-left: 5px;
2916}
2917.popover.bottom {
2918 margin-top: 5px;
2919}
2920.popover.left {
2921 margin-left: -5px;
2922}
2923.popover.top .arrow {
2924 bottom: 0;
2925 left: 50%;
2926 margin-left: -5px;
2927 border-left: 5px solid transparent;
2928 border-right: 5px solid transparent;
2929 border-top: 5px solid #000000;
2930}
2931.popover.right .arrow {
2932 top: 50%;
2933 left: 0;
2934 margin-top: -5px;
2935 border-top: 5px solid transparent;
2936 border-bottom: 5px solid transparent;
2937 border-right: 5px solid #000000;
2938}
2939.popover.bottom .arrow {
2940 top: 0;
2941 left: 50%;
2942 margin-left: -5px;
2943 border-left: 5px solid transparent;
2944 border-right: 5px solid transparent;
2945 border-bottom: 5px solid #000000;
2946}
2947.popover.left .arrow {
2948 top: 50%;
2949 right: 0;
2950 margin-top: -5px;
2951 border-top: 5px solid transparent;
2952 border-bottom: 5px solid transparent;
2953 border-left: 5px solid #000000;
2954}
2955.popover .arrow {
2956 position: absolute;
2957 width: 0;
2958 height: 0;
2959}
2960.popover-inner {
2961 padding: 3px;
2962 width: 280px;
2963 overflow: hidden;
2964 background: #000000;
2965 background: rgba(0, 0, 0, 0.8);
2966 -webkit-border-radius: 6px;
2967 -moz-border-radius: 6px;
2968 border-radius: 6px;
2969 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2970 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2971 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2972}
2973.popover-title {
2974 padding: 9px 15px;
2975 line-height: 1;
2976 background-color: #f5f5f5;
2977 border-bottom: 1px solid #eee;
2978 -webkit-border-radius: 3px 3px 0 0;
2979 -moz-border-radius: 3px 3px 0 0;
2980 border-radius: 3px 3px 0 0;
2981}
2982.popover-content {
2983 padding: 14px;
2984 background-color: #ffffff;
2985 -webkit-border-radius: 0 0 3px 3px;
2986 -moz-border-radius: 0 0 3px 3px;
2987 border-radius: 0 0 3px 3px;
2988 -webkit-background-clip: padding-box;
2989 -moz-background-clip: padding-box;
2990 background-clip: padding-box;
2991}
2992.popover-content p, .popover-content ul, .popover-content ol {
2993 margin-bottom: 0;
2994}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302995
Rushabh Mehtad0251332012-02-21 17:26:50 +05302996/*
Rushabh Mehta2886b952012-02-24 11:26:31 +05302997 * lib/css/bootstrap/label.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302998 */
2999.label {
Rushabh Mehta2886b952012-02-24 11:26:31 +05303000 padding: 2px 4px 3px;
3001 font-size: 11.049999999999999px;
3002 font-weight: bold;
3003 color: #ffffff;
3004 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3005 background-color: #999999;
3006 -webkit-border-radius: 3px;
3007 -moz-border-radius: 3px;
3008 border-radius: 3px;
3009}
3010.label:hover {
3011 color: #ffffff;
3012 text-decoration: none;
3013}
3014.label-important {
3015 background-color: #b94a48;
3016}
3017.label-important:hover {
3018 background-color: #953b39;
3019}
3020.label-warning {
3021 background-color: #f89406;
3022}
3023.label-warning:hover {
3024 background-color: #c67605;
3025}
3026.label-success {
3027 background-color: #468847;
3028}
3029.label-success:hover {
3030 background-color: #356635;
3031}
3032.label-info {
3033 background-color: #3a87ad;
3034}
3035.label-info:hover {
3036 background-color: #2d6987;
3037}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303038
Rushabh Mehta2886b952012-02-24 11:26:31 +05303039/*
3040 * lib/css/bootstrap/icons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303041 */
3042[class^="icon-"], [class*=" icon-"] {
Rushabh Mehta2886b952012-02-24 11:26:31 +05303043 display: inline-block;
3044 width: 14px;
3045 height: 14px;
3046 line-height: 14px;
3047 vertical-align: text-top;
3048 background-image: url("../lib/images/icons/glyphicons-halflings.png");
3049 background-position: 14px 14px;
3050 background-repeat: no-repeat;
3051 *margin-right: .3em;
3052}
3053[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
3054 *margin-left: 0;
3055}
3056.icon-white {
3057 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
3058}
3059.icon-glass {
3060 background-position: 0 0;
3061}
3062.icon-music {
3063 background-position: -24px 0;
3064}
3065.icon-search {
3066 background-position: -48px 0;
3067}
3068.icon-envelope {
3069 background-position: -72px 0;
3070}
3071.icon-heart {
3072 background-position: -96px 0;
3073}
3074.icon-star {
3075 background-position: -120px 0;
3076}
3077.icon-star-empty {
3078 background-position: -144px 0;
3079}
3080.icon-user {
3081 background-position: -168px 0;
3082}
3083.icon-film {
3084 background-position: -192px 0;
3085}
3086.icon-th-large {
3087 background-position: -216px 0;
3088}
3089.icon-th {
3090 background-position: -240px 0;
3091}
3092.icon-th-list {
3093 background-position: -264px 0;
3094}
3095.icon-ok {
3096 background-position: -288px 0;
3097}
3098.icon-remove {
3099 background-position: -312px 0;
3100}
3101.icon-zoom-in {
3102 background-position: -336px 0;
3103}
3104.icon-zoom-out {
3105 background-position: -360px 0;
3106}
3107.icon-off {
3108 background-position: -384px 0;
3109}
3110.icon-signal {
3111 background-position: -408px 0;
3112}
3113.icon-cog {
3114 background-position: -432px 0;
3115}
3116.icon-trash {
3117 background-position: -456px 0;
3118}
3119.icon-home {
3120 background-position: 0 -24px;
3121}
3122.icon-file {
3123 background-position: -24px -24px;
3124}
3125.icon-time {
3126 background-position: -48px -24px;
3127}
3128.icon-road {
3129 background-position: -72px -24px;
3130}
3131.icon-download-alt {
3132 background-position: -96px -24px;
3133}
3134.icon-download {
3135 background-position: -120px -24px;
3136}
3137.icon-upload {
3138 background-position: -144px -24px;
3139}
3140.icon-inbox {
3141 background-position: -168px -24px;
3142}
3143.icon-play-circle {
3144 background-position: -192px -24px;
3145}
3146.icon-repeat {
3147 background-position: -216px -24px;
3148}
3149.icon-refresh {
3150 background-position: -240px -24px;
3151}
3152.icon-list-alt {
3153 background-position: -264px -24px;
3154}
3155.icon-lock {
3156 background-position: -287px -24px;
3157}
3158.icon-flag {
3159 background-position: -312px -24px;
3160}
3161.icon-headphones {
3162 background-position: -336px -24px;
3163}
3164.icon-volume-off {
3165 background-position: -360px -24px;
3166}
3167.icon-volume-down {
3168 background-position: -384px -24px;
3169}
3170.icon-volume-up {
3171 background-position: -408px -24px;
3172}
3173.icon-qrcode {
3174 background-position: -432px -24px;
3175}
3176.icon-barcode {
3177 background-position: -456px -24px;
3178}
3179.icon-tag {
3180 background-position: 0 -48px;
3181}
3182.icon-tags {
3183 background-position: -25px -48px;
3184}
3185.icon-book {
3186 background-position: -48px -48px;
3187}
3188.icon-bookmark {
3189 background-position: -72px -48px;
3190}
3191.icon-print {
3192 background-position: -96px -48px;
3193}
3194.icon-camera {
3195 background-position: -120px -48px;
3196}
3197.icon-font {
3198 background-position: -144px -48px;
3199}
3200.icon-bold {
3201 background-position: -167px -48px;
3202}
3203.icon-italic {
3204 background-position: -192px -48px;
3205}
3206.icon-text-height {
3207 background-position: -216px -48px;
3208}
3209.icon-text-width {
3210 background-position: -240px -48px;
3211}
3212.icon-align-left {
3213 background-position: -264px -48px;
3214}
3215.icon-align-center {
3216 background-position: -288px -48px;
3217}
3218.icon-align-right {
3219 background-position: -312px -48px;
3220}
3221.icon-align-justify {
3222 background-position: -336px -48px;
3223}
3224.icon-list {
3225 background-position: -360px -48px;
3226}
3227.icon-indent-left {
3228 background-position: -384px -48px;
3229}
3230.icon-indent-right {
3231 background-position: -408px -48px;
3232}
3233.icon-facetime-video {
3234 background-position: -432px -48px;
3235}
3236.icon-picture {
3237 background-position: -456px -48px;
3238}
3239.icon-pencil {
3240 background-position: 0 -72px;
3241}
3242.icon-map-marker {
3243 background-position: -24px -72px;
3244}
3245.icon-adjust {
3246 background-position: -48px -72px;
3247}
3248.icon-tint {
3249 background-position: -72px -72px;
3250}
3251.icon-edit {
3252 background-position: -96px -72px;
3253}
3254.icon-share {
3255 background-position: -120px -72px;
3256}
3257.icon-check {
3258 background-position: -144px -72px;
3259}
3260.icon-move {
3261 background-position: -168px -72px;
3262}
3263.icon-step-backward {
3264 background-position: -192px -72px;
3265}
3266.icon-fast-backward {
3267 background-position: -216px -72px;
3268}
3269.icon-backward {
3270 background-position: -240px -72px;
3271}
3272.icon-play {
3273 background-position: -264px -72px;
3274}
3275.icon-pause {
3276 background-position: -288px -72px;
3277}
3278.icon-stop {
3279 background-position: -312px -72px;
3280}
3281.icon-forward {
3282 background-position: -336px -72px;
3283}
3284.icon-fast-forward {
3285 background-position: -360px -72px;
3286}
3287.icon-step-forward {
3288 background-position: -384px -72px;
3289}
3290.icon-eject {
3291 background-position: -408px -72px;
3292}
3293.icon-chevron-left {
3294 background-position: -432px -72px;
3295}
3296.icon-chevron-right {
3297 background-position: -456px -72px;
3298}
3299.icon-plus-sign {
3300 background-position: 0 -96px;
3301}
3302.icon-minus-sign {
3303 background-position: -24px -96px;
3304}
3305.icon-remove-sign {
3306 background-position: -48px -96px;
3307}
3308.icon-ok-sign {
3309 background-position: -72px -96px;
3310}
3311.icon-question-sign {
3312 background-position: -96px -96px;
3313}
3314.icon-info-sign {
3315 background-position: -120px -96px;
3316}
3317.icon-screenshot {
3318 background-position: -144px -96px;
3319}
3320.icon-remove-circle {
3321 background-position: -168px -96px;
3322}
3323.icon-ok-circle {
3324 background-position: -192px -96px;
3325}
3326.icon-ban-circle {
3327 background-position: -216px -96px;
3328}
3329.icon-arrow-left {
3330 background-position: -240px -96px;
3331}
3332.icon-arrow-right {
3333 background-position: -264px -96px;
3334}
3335.icon-arrow-up {
3336 background-position: -289px -96px;
3337}
3338.icon-arrow-down {
3339 background-position: -312px -96px;
3340}
3341.icon-share-alt {
3342 background-position: -336px -96px;
3343}
3344.icon-resize-full {
3345 background-position: -360px -96px;
3346}
3347.icon-resize-small {
3348 background-position: -384px -96px;
3349}
3350.icon-plus {
3351 background-position: -408px -96px;
3352}
3353.icon-minus {
3354 background-position: -433px -96px;
3355}
3356.icon-asterisk {
3357 background-position: -456px -96px;
3358}
3359.icon-exclamation-sign {
3360 background-position: 0 -120px;
3361}
3362.icon-gift {
3363 background-position: -24px -120px;
3364}
3365.icon-leaf {
3366 background-position: -48px -120px;
3367}
3368.icon-fire {
3369 background-position: -72px -120px;
3370}
3371.icon-eye-open {
3372 background-position: -96px -120px;
3373}
3374.icon-eye-close {
3375 background-position: -120px -120px;
3376}
3377.icon-warning-sign {
3378 background-position: -144px -120px;
3379}
3380.icon-plane {
3381 background-position: -168px -120px;
3382}
3383.icon-calendar {
3384 background-position: -192px -120px;
3385}
3386.icon-random {
3387 background-position: -216px -120px;
3388}
3389.icon-comment {
3390 background-position: -240px -120px;
3391}
3392.icon-magnet {
3393 background-position: -264px -120px;
3394}
3395.icon-chevron-up {
3396 background-position: -288px -120px;
3397}
3398.icon-chevron-down {
3399 background-position: -313px -119px;
3400}
3401.icon-retweet {
3402 background-position: -336px -120px;
3403}
3404.icon-shopping-cart {
3405 background-position: -360px -120px;
3406}
3407.icon-folder-close {
3408 background-position: -384px -120px;
3409}
3410.icon-folder-open {
3411 background-position: -408px -120px;
3412}
3413.icon-resize-vertical {
3414 background-position: -432px -119px;
3415}
3416.icon-resize-horizontal {
3417 background-position: -456px -118px;
3418}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303419
Rushabh Mehta2886b952012-02-24 11:26:31 +05303420/*
Rushabh Mehtad48417c2012-03-19 18:42:13 +05303421 * lib/css/bootstrap/popover.css
3422 */
3423.popover {
3424 position: absolute;
3425 top: 0;
3426 left: 0;
3427 z-index: 1010;
3428 display: none;
3429 padding: 5px;
3430}
3431.popover.top {
3432 margin-top: -5px;
3433}
3434.popover.right {
3435 margin-left: 5px;
3436}
3437.popover.bottom {
3438 margin-top: 5px;
3439}
3440.popover.left {
3441 margin-left: -5px;
3442}
3443.popover.top .arrow {
3444 bottom: 0;
3445 left: 50%;
3446 margin-left: -5px;
3447 border-left: 5px solid transparent;
3448 border-right: 5px solid transparent;
3449 border-top: 5px solid #000000;
3450}
3451.popover.right .arrow {
3452 top: 50%;
3453 left: 0;
3454 margin-top: -5px;
3455 border-top: 5px solid transparent;
3456 border-bottom: 5px solid transparent;
3457 border-right: 5px solid #000000;
3458}
3459.popover.bottom .arrow {
3460 top: 0;
3461 left: 50%;
3462 margin-left: -5px;
3463 border-left: 5px solid transparent;
3464 border-right: 5px solid transparent;
3465 border-bottom: 5px solid #000000;
3466}
3467.popover.left .arrow {
3468 top: 50%;
3469 right: 0;
3470 margin-top: -5px;
3471 border-top: 5px solid transparent;
3472 border-bottom: 5px solid transparent;
3473 border-left: 5px solid #000000;
3474}
3475.popover .arrow {
3476 position: absolute;
3477 width: 0;
3478 height: 0;
3479}
3480.popover-inner {
3481 padding: 3px;
3482 width: 280px;
3483 overflow: hidden;
3484 background: #000000;
3485 background: rgba(0, 0, 0, 0.8);
3486 -webkit-border-radius: 6px;
3487 -moz-border-radius: 6px;
3488 border-radius: 6px;
3489 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3490 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3491 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3492}
3493.popover-title {
3494 padding: 9px 15px;
3495 line-height: 1;
3496 background-color: #f5f5f5;
3497 border-bottom: 1px solid #eee;
3498 -webkit-border-radius: 3px 3px 0 0;
3499 -moz-border-radius: 3px 3px 0 0;
3500 border-radius: 3px 3px 0 0;
3501}
3502.popover-content {
3503 padding: 14px;
3504 background-color: #ffffff;
3505 -webkit-border-radius: 0 0 3px 3px;
3506 -moz-border-radius: 0 0 3px 3px;
3507 border-radius: 0 0 3px 3px;
3508 -webkit-background-clip: padding-box;
3509 -moz-background-clip: padding-box;
3510 background-clip: padding-box;
3511}
3512.popover-content p, .popover-content ul, .popover-content ol {
3513 margin-bottom: 0;
3514}
3515
3516/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303517 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303518 */
3519h1, h2, h3, h4, h5 {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05303520 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05303521 font-weight: normal;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05303522 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303523}
3524
3525body {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05303526 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05303527 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303528}
3529
3530span, div, td, input, textarea, button, select {
3531 font-family: inherit;
3532}
3533
3534body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05303535 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05303536 color: #616161;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303537}
3538
Rushabh Mehta983a1712012-03-21 13:35:34 +05303539.small {
3540 font-size: 11.5px;
3541}
3542
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303543.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303544 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303545 text-align: center;
3546}
3547
Anand Doshidb628762012-02-24 17:56:00 +05303548.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303549 margin: -3px 0px;
3550 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303551 min-width: 20px;
3552 text-align: center;
3553 display: inline-block;
3554 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303555 color: #999999;
3556 background-color: #333131;
3557}
3558
3559.navbar-new-comments:hover,
3560.navbar-new-comments:active,
3561.navbar-new-comments:focus {
3562 color: #fff;
3563}
3564
3565
3566.navbar-new-comments-true {
3567 color: #fff;
3568 background-color: #B00D07;
3569}
3570
3571.navbar-icon-home {
3572 vertical-align: middle;
3573 opacity:0.4;
3574 Filter:alpha(opacity=40); /* For IE8 and earlier */
3575}
3576
3577.navbar-icon-home:hover,
3578.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05303579.navbar-icon-home:active,
3580.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303581 opacity:1;
3582 Filter:alpha(opacity=100); /* For IE8 and earlier */
3583}
3584
3585/*extra size menus for recent*/
3586.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3587 min-width: 160px !important;
3588 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303589}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303590