blob: 0ac96aada2749f32b446ca0b23609ad0aedf54dd [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
3 * lib/css/legacy/body.css
4 */html {
5 margin: 0px;
6 padding: 0px;
7}
8
9body {
10 margin: 0px;
11 padding: 0px;
12 font-family: Arial, Helvetica, Sans;
13 font-size: 12px;
14 color: #000;
Rushabh Mehta3f29b852012-02-20 15:40:29 +053015 background-color: #e2e2e2;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053016}
17
Rushabh Mehtaafaac602012-02-14 11:44:13 +053018pre { margin: 0px; padding: 0px; }
19
20button { margin: 2px; margin-left: 0px; }
21
22label {
23 padding-top: 15px;
24 color: #404040;
25}
26
27select, input, textarea {
28 border: 1px solid #AAA;
29 -moz-border-radius: 4px;
30 -webkit-border-radius: 4px;
31 font-size: 13px;
32 padding: 4px;
33 color: #222;
34}
35
36textarea {
37 font-family: inherit;
38 height: 120px;
39 width: 90%;
40 font-size: 12px;
41 white-space: normal;
42}
43
44table { padding: 0px; border-collapse: 'collapse'}
45
46td {
47 padding:0px;
48 margin: 0px;
49 vertical-align: top;
50}
51
52p {
53 margin: 0px 0px 9px 0px;
54 line-height: 1.5em;
55}
56
57li {
58 line-height: 1.5em;
59}
60
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053061hr {
62 margin: 18px 0;
63 border: 0;
64 border-top: 1px solid #e5e5e5;
65 border-bottom: 1px solid #ffffff;
66}
67
Rushabh Mehtad0251332012-02-21 17:26:50 +053068/* links */
69
Rushabh Mehtaafaac602012-02-14 11:44:13 +053070a:active { outline:none; }
71
Rushabh Mehtad0251332012-02-21 17:26:50 +053072a {
73 color: #0088cc;
74 text-decoration: none;
75}
76a:hover {
77 color: #005580;
78 text-decoration: underline;
79}
80
81.link_type {
82 padding:2px;
83 color: #0088cc;
84 cursor: pointer;
85}
86
87.link_type:hover {
88 color: #005580;
89 text-decoration: underline;
90}
91
Rushabh Mehtaafaac602012-02-14 11:44:13 +053092:focus { -moz-outline-style:none; }
93
94table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
95table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
96
97div.fix_ff_cursor { overflow: auto; }
98
99/* --- Layout --- */
100
101div.comment { color: #444; }
102
103div#body_div {
104 position: relative;
105 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530106 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530107 width: 900px;
108 margin: auto;
109 margin-top: 56px;
110}
111
112footer {
113 width: 900px;
114 margin: auto;
115}
116header .container {
117 width: 900px;
118 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530119}
120
121div.no_script {
122 display: none;
123}
124
125div.loading_div {
126 position: absolute;
127 background-color: #FFFFCC;
128 z-index: 1999;
129 right: 5px;
130 width: 90px;
131 display: none;
132 text-align: center;
133 padding: 2px;
134 font-size: 12px;
135 border: 1px solid #FF4;
136}
137
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530138div.std-footer {
139 margin: 13px 0px;
140 border-top: 1px solid #AAA;
141 padding: 13px;
142}
143
144div.std-footer-item {
145 margin: 0px 13px 13px 0px;
146}
147
148.shadow {
149 -moz-box-shadow: 0px 2px 2px #888;
150 -webkit-box-shadow: 0px 2px 2px #888;
151 box-shadow: 0px 2px 2px #888;
152}
153
154.round {
155 -webkit-border-radius: 5px;
156 -moz-border-radius: 5px;
157 border-radius: 5px;
158}
159.gradient {
160 background: #ededed; /* Old browsers */
161 background: -moz-linear-gradient(top, #ededed 0%, #d1d1d1 47%, #b7b7b7 100%); /* FF3.6+ */
162 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(47%,#d1d1d1), color-stop(100%,#b7b7b7)); /* Chrome,Safari4+ */
163 background: -webkit-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Chrome10+,Safari5.1+ */
164 background: -o-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Opera11.10+ */
165 background: -ms-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* IE10+ */
166 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#b7b7b7',GradientType=0 ); /* IE6-9 */
167 background: linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* W3C */
168}
169
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530170.layout_wrapper, .layout-wrapper {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530171 -moz-box-shadow: 1px 1px 8px #555;
172 -webkit-box-shadow: 1px 1px 8px #555;
173 box-shadow: 1px 1px 8px #555;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530174 background-color: #fff;
175 padding: 15px;
176}
177
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530178.layout-wrapper-background {
179 background-color: #f2f2f2 !important;
180 padding: 0px;
181}
182
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530183.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530184 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530185 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530186 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530187 background-color: #FFF;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530188 min-height: 450px;
189}
190
191.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530192 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530193 /*float: right;*/
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530194 color: #606060;
195 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530196 padding: 15px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530197 min-height: 450px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530198}
199
200/* from bootstrap */
201.container {
202 margin-left: auto;
203 margin-right: auto;
204 zoom: 1;
205}
206.container:before, .container:after {
207 display: table;
208 content: "";
209 zoom: 1;
210}
211.container:after {
212 clear: both;
213}
214
Anand Doshi40ee8d62012-02-24 19:21:47 +0530215.well {
216 min-height: 20px;
217 padding: 19px;
218 margin-bottom: 20px;
219 background-color: #f5f5f5;
220 border: 1px solid #eee;
221 border: 1px solid rgba(0, 0, 0, 0.05);
222 -webkit-border-radius: 4px;
223 -moz-border-radius: 4px;
224 border-radius: 4px;
225 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
226 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
227 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
228}
229
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530230/*
231 * lib/css/legacy/menus.css
232 */
233/******** Menus - menu.js ************/
234
235ul.menu_toolbar {
236 z-index: 30;
237 padding: 0px;
238 margin: 0px;
239 margin-top: 1px;
240}
241
242ul.menu_toolbar li {
243 list-style: none;
244 margin: 0px;
245 float: left;
246}
247
248.top_menu {
249 margin: 0px;
250 padding: 4px;
251 cursor: pointer;
252 color: #FFF;
253 margin-right: 8px;
254}
255
256.top_menu_mo {
257 background-color: #000;
258
259 -moz-border-radius: 5px;
260 -webkit-border-radius: 5px;
261}
262
263div.menu_toolbar_dropdown {
264 position: absolute;
265 margin-top: 4px;
266 margin-left: 8px;
267 width: 140px;
268 background-color: #FFF;
269 color: #000;
270 display: none;
271 border: 2px solid #333;
272 z-index: 31;
273 overflow-y: auto;
274 overflow-x: hidden;
275}
276
277div.dd_item {
278 cursor: pointer;
279 padding: 4px;
280 background-color: #FFF;
281}
282div.dd_item_mo { background-color: #FE8; }
283/*
284 * lib/css/legacy/messages.css
285 */
286/* FLOATING MESSAGE */
287
288.btn-img { cursor: pointer; }
289
290div.fetching { color: #888; text-align:right; }
291
292div.notice {
293 postion: absolute;
294 background-color: #000;
295 -moz-border-radius: 5px; -webkit-border-radius: 5px;
296 opacity: 0.6;
297 right: 0;
298 top: 0;
299 margin-top: 8px;
300 z-index: -1;
301 padding: 8px;
302}
303
304/** help **/
305
306.info-box {
307 background-color: #F8F8F8;
308 border: 1px solid #CCCCCC;
309 border-radius: 3px 3px 3px 3px;
310 line-height: 1.6em;
311 overflow: auto;
312 padding: 6px 10px;
313 margin-bottom: 9px;
314}
315
316.help_box, .help-box {
317 background-color:#FFC;
318 font-size: 13px;
319 color: #864;
320 padding: 7px;
321 margin: 11px 0px;
322 border: 1px solid #EEB;
323}
324
325.help_box_big {
326 background-color:#FFC;
327 color: #864;
328 padding: 7px;
329 margin: 7px 0px;
330 border: 1px solid #EEB;
331 text-align: center;
332 font-size: 14px;
333}
334/*
335 * lib/css/legacy/dialog.css
336 *//***** Dialogs *******/
337
338div.dialog_wrapper {
339 position: absolute;
340 width: 440px;
341 display: none;
342 z-index: 90;
343 background-color: #FFF;
344 border: 3px solid #222;
345 box-shadow:1px 1px 5px #777;
346 -moz-box-shadow: 1px 1px 5px #777;
347 -webkit-box-shadow: 1px 1px 5px #777;
348
349 border-radius: 5px;
350 -moz-border-radius: 5px;
351 -webkit-border-radius: 5px;
352}
353
354div.dialog_head {
355 height: 22px;
356 padding: 4px;
357 background-color: #222;
358 color: #FFF;
359}
360
361div.dialog_body {
362 padding: 8px 4px 16px 4px;
363 border-radius: 5px;
364 -moz-border-radius: 5px;
365 -webkit-border-radius: 5px;
366}
367
368div.dialog_back {
369 position: fixed;
370 display: none;
371 top: 0px;
372 left: 0px;
373 bottom: 0px;
374 right: 0px;
375 background-color: #EEE;
376 opacity: 0.6;
377 z-index: 50;
378 text-align: center;
379}
380
381div.dialog_message {
382 display: none;
383 position: absolute;
384 width: 250px;
385 font-size: 12px;
386 z-index: 91;
387 background-color:#FFF;
388 padding: 12px;
389 border: 1px solid #444;
390}
391
392div.dialog_row {
393 padding: 8px 8px 0px 8px;
394}
395
396div.dialog_row table {
397 width: 100%;
398}
399
400div.dialog_row table td {
401}
402
403div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
404 width: 80%;
405 font-size: 14px;
406}
407
408div.dialog_row table td textarea {
409 width: 80%;
410 height: 200px;
411 font-size: 12px;
412}
413
414/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530415 * lib/css/bootstrap/headings.css
416 *//* heading from bootstrap */
417
418h1,
419h2,
420h3,
421h4,
422h5,
423h6 {
424 margin: 0;
425 font-weight: bold;
426 color: #333333;
427 text-rendering: optimizelegibility;
428 margin-bottom: 0.3em;
429}
430h1 small,
431h2 small,
432h3 small,
433h4 small,
434h5 small,
435h6 small {
436 font-weight: normal;
437 color: #999999;
438}
439h1 {
440 font-size: 30px;
441 line-height: 36px;
442}
443h1 small {
444 font-size: 18px;
445}
446h2 {
447 font-size: 24px;
448 line-height: 36px;
449}
450h2 small {
451 font-size: 18px;
452}
453h3 {
454 line-height: 27px;
455 font-size: 18px;
456}
457h3 small {
458 font-size: 14px;
459}
460h4, h5, h6 {
461 line-height: 18px;
462}
463h4 {
464 font-size: 14px;
465}
466h4 small {
467 font-size: 12px;
468}
469h5 {
470 font-size: 12px;
471}
472h6 {
473 font-size: 11px;
474 color: #999999;
475 text-transform: uppercase;
476}
477/*
478 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530479 */.close {
480 float: right;
481 font-size: 20px;
482 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530483 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530484 color: #000000;
485 text-shadow: 0 1px 0 #ffffff;
486 opacity: 0.2;
487 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530488}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530489.close:hover {
490 color: #000000;
491 text-decoration: none;
492 opacity: 0.4;
493 filter: alpha(opacity=40);
494 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530495}
496.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530497 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530498 padding: 4px 10px 4px;
499 font-size: 13px;
500 line-height: 18px;
501 color: #333333;
502 text-align: center;
503 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
504 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530505 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
506 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
507 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
508 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
509 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
510 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530511 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530512 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530513 border: 1px solid #ccc;
514 border-bottom-color: #bbb;
515 -webkit-border-radius: 4px;
516 -moz-border-radius: 4px;
517 border-radius: 4px;
518 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
519 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
520 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 +0530521 cursor: pointer;
522 *margin-left: .3em;
523}
524.btn:first-child {
525 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530526}
527.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530528 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530529 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530530 background-color: #e6e6e6;
531 background-position: 0 -15px;
532 -webkit-transition: background-position 0.1s linear;
533 -moz-transition: background-position 0.1s linear;
534 -ms-transition: background-position 0.1s linear;
535 -o-transition: background-position 0.1s linear;
536 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530537}
538.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530539 outline: thin dotted;
540 outline: 5px auto -webkit-focus-ring-color;
541 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530542}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530543.btn.active, .btn:active {
544 background-image: none;
545 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
546 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
547 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
548 background-color: #e6e6e6;
549 background-color: #d9d9d9 \9;
550 color: rgba(0, 0, 0, 0.5);
551 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530552}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530553.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530554 cursor: default;
555 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530556 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530557 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530558 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530559 -webkit-box-shadow: none;
560 -moz-box-shadow: none;
561 box-shadow: none;
562}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530563.btn-large {
564 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530565 font-size: 15px;
566 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530567 -webkit-border-radius: 5px;
568 -moz-border-radius: 5px;
569 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530570}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530571.btn-large .icon {
572 margin-top: 1px;
573}
574.btn-small {
575 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530576 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530577 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530578}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530579.btn-small .icon {
580 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530581}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530582.btn-primary,
583.btn-primary:hover,
584.btn-warning,
585.btn-warning:hover,
586.btn-danger,
587.btn-danger:hover,
588.btn-success,
589.btn-success:hover,
590.btn-info,
591.btn-info:hover {
592 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
593 color: #ffffff;
594}
595.btn-primary.active,
596.btn-warning.active,
597.btn-danger.active,
598.btn-success.active,
599.btn-info.active {
600 color: rgba(255, 255, 255, 0.75);
601}
602.btn-primary {
603 background-color: #006dcc;
604 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
605 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
606 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
607 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
608 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
609 background-image: linear-gradient(top, #0088cc, #0044cc);
610 background-repeat: repeat-x;
611 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
612 border-color: #0044cc #0044cc #002a80;
613 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
614 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
615}
616.btn-primary:hover,
617.btn-primary:active,
618.btn-primary.active,
619.btn-primary.disabled,
620.btn-primary[disabled] {
621 background-color: #0044cc;
622}
623.btn-primary:active, .btn-primary.active {
624 background-color: #003399 \9;
625}
626.btn-warning {
627 background-color: #faa732;
628 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
629 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
630 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
631 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
632 background-image: -o-linear-gradient(top, #fbb450, #f89406);
633 background-image: linear-gradient(top, #fbb450, #f89406);
634 background-repeat: repeat-x;
635 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
636 border-color: #f89406 #f89406 #ad6704;
637 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
638 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
639}
640.btn-warning:hover,
641.btn-warning:active,
642.btn-warning.active,
643.btn-warning.disabled,
644.btn-warning[disabled] {
645 background-color: #f89406;
646}
647.btn-warning:active, .btn-warning.active {
648 background-color: #c67605 \9;
649}
650.btn-danger {
651 background-color: #da4f49;
652 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
653 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
654 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
655 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
656 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
657 background-image: linear-gradient(top, #ee5f5b, #bd362f);
658 background-repeat: repeat-x;
659 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
660 border-color: #bd362f #bd362f #802420;
661 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
662 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
663}
664.btn-danger:hover,
665.btn-danger:active,
666.btn-danger.active,
667.btn-danger.disabled,
668.btn-danger[disabled] {
669 background-color: #bd362f;
670}
671.btn-danger:active, .btn-danger.active {
672 background-color: #942a25 \9;
673}
674.btn-success {
675 background-color: #5bb75b;
676 background-image: -moz-linear-gradient(top, #62c462, #51a351);
677 background-image: -ms-linear-gradient(top, #62c462, #51a351);
678 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
679 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
680 background-image: -o-linear-gradient(top, #62c462, #51a351);
681 background-image: linear-gradient(top, #62c462, #51a351);
682 background-repeat: repeat-x;
683 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
684 border-color: #51a351 #51a351 #387038;
685 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
686 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
687}
688.btn-success:hover,
689.btn-success:active,
690.btn-success.active,
691.btn-success.disabled,
692.btn-success[disabled] {
693 background-color: #51a351;
694}
695.btn-success:active, .btn-success.active {
696 background-color: #408140 \9;
697}
698.btn-info {
699 background-color: #49afcd;
700 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
701 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
702 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
703 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
704 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
705 background-image: linear-gradient(top, #5bc0de, #2f96b4);
706 background-repeat: repeat-x;
707 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
708 border-color: #2f96b4 #2f96b4 #1f6377;
709 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
710 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
711}
712.btn-info:hover,
713.btn-info:active,
714.btn-info.active,
715.btn-info.disabled,
716.btn-info[disabled] {
717 background-color: #2f96b4;
718}
719.btn-info:active, .btn-info.active {
720 background-color: #24748c \9;
721}
722button.btn, input[type="submit"].btn {
723 *padding-top: 2px;
724 *padding-bottom: 2px;
725}
726button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530727 padding: 0;
728 border: 0;
729}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530730button.btn.large, input[type="submit"].btn.large {
731 *padding-top: 7px;
732 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530733}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530734button.btn.small, input[type="submit"].btn.small {
735 *padding-top: 3px;
736 *padding-bottom: 3px;
737}
738.btn-group {
739 position: relative;
740 *zoom: 1;
741 *margin-left: .3em;
742}
743.btn-group:before, .btn-group:after {
744 display: table;
745 content: "";
746}
747.btn-group:after {
748 clear: both;
749}
750.btn-group:first-child {
751 *margin-left: 0;
752}
753.btn-group + .btn-group {
754 margin-left: 5px;
755}
756.btn-toolbar {
757 margin-top: 9px;
758 margin-bottom: 9px;
759}
760.btn-toolbar .btn-group {
761 display: inline-block;
762 *display: inline;
763 /* IE7 inline-block hack */
764
765 *zoom: 1;
766}
767.btn-group .btn {
768 position: relative;
769 float: left;
770 margin-left: -1px;
771 -webkit-border-radius: 0;
772 -moz-border-radius: 0;
773 border-radius: 0;
774}
775.btn-group .btn:first-child {
776 margin-left: 0;
777 -webkit-border-top-left-radius: 4px;
778 -moz-border-radius-topleft: 4px;
779 border-top-left-radius: 4px;
780 -webkit-border-bottom-left-radius: 4px;
781 -moz-border-radius-bottomleft: 4px;
782 border-bottom-left-radius: 4px;
783}
784.btn-group .btn:last-child, .btn-group .dropdown-toggle {
785 -webkit-border-top-right-radius: 4px;
786 -moz-border-radius-topright: 4px;
787 border-top-right-radius: 4px;
788 -webkit-border-bottom-right-radius: 4px;
789 -moz-border-radius-bottomright: 4px;
790 border-bottom-right-radius: 4px;
791}
792.btn-group .btn.large:first-child {
793 margin-left: 0;
794 -webkit-border-top-left-radius: 6px;
795 -moz-border-radius-topleft: 6px;
796 border-top-left-radius: 6px;
797 -webkit-border-bottom-left-radius: 6px;
798 -moz-border-radius-bottomleft: 6px;
799 border-bottom-left-radius: 6px;
800}
801.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
802 -webkit-border-top-right-radius: 6px;
803 -moz-border-radius-topright: 6px;
804 border-top-right-radius: 6px;
805 -webkit-border-bottom-right-radius: 6px;
806 -moz-border-radius-bottomright: 6px;
807 border-bottom-right-radius: 6px;
808}
809.btn-group .btn:hover,
810.btn-group .btn:focus,
811.btn-group .btn:active,
812.btn-group .btn.active {
813 z-index: 2;
814}
815.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
816 outline: 0;
817}
818.btn-group .dropdown-toggle {
819 padding-left: 8px;
820 padding-right: 8px;
821 -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);
822 -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);
823 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);
824 *padding-top: 5px;
825 *padding-bottom: 5px;
826}
827.btn-group.open {
828 *z-index: 1000;
829}
830.btn-group.open .dropdown-menu {
831 display: block;
832 margin-top: 1px;
833 -webkit-border-radius: 5px;
834 -moz-border-radius: 5px;
835 border-radius: 5px;
836}
837.btn-group.open .dropdown-toggle {
838 background-image: none;
839 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
840 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
841 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
842}
843.btn .caret {
844 margin-top: 7px;
845 margin-left: 0;
846}
847.btn:hover .caret, .open.btn-group .caret {
848 opacity: 1;
849 filter: alpha(opacity=100);
850}
851.btn-primary .caret,
852.btn-danger .caret,
853.btn-info .caret,
854.btn-success .caret {
855 border-top-color: #ffffff;
856 opacity: 0.75;
857 filter: alpha(opacity=75);
858}
859.btn-small .caret {
860 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530861}
862/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530863 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530864 */.nav {
865 margin-left: 0;
866 margin-bottom: 18px;
867 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530868}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530869.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530870 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530871}
872.nav > li > a:hover {
873 text-decoration: none;
874 background-color: #eeeeee;
875}
876.nav-list {
877 padding-left: 14px;
878 padding-right: 14px;
879 margin-bottom: 0;
880}
881.nav-list > li > a, .nav-list .nav-header {
882 display: block;
883 padding: 3px 15px;
884 margin-left: -15px;
885 margin-right: -15px;
886 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
887}
888.nav-list .nav-header {
889 font-size: 11px;
890 font-weight: bold;
891 line-height: 18px;
892 color: #999999;
893 text-transform: uppercase;
894}
895.nav-list > li + .nav-header {
896 margin-top: 9px;
897}
898.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530899 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530900 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
901 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530902}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530903.nav-list [class^="icon-"] {
904 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530905}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530906.nav-tabs, .nav-pills {
907 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530908}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530909.nav-tabs:before,
910.nav-pills:before,
911.nav-tabs:after,
912.nav-pills:after {
913 display: table;
914 content: "";
915}
916.nav-tabs:after, .nav-pills:after {
917 clear: both;
918}
919.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530920 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530921}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530922.nav-tabs > li > a, .nav-pills > li > a {
923 padding-right: 12px;
924 padding-left: 12px;
925 margin-right: 2px;
926 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530927}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530928.nav-tabs {
929 border-bottom: 1px solid #ddd;
930}
931.nav-tabs > li {
932 margin-bottom: -1px;
933}
934.nav-tabs > li > a {
935 padding-top: 9px;
936 padding-bottom: 9px;
937 border: 1px solid transparent;
938 -webkit-border-radius: 4px 4px 0 0;
939 -moz-border-radius: 4px 4px 0 0;
940 border-radius: 4px 4px 0 0;
941}
942.nav-tabs > li > a:hover {
943 border-color: #eeeeee #eeeeee #dddddd;
944}
945.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
946 color: #555555;
947 background-color: #ffffff;
948 border: 1px solid #ddd;
949 border-bottom-color: transparent;
950 cursor: default;
951}
952.nav-pills > li > a {
953 padding-top: 8px;
954 padding-bottom: 8px;
955 margin-top: 2px;
956 margin-bottom: 2px;
957 -webkit-border-radius: 5px;
958 -moz-border-radius: 5px;
959 border-radius: 5px;
960}
961.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530962 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530963 background-color: #0088cc;
964}
965.nav-stacked > li {
966 float: none;
967}
968.nav-stacked > li > a {
969 margin-right: 0;
970}
971.nav-tabs.nav-stacked {
972 border-bottom: 0;
973}
974.nav-tabs.nav-stacked > li > a {
975 border: 1px solid #ddd;
976 -webkit-border-radius: 0;
977 -moz-border-radius: 0;
978 border-radius: 0;
979}
980.nav-tabs.nav-stacked > li:first-child > a {
981 -webkit-border-radius: 4px 4px 0 0;
982 -moz-border-radius: 4px 4px 0 0;
983 border-radius: 4px 4px 0 0;
984}
985.nav-tabs.nav-stacked > li:last-child > a {
986 -webkit-border-radius: 0 0 4px 4px;
987 -moz-border-radius: 0 0 4px 4px;
988 border-radius: 0 0 4px 4px;
989}
990.nav-tabs.nav-stacked > li > a:hover {
991 border-color: #ddd;
992 z-index: 2;
993}
994.nav-pills.nav-stacked > li > a {
995 margin-bottom: 3px;
996}
997.nav-pills.nav-stacked > li:last-child > a {
998 margin-bottom: 1px;
999}
1000.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1001 margin-top: 1px;
1002 border-width: 1px;
1003}
1004.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301005 -webkit-border-radius: 4px;
1006 -moz-border-radius: 4px;
1007 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301008}
1009.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1010 border-top-color: #0088cc;
1011 margin-top: 6px;
1012}
1013.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1014 border-top-color: #005580;
1015}
1016.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1017 border-top-color: #333333;
1018}
1019.nav > .dropdown.active > a:hover {
1020 color: #000000;
1021 cursor: pointer;
1022}
1023.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1024 color: #ffffff;
1025 background-color: #999999;
1026 border-color: #999999;
1027}
1028.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1029 border-top-color: #ffffff;
1030 opacity: 1;
1031 filter: alpha(opacity=100);
1032}
1033
1034.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301035 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301036 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301037}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301038.navbar-inner {
1039 padding-left: 20px;
1040 padding-right: 20px;
1041 background-color: #2c2c2c;
1042 background-image: -moz-linear-gradient(top, #333333, #222222);
1043 background-image: -ms-linear-gradient(top, #333333, #222222);
1044 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1045 background-image: -webkit-linear-gradient(top, #333333, #222222);
1046 background-image: -o-linear-gradient(top, #333333, #222222);
1047 background-image: linear-gradient(top, #333333, #222222);
1048 background-repeat: repeat-x;
1049 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1050 -webkit-border-radius: 4px;
1051 -moz-border-radius: 4px;
1052 border-radius: 4px;
1053 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1054 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1055 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1056}
1057.btn-navbar {
1058 display: none;
1059 float: right;
1060 padding: 7px 10px;
1061 margin-left: 5px;
1062 margin-right: 5px;
1063 background-color: #2c2c2c;
1064 background-image: -moz-linear-gradient(top, #333333, #222222);
1065 background-image: -ms-linear-gradient(top, #333333, #222222);
1066 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1067 background-image: -webkit-linear-gradient(top, #333333, #222222);
1068 background-image: -o-linear-gradient(top, #333333, #222222);
1069 background-image: linear-gradient(top, #333333, #222222);
1070 background-repeat: repeat-x;
1071 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1072 border-color: #222222 #222222 #000000;
1073 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1074 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1075 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1076 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1077 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1078}
1079.btn-navbar:hover,
1080.btn-navbar:active,
1081.btn-navbar.active,
1082.btn-navbar.disabled,
1083.btn-navbar[disabled] {
1084 background-color: #222222;
1085}
1086.btn-navbar:active, .btn-navbar.active {
1087 background-color: #080808 \9;
1088}
1089.btn-navbar .icon-bar {
1090 display: block;
1091 width: 18px;
1092 height: 2px;
1093 background-color: #f5f5f5;
1094 -webkit-border-radius: 1px;
1095 -moz-border-radius: 1px;
1096 border-radius: 1px;
1097 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1098 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1099 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1100}
1101.btn-navbar .icon-bar + .icon-bar {
1102 margin-top: 3px;
1103}
1104.nav-collapse.collapse {
1105 height: auto;
1106}
1107.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301108 text-decoration: none;
1109}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301110.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301111 float: left;
1112 display: block;
1113 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301114 font-size: 20px;
1115 font-weight: 200;
1116 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301117 color: #ffffff;
1118}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301119.navbar .navbar-text {
1120 margin-bottom: 0;
1121 line-height: 40px;
1122 color: #999999;
1123}
1124.navbar .navbar-text a:hover {
1125 color: #ffffff;
1126 background-color: transparent;
1127}
1128.navbar .btn, .navbar .btn-group {
1129 margin-top: 5px;
1130}
1131.navbar .btn-group .btn {
1132 margin-top: 0;
1133}
1134.navbar-form {
1135 margin-bottom: 0;
1136 *zoom: 1;
1137}
1138.navbar-form:before, .navbar-form:after {
1139 display: table;
1140 content: "";
1141}
1142.navbar-form:after {
1143 clear: both;
1144}
1145.navbar-form input, .navbar-form select {
1146 display: inline-block;
1147 margin-top: 5px;
1148 margin-bottom: 0;
1149}
1150.navbar-form .radio, .navbar-form .checkbox {
1151 margin-top: 5px;
1152}
1153.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1154 margin-top: 3px;
1155}
1156.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301157 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301158 float: left;
1159 margin-top: 6px;
1160 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301161}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301162.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301163 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301164 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1165 font-size: 13px;
1166 font-weight: normal;
1167 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301168 color: #ffffff;
1169 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301170 background: #666;
1171 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301172 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301173 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1174 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1175 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 +05301176 -webkit-transition: none;
1177 -moz-transition: none;
1178 -ms-transition: none;
1179 -o-transition: none;
1180 transition: none;
1181}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301182.navbar-search .search-query :-moz-placeholder {
1183 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301184}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301185.navbar-search .search-query::-webkit-input-placeholder {
1186 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301187}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301188.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301189 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301190 background-color: #999999;
1191 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301192}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301193.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301194 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301195 color: #333333;
1196 text-shadow: 0 1px 0 #ffffff;
1197 background-color: #ffffff;
1198 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301199 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1200 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1201 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301202 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301203}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301204.navbar-fixed-top {
1205 position: fixed;
1206 top: 0;
1207 right: 0;
1208 left: 0;
1209 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301210}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301211.navbar-fixed-top .navbar-inner {
1212 padding-left: 0;
1213 padding-right: 0;
1214 -webkit-border-radius: 0;
1215 -moz-border-radius: 0;
1216 border-radius: 0;
1217}
1218.navbar .nav {
1219 position: relative;
1220 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301221 display: block;
1222 float: left;
1223 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301224}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301225.navbar .nav.pull-right {
1226 float: right;
1227}
1228.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301229 display: block;
1230 float: left;
1231}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301232.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301233 float: none;
1234 padding: 10px 10px 11px;
1235 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301236 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301237 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301238 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301239}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301240.navbar .nav > li > a:hover {
1241 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301242 color: #ffffff;
1243 text-decoration: none;
1244}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301245.navbar .nav .active > a, .navbar .nav .active > a:hover {
1246 color: #ffffff;
1247 text-decoration: none;
1248 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301249 background-color: rgba(0, 0, 0, 0.5);
1250}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301251.navbar .divider-vertical {
1252 height: 40px;
1253 width: 1px;
1254 margin: 0 9px;
1255 overflow: hidden;
1256 background-color: #222222;
1257 border-right: 1px solid #333333;
1258}
1259.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301260 margin-left: 10px;
1261 margin-right: 0;
1262}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301263.navbar .dropdown-menu {
1264 margin-top: 1px;
1265 -webkit-border-radius: 4px;
1266 -moz-border-radius: 4px;
1267 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301268}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301269.navbar .dropdown-menu:before {
1270 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301271 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301272 border-left: 7px solid transparent;
1273 border-right: 7px solid transparent;
1274 border-bottom: 7px solid #ccc;
1275 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301276 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301277 top: -7px;
1278 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301279}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301280.navbar .dropdown-menu:after {
1281 content: '';
1282 display: inline-block;
1283 border-left: 6px solid transparent;
1284 border-right: 6px solid transparent;
1285 border-bottom: 6px solid #ffffff;
1286 position: absolute;
1287 top: -6px;
1288 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301289}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301290.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1291 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301292}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301293.navbar .nav .active .caret {
1294 opacity: 1;
1295 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301296}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301297.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1298 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301299}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301300.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301301 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301302}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301303.navbar .nav.pull-right .dropdown-menu {
1304 left: auto;
1305 right: 0;
1306}
1307.navbar .nav.pull-right .dropdown-menu:before {
1308 left: auto;
1309 right: 12px;
1310}
1311.navbar .nav.pull-right .dropdown-menu:after {
1312 left: auto;
1313 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301314}
1315
1316/*extra size menus for recent*/
1317.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1318 width: 260px !important;
1319 max-width: 260px !important;
1320}
1321
1322/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301323.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301324 display: block;
1325 float: right;
1326 width: 20px;
1327 margin-bottom: -5px;
1328 margin-top: 10px;
1329 visibility: hidden;
1330}
1331
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301332.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301333 padding: 0px 20px;
1334}
1335/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301336 * lib/css/bootstrap/dropdown.css
1337 */.dropdown {
1338 position: relative;
1339}
1340.dropdown-toggle {
1341 *margin-bottom: -3px;
1342}
1343.dropdown-toggle:active, .open .dropdown-toggle {
1344 outline: 0;
1345}
1346.caret {
1347 display: inline-block;
1348 width: 0;
1349 height: 0;
1350 text-indent: -99999px;
1351 *text-indent: 0;
1352 vertical-align: top;
1353 border-left: 4px solid transparent;
1354 border-right: 4px solid transparent;
1355 border-top: 4px solid #000000;
1356 opacity: 0.3;
1357 filter: alpha(opacity=30);
1358 content: "\2193";
1359}
1360.dropdown .caret {
1361 margin-top: 8px;
1362 margin-left: 2px;
1363}
1364.dropdown:hover .caret, .open.dropdown .caret {
1365 opacity: 1;
1366 filter: alpha(opacity=100);
1367}
1368.dropdown-menu {
1369 position: absolute;
1370 top: 100%;
1371 left: 0;
1372 z-index: 1000;
1373 float: left;
1374 display: none;
1375 min-width: 160px;
1376 max-width: 220px;
1377 _width: 160px;
1378 padding: 4px 0;
1379 margin: 0;
1380 list-style: none;
1381 background-color: #ffffff;
1382 border-color: #ccc;
1383 border-color: rgba(0, 0, 0, 0.2);
1384 border-style: solid;
1385 border-width: 1px;
1386 -webkit-border-radius: 0 0 5px 5px;
1387 -moz-border-radius: 0 0 5px 5px;
1388 border-radius: 0 0 5px 5px;
1389 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1390 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1391 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1392 -webkit-background-clip: padding-box;
1393 -moz-background-clip: padding;
1394 background-clip: padding-box;
1395 *border-right-width: 2px;
1396 *border-bottom-width: 2px;
1397}
1398.dropdown-menu.bottom-up {
1399 top: auto;
1400 bottom: 100%;
1401 margin-bottom: 2px;
1402}
1403.dropdown-menu .divider {
1404 height: 1px;
1405 margin: 5px 1px;
1406 overflow: hidden;
1407 background-color: #e5e5e5;
1408 border-bottom: 1px solid #ffffff;
1409 *width: 100%;
1410 *margin: -5px 0 5px;
1411}
1412.dropdown-menu a {
1413 display: block;
1414 padding: 3px 15px;
1415 clear: both;
1416 font-weight: normal;
1417 line-height: 18px;
1418 color: #555555;
1419 white-space: nowrap;
1420}
1421.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1422 color: #ffffff;
1423 text-decoration: none;
1424 background-color: #0088cc;
1425}
1426.dropdown.open {
1427 *z-index: 1000;
1428}
1429.dropdown.open .dropdown-toggle {
1430 color: #ffffff;
1431 background: #ccc;
1432 background: rgba(0, 0, 0, 0.3);
1433}
1434.dropdown.open .dropdown-menu {
1435 display: block;
1436}
1437/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301438 * lib/css/bootstrap/tooltip.css
1439 */.tooltip {
1440 position: absolute;
1441 z-index: 1020;
1442 display: block;
1443 visibility: visible;
1444 padding: 5px;
1445 font-size: 11px;
1446 opacity: 0;
1447 filter: alpha(opacity=0);
1448}
1449.tooltip.in {
1450 opacity: 0.8;
1451 filter: alpha(opacity=80);
1452}
1453.tooltip.top {
1454 margin-top: -2px;
1455}
1456.tooltip.right {
1457 margin-left: 2px;
1458}
1459.tooltip.bottom {
1460 margin-top: 2px;
1461}
1462.tooltip.left {
1463 margin-left: -2px;
1464}
1465.tooltip.top .tooltip-arrow {
1466 bottom: 0;
1467 left: 50%;
1468 margin-left: -5px;
1469 border-left: 5px solid transparent;
1470 border-right: 5px solid transparent;
1471 border-top: 5px solid #000000;
1472}
1473.tooltip.left .tooltip-arrow {
1474 top: 50%;
1475 right: 0;
1476 margin-top: -5px;
1477 border-top: 5px solid transparent;
1478 border-bottom: 5px solid transparent;
1479 border-left: 5px solid #000000;
1480}
1481.tooltip.bottom .tooltip-arrow {
1482 top: 0;
1483 left: 50%;
1484 margin-left: -5px;
1485 border-left: 5px solid transparent;
1486 border-right: 5px solid transparent;
1487 border-bottom: 5px solid #000000;
1488}
1489.tooltip.right .tooltip-arrow {
1490 top: 50%;
1491 left: 0;
1492 margin-top: -5px;
1493 border-top: 5px solid transparent;
1494 border-bottom: 5px solid transparent;
1495 border-right: 5px solid #000000;
1496}
1497.tooltip-inner {
1498 max-width: 200px;
1499 padding: 3px 8px;
1500 color: #ffffff;
1501 text-align: center;
1502 text-decoration: none;
1503 background-color: #000000;
1504 -webkit-border-radius: 4px;
1505 -moz-border-radius: 4px;
1506 border-radius: 4px;
1507}
1508.tooltip-arrow {
1509 position: absolute;
1510 width: 0;
1511 height: 0;
1512}
1513.popover {
1514 position: absolute;
1515 top: 0;
1516 left: 0;
1517 z-index: 1010;
1518 display: none;
1519 padding: 5px;
1520}
1521.popover.top {
1522 margin-top: -5px;
1523}
1524.popover.right {
1525 margin-left: 5px;
1526}
1527.popover.bottom {
1528 margin-top: 5px;
1529}
1530.popover.left {
1531 margin-left: -5px;
1532}
1533.popover.top .arrow {
1534 bottom: 0;
1535 left: 50%;
1536 margin-left: -5px;
1537 border-left: 5px solid transparent;
1538 border-right: 5px solid transparent;
1539 border-top: 5px solid #000000;
1540}
1541.popover.right .arrow {
1542 top: 50%;
1543 left: 0;
1544 margin-top: -5px;
1545 border-top: 5px solid transparent;
1546 border-bottom: 5px solid transparent;
1547 border-right: 5px solid #000000;
1548}
1549.popover.bottom .arrow {
1550 top: 0;
1551 left: 50%;
1552 margin-left: -5px;
1553 border-left: 5px solid transparent;
1554 border-right: 5px solid transparent;
1555 border-bottom: 5px solid #000000;
1556}
1557.popover.left .arrow {
1558 top: 50%;
1559 right: 0;
1560 margin-top: -5px;
1561 border-top: 5px solid transparent;
1562 border-bottom: 5px solid transparent;
1563 border-left: 5px solid #000000;
1564}
1565.popover .arrow {
1566 position: absolute;
1567 width: 0;
1568 height: 0;
1569}
1570.popover-inner {
1571 padding: 3px;
1572 width: 280px;
1573 overflow: hidden;
1574 background: #000000;
1575 background: rgba(0, 0, 0, 0.8);
1576 -webkit-border-radius: 6px;
1577 -moz-border-radius: 6px;
1578 border-radius: 6px;
1579 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1580 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1581 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1582}
1583.popover-title {
1584 padding: 9px 15px;
1585 line-height: 1;
1586 background-color: #f5f5f5;
1587 border-bottom: 1px solid #eee;
1588 -webkit-border-radius: 3px 3px 0 0;
1589 -moz-border-radius: 3px 3px 0 0;
1590 border-radius: 3px 3px 0 0;
1591}
1592.popover-content {
1593 padding: 14px;
1594 background-color: #ffffff;
1595 -webkit-border-radius: 0 0 3px 3px;
1596 -moz-border-radius: 0 0 3px 3px;
1597 border-radius: 0 0 3px 3px;
1598 -webkit-background-clip: padding-box;
1599 -moz-background-clip: padding-box;
1600 background-clip: padding-box;
1601}
1602.popover-content p, .popover-content ul, .popover-content ol {
1603 margin-bottom: 0;
1604}
1605/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301606 * erpnext/startup/startup.css
1607 */h1, h2, h3, h4, h5 {
1608 font-family: Tahoma, Arial, Verdana, sans-serif;
1609 font-weight: bold;
1610}
1611
1612body {
1613 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
1614 font-size: 12px;
1615}
1616
1617span, div, td, input, textarea, button, select {
1618 font-family: inherit;
1619}
1620
1621body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301622}
1623
1624.erpnext-footer {
1625 margin: 3px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301626 text-align: center;
1627}
1628
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301629.module-icons {
1630 background: url(../images/module-icons.png) no-repeat top left;
1631 width:16px;
1632 height:16px;
1633}
1634
1635.module-icons-accounts{ background-position: 0 0; }
1636.module-icons-analysis{ background-position: 0 -66px; }
1637.module-icons-buying{ background-position: 0 -132px; }
1638.module-icons-home{ background-position: 0 -198px; }
1639.module-icons-hr{ background-position: 0 -264px; }
1640.module-icons-people{ background-position: 0 -330px; }
1641.module-icons-production{ background-position: 0 -396px; }
1642.module-icons-projects{ background-position: 0 -462px; }
1643.module-icons-selling{ background-position: 0 -528px; }
1644.module-icons-setup{ background-position: 0 -594px; }
1645.module-icons-stock{ background-position: 0 -660px; }
1646.module-icons-support{ background-position: 0 -726px; }
Anand Doshic3023be2012-02-20 16:31:55 +05301647
Anand Doshidb628762012-02-24 17:56:00 +05301648.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301649 margin: -3px 0px;
1650 padding: 2px;
1651 font-size: 14px;
1652 color: #fff;
1653 background-color: #B00D07;
1654 min-width: 20px;
1655 text-align: center;
1656 display: inline-block;
1657 border-radius: 2px;
1658}
1659
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301660/*
1661 * erpnext/website/css/website.css
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301662 */.layout_wrapper {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301663 padding: 20px;
1664}
1665
1666h1 {
1667 margin-bottom: 15px;
1668}
1669
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301670h2 {
1671 margin-bottom: 11px;
1672}
1673
1674h3 {
1675 margin-bottom: 7px;
1676}
1677
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301678pre {
1679 background-color: #F8F8F8;
1680 border: 1px solid #CCCCCC;
1681 border-radius: 3px 3px 3px 3px;
1682 font-size: 13px;
1683 line-height: 19px;
1684 overflow: auto;
1685 padding: 6px 10px;
1686 margin-bottom: 9px;
1687}
1688
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301689.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1690 min-width: 180px;
1691}
1692
Rushabh Mehta13531b72012-02-20 12:35:23 +05301693.web-head-section {
1694 margin-bottom: 20px
1695}
1696
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301697.web-main-section {
1698 width: 65%;
1699 float: left;
1700 margin-bottom: 20px;
1701}
1702
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301703.web-side-section {
1704 width: 30%;
1705 float: right;
1706 margin-bottom: 20px;
1707 margin-right: 15px;
1708 color: #606060;
1709 overflow-x: hidden;
1710}
1711
1712.web-page-status {
1713 padding: 7px;
1714 color: #777;
1715 clear: both;
1716 text-align: right;
1717}
1718
1719.web-page-status a,
1720.web-page-status a:hover,
1721.web-page-status a:visited {
1722 padding: 2px;
1723 background-color: #777;
1724 color: #FFF;
1725 text-decoration: none;
1726}
1727
1728.web-page-status a:hover {
1729 background-color: #444;
1730}
1731
1732footer {
1733 color: #777;
1734}
1735
1736.web-footer {
1737 color: inherit;
1738 text-align: center;
1739 margin: 10px;
1740 line-height: 1.7;
1741}
1742
1743.web-footer div, .web-footer a {
1744 font-size: 11px;
1745}
1746
1747.web-footer-menu {
1748 margin-bottom: 7px;
1749}
1750footer a, footer a:visited {
1751 color: #777;
1752}
1753
1754footer a:hover {
1755 background-color: #777;
1756 color: #fff;
1757}
1758
1759.web-footer-menu ul {
1760 list-style: none;
1761 margin: 0px;
1762 padding: 0px;
1763}
1764
1765.web-footer-menu ul li {
1766 display: inline;
1767 padding: 2px 15px;
1768 border-right: 1px solid #999;
1769}
1770
1771.web-footer-menu ul li:last-child {
1772 border-right: 0px solid #777 !important;
1773}