blob: d7cb10cbafc78e99269659208b392500a7bbe07c [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 {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530171 -moz-box-shadow: 1px 1px 6px #AAA;
172 -webkit-box-shadow: 1px 1px 6px #AAA;
173 box-shadow: 1px 1px 6px #AAA;
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 {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530184 width: 70%;
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%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +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
215/*
216 * lib/css/legacy/menus.css
217 */
218/******** Menus - menu.js ************/
219
220ul.menu_toolbar {
221 z-index: 30;
222 padding: 0px;
223 margin: 0px;
224 margin-top: 1px;
225}
226
227ul.menu_toolbar li {
228 list-style: none;
229 margin: 0px;
230 float: left;
231}
232
233.top_menu {
234 margin: 0px;
235 padding: 4px;
236 cursor: pointer;
237 color: #FFF;
238 margin-right: 8px;
239}
240
241.top_menu_mo {
242 background-color: #000;
243
244 -moz-border-radius: 5px;
245 -webkit-border-radius: 5px;
246}
247
248div.menu_toolbar_dropdown {
249 position: absolute;
250 margin-top: 4px;
251 margin-left: 8px;
252 width: 140px;
253 background-color: #FFF;
254 color: #000;
255 display: none;
256 border: 2px solid #333;
257 z-index: 31;
258 overflow-y: auto;
259 overflow-x: hidden;
260}
261
262div.dd_item {
263 cursor: pointer;
264 padding: 4px;
265 background-color: #FFF;
266}
267div.dd_item_mo { background-color: #FE8; }
268/*
269 * lib/css/legacy/messages.css
270 */
271/* FLOATING MESSAGE */
272
273.btn-img { cursor: pointer; }
274
275div.fetching { color: #888; text-align:right; }
276
277div.notice {
278 postion: absolute;
279 background-color: #000;
280 -moz-border-radius: 5px; -webkit-border-radius: 5px;
281 opacity: 0.6;
282 right: 0;
283 top: 0;
284 margin-top: 8px;
285 z-index: -1;
286 padding: 8px;
287}
288
289/** help **/
290
291.info-box {
292 background-color: #F8F8F8;
293 border: 1px solid #CCCCCC;
294 border-radius: 3px 3px 3px 3px;
295 line-height: 1.6em;
296 overflow: auto;
297 padding: 6px 10px;
298 margin-bottom: 9px;
299}
300
301.help_box, .help-box {
302 background-color:#FFC;
303 font-size: 13px;
304 color: #864;
305 padding: 7px;
306 margin: 11px 0px;
307 border: 1px solid #EEB;
308}
309
310.help_box_big {
311 background-color:#FFC;
312 color: #864;
313 padding: 7px;
314 margin: 7px 0px;
315 border: 1px solid #EEB;
316 text-align: center;
317 font-size: 14px;
318}
319/*
320 * lib/css/legacy/dialog.css
321 *//***** Dialogs *******/
322
323div.dialog_wrapper {
324 position: absolute;
325 width: 440px;
326 display: none;
327 z-index: 90;
328 background-color: #FFF;
329 border: 3px solid #222;
330 box-shadow:1px 1px 5px #777;
331 -moz-box-shadow: 1px 1px 5px #777;
332 -webkit-box-shadow: 1px 1px 5px #777;
333
334 border-radius: 5px;
335 -moz-border-radius: 5px;
336 -webkit-border-radius: 5px;
337}
338
339div.dialog_head {
340 height: 22px;
341 padding: 4px;
342 background-color: #222;
343 color: #FFF;
344}
345
346div.dialog_body {
347 padding: 8px 4px 16px 4px;
348 border-radius: 5px;
349 -moz-border-radius: 5px;
350 -webkit-border-radius: 5px;
351}
352
353div.dialog_back {
354 position: fixed;
355 display: none;
356 top: 0px;
357 left: 0px;
358 bottom: 0px;
359 right: 0px;
360 background-color: #EEE;
361 opacity: 0.6;
362 z-index: 50;
363 text-align: center;
364}
365
366div.dialog_message {
367 display: none;
368 position: absolute;
369 width: 250px;
370 font-size: 12px;
371 z-index: 91;
372 background-color:#FFF;
373 padding: 12px;
374 border: 1px solid #444;
375}
376
377div.dialog_row {
378 padding: 8px 8px 0px 8px;
379}
380
381div.dialog_row table {
382 width: 100%;
383}
384
385div.dialog_row table td {
386}
387
388div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
389 width: 80%;
390 font-size: 14px;
391}
392
393div.dialog_row table td textarea {
394 width: 80%;
395 height: 200px;
396 font-size: 12px;
397}
398
399/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530400 * lib/css/bootstrap/headings.css
401 *//* heading from bootstrap */
402
403h1,
404h2,
405h3,
406h4,
407h5,
408h6 {
409 margin: 0;
410 font-weight: bold;
411 color: #333333;
412 text-rendering: optimizelegibility;
413 margin-bottom: 0.3em;
414}
415h1 small,
416h2 small,
417h3 small,
418h4 small,
419h5 small,
420h6 small {
421 font-weight: normal;
422 color: #999999;
423}
424h1 {
425 font-size: 30px;
426 line-height: 36px;
427}
428h1 small {
429 font-size: 18px;
430}
431h2 {
432 font-size: 24px;
433 line-height: 36px;
434}
435h2 small {
436 font-size: 18px;
437}
438h3 {
439 line-height: 27px;
440 font-size: 18px;
441}
442h3 small {
443 font-size: 14px;
444}
445h4, h5, h6 {
446 line-height: 18px;
447}
448h4 {
449 font-size: 14px;
450}
451h4 small {
452 font-size: 12px;
453}
454h5 {
455 font-size: 12px;
456}
457h6 {
458 font-size: 11px;
459 color: #999999;
460 text-transform: uppercase;
461}
462/*
463 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530464 */.close {
465 float: right;
466 font-size: 20px;
467 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530468 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530469 color: #000000;
470 text-shadow: 0 1px 0 #ffffff;
471 opacity: 0.2;
472 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530473}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530474.close:hover {
475 color: #000000;
476 text-decoration: none;
477 opacity: 0.4;
478 filter: alpha(opacity=40);
479 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530480}
481.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530482 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530483 padding: 4px 10px 4px;
484 font-size: 13px;
485 line-height: 18px;
486 color: #333333;
487 text-align: center;
488 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
489 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530490 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
491 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
492 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
493 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
494 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
495 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530496 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530497 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530498 border: 1px solid #ccc;
499 border-bottom-color: #bbb;
500 -webkit-border-radius: 4px;
501 -moz-border-radius: 4px;
502 border-radius: 4px;
503 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
504 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
505 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 +0530506 cursor: pointer;
507 *margin-left: .3em;
508}
509.btn:first-child {
510 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530511}
512.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530513 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530514 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530515 background-color: #e6e6e6;
516 background-position: 0 -15px;
517 -webkit-transition: background-position 0.1s linear;
518 -moz-transition: background-position 0.1s linear;
519 -ms-transition: background-position 0.1s linear;
520 -o-transition: background-position 0.1s linear;
521 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530522}
523.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530524 outline: thin dotted;
525 outline: 5px auto -webkit-focus-ring-color;
526 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530527}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530528.btn.active, .btn:active {
529 background-image: none;
530 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
531 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
532 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
533 background-color: #e6e6e6;
534 background-color: #d9d9d9 \9;
535 color: rgba(0, 0, 0, 0.5);
536 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530537}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530538.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530539 cursor: default;
540 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530541 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530542 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530543 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530544 -webkit-box-shadow: none;
545 -moz-box-shadow: none;
546 box-shadow: none;
547}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530548.btn-large {
549 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530550 font-size: 15px;
551 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530552 -webkit-border-radius: 5px;
553 -moz-border-radius: 5px;
554 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530555}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530556.btn-large .icon {
557 margin-top: 1px;
558}
559.btn-small {
560 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530561 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530562 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530563}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530564.btn-small .icon {
565 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530566}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530567.btn-primary,
568.btn-primary:hover,
569.btn-warning,
570.btn-warning:hover,
571.btn-danger,
572.btn-danger:hover,
573.btn-success,
574.btn-success:hover,
575.btn-info,
576.btn-info:hover {
577 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
578 color: #ffffff;
579}
580.btn-primary.active,
581.btn-warning.active,
582.btn-danger.active,
583.btn-success.active,
584.btn-info.active {
585 color: rgba(255, 255, 255, 0.75);
586}
587.btn-primary {
588 background-color: #006dcc;
589 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
590 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
591 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
592 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
593 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
594 background-image: linear-gradient(top, #0088cc, #0044cc);
595 background-repeat: repeat-x;
596 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
597 border-color: #0044cc #0044cc #002a80;
598 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
599 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
600}
601.btn-primary:hover,
602.btn-primary:active,
603.btn-primary.active,
604.btn-primary.disabled,
605.btn-primary[disabled] {
606 background-color: #0044cc;
607}
608.btn-primary:active, .btn-primary.active {
609 background-color: #003399 \9;
610}
611.btn-warning {
612 background-color: #faa732;
613 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
614 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
615 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
616 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
617 background-image: -o-linear-gradient(top, #fbb450, #f89406);
618 background-image: linear-gradient(top, #fbb450, #f89406);
619 background-repeat: repeat-x;
620 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
621 border-color: #f89406 #f89406 #ad6704;
622 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
623 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
624}
625.btn-warning:hover,
626.btn-warning:active,
627.btn-warning.active,
628.btn-warning.disabled,
629.btn-warning[disabled] {
630 background-color: #f89406;
631}
632.btn-warning:active, .btn-warning.active {
633 background-color: #c67605 \9;
634}
635.btn-danger {
636 background-color: #da4f49;
637 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
638 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
639 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
640 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
641 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
642 background-image: linear-gradient(top, #ee5f5b, #bd362f);
643 background-repeat: repeat-x;
644 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
645 border-color: #bd362f #bd362f #802420;
646 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
647 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
648}
649.btn-danger:hover,
650.btn-danger:active,
651.btn-danger.active,
652.btn-danger.disabled,
653.btn-danger[disabled] {
654 background-color: #bd362f;
655}
656.btn-danger:active, .btn-danger.active {
657 background-color: #942a25 \9;
658}
659.btn-success {
660 background-color: #5bb75b;
661 background-image: -moz-linear-gradient(top, #62c462, #51a351);
662 background-image: -ms-linear-gradient(top, #62c462, #51a351);
663 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
664 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
665 background-image: -o-linear-gradient(top, #62c462, #51a351);
666 background-image: linear-gradient(top, #62c462, #51a351);
667 background-repeat: repeat-x;
668 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
669 border-color: #51a351 #51a351 #387038;
670 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
671 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
672}
673.btn-success:hover,
674.btn-success:active,
675.btn-success.active,
676.btn-success.disabled,
677.btn-success[disabled] {
678 background-color: #51a351;
679}
680.btn-success:active, .btn-success.active {
681 background-color: #408140 \9;
682}
683.btn-info {
684 background-color: #49afcd;
685 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
686 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
687 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
688 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
689 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
690 background-image: linear-gradient(top, #5bc0de, #2f96b4);
691 background-repeat: repeat-x;
692 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
693 border-color: #2f96b4 #2f96b4 #1f6377;
694 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
695 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
696}
697.btn-info:hover,
698.btn-info:active,
699.btn-info.active,
700.btn-info.disabled,
701.btn-info[disabled] {
702 background-color: #2f96b4;
703}
704.btn-info:active, .btn-info.active {
705 background-color: #24748c \9;
706}
707button.btn, input[type="submit"].btn {
708 *padding-top: 2px;
709 *padding-bottom: 2px;
710}
711button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530712 padding: 0;
713 border: 0;
714}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530715button.btn.large, input[type="submit"].btn.large {
716 *padding-top: 7px;
717 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530718}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530719button.btn.small, input[type="submit"].btn.small {
720 *padding-top: 3px;
721 *padding-bottom: 3px;
722}
723.btn-group {
724 position: relative;
725 *zoom: 1;
726 *margin-left: .3em;
727}
728.btn-group:before, .btn-group:after {
729 display: table;
730 content: "";
731}
732.btn-group:after {
733 clear: both;
734}
735.btn-group:first-child {
736 *margin-left: 0;
737}
738.btn-group + .btn-group {
739 margin-left: 5px;
740}
741.btn-toolbar {
742 margin-top: 9px;
743 margin-bottom: 9px;
744}
745.btn-toolbar .btn-group {
746 display: inline-block;
747 *display: inline;
748 /* IE7 inline-block hack */
749
750 *zoom: 1;
751}
752.btn-group .btn {
753 position: relative;
754 float: left;
755 margin-left: -1px;
756 -webkit-border-radius: 0;
757 -moz-border-radius: 0;
758 border-radius: 0;
759}
760.btn-group .btn:first-child {
761 margin-left: 0;
762 -webkit-border-top-left-radius: 4px;
763 -moz-border-radius-topleft: 4px;
764 border-top-left-radius: 4px;
765 -webkit-border-bottom-left-radius: 4px;
766 -moz-border-radius-bottomleft: 4px;
767 border-bottom-left-radius: 4px;
768}
769.btn-group .btn:last-child, .btn-group .dropdown-toggle {
770 -webkit-border-top-right-radius: 4px;
771 -moz-border-radius-topright: 4px;
772 border-top-right-radius: 4px;
773 -webkit-border-bottom-right-radius: 4px;
774 -moz-border-radius-bottomright: 4px;
775 border-bottom-right-radius: 4px;
776}
777.btn-group .btn.large:first-child {
778 margin-left: 0;
779 -webkit-border-top-left-radius: 6px;
780 -moz-border-radius-topleft: 6px;
781 border-top-left-radius: 6px;
782 -webkit-border-bottom-left-radius: 6px;
783 -moz-border-radius-bottomleft: 6px;
784 border-bottom-left-radius: 6px;
785}
786.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
787 -webkit-border-top-right-radius: 6px;
788 -moz-border-radius-topright: 6px;
789 border-top-right-radius: 6px;
790 -webkit-border-bottom-right-radius: 6px;
791 -moz-border-radius-bottomright: 6px;
792 border-bottom-right-radius: 6px;
793}
794.btn-group .btn:hover,
795.btn-group .btn:focus,
796.btn-group .btn:active,
797.btn-group .btn.active {
798 z-index: 2;
799}
800.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
801 outline: 0;
802}
803.btn-group .dropdown-toggle {
804 padding-left: 8px;
805 padding-right: 8px;
806 -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);
807 -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);
808 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);
809 *padding-top: 5px;
810 *padding-bottom: 5px;
811}
812.btn-group.open {
813 *z-index: 1000;
814}
815.btn-group.open .dropdown-menu {
816 display: block;
817 margin-top: 1px;
818 -webkit-border-radius: 5px;
819 -moz-border-radius: 5px;
820 border-radius: 5px;
821}
822.btn-group.open .dropdown-toggle {
823 background-image: none;
824 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
825 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
826 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
827}
828.btn .caret {
829 margin-top: 7px;
830 margin-left: 0;
831}
832.btn:hover .caret, .open.btn-group .caret {
833 opacity: 1;
834 filter: alpha(opacity=100);
835}
836.btn-primary .caret,
837.btn-danger .caret,
838.btn-info .caret,
839.btn-success .caret {
840 border-top-color: #ffffff;
841 opacity: 0.75;
842 filter: alpha(opacity=75);
843}
844.btn-small .caret {
845 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530846}
847/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530848 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530849 */.nav {
850 margin-left: 0;
851 margin-bottom: 18px;
852 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530853}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530854.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530855 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530856}
857.nav > li > a:hover {
858 text-decoration: none;
859 background-color: #eeeeee;
860}
861.nav-list {
862 padding-left: 14px;
863 padding-right: 14px;
864 margin-bottom: 0;
865}
866.nav-list > li > a, .nav-list .nav-header {
867 display: block;
868 padding: 3px 15px;
869 margin-left: -15px;
870 margin-right: -15px;
871 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
872}
873.nav-list .nav-header {
874 font-size: 11px;
875 font-weight: bold;
876 line-height: 18px;
877 color: #999999;
878 text-transform: uppercase;
879}
880.nav-list > li + .nav-header {
881 margin-top: 9px;
882}
883.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530884 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530885 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
886 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530887}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530888.nav-list [class^="icon-"] {
889 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530890}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530891.nav-tabs, .nav-pills {
892 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530893}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530894.nav-tabs:before,
895.nav-pills:before,
896.nav-tabs:after,
897.nav-pills:after {
898 display: table;
899 content: "";
900}
901.nav-tabs:after, .nav-pills:after {
902 clear: both;
903}
904.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530905 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530906}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530907.nav-tabs > li > a, .nav-pills > li > a {
908 padding-right: 12px;
909 padding-left: 12px;
910 margin-right: 2px;
911 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530912}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530913.nav-tabs {
914 border-bottom: 1px solid #ddd;
915}
916.nav-tabs > li {
917 margin-bottom: -1px;
918}
919.nav-tabs > li > a {
920 padding-top: 9px;
921 padding-bottom: 9px;
922 border: 1px solid transparent;
923 -webkit-border-radius: 4px 4px 0 0;
924 -moz-border-radius: 4px 4px 0 0;
925 border-radius: 4px 4px 0 0;
926}
927.nav-tabs > li > a:hover {
928 border-color: #eeeeee #eeeeee #dddddd;
929}
930.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
931 color: #555555;
932 background-color: #ffffff;
933 border: 1px solid #ddd;
934 border-bottom-color: transparent;
935 cursor: default;
936}
937.nav-pills > li > a {
938 padding-top: 8px;
939 padding-bottom: 8px;
940 margin-top: 2px;
941 margin-bottom: 2px;
942 -webkit-border-radius: 5px;
943 -moz-border-radius: 5px;
944 border-radius: 5px;
945}
946.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530947 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530948 background-color: #0088cc;
949}
950.nav-stacked > li {
951 float: none;
952}
953.nav-stacked > li > a {
954 margin-right: 0;
955}
956.nav-tabs.nav-stacked {
957 border-bottom: 0;
958}
959.nav-tabs.nav-stacked > li > a {
960 border: 1px solid #ddd;
961 -webkit-border-radius: 0;
962 -moz-border-radius: 0;
963 border-radius: 0;
964}
965.nav-tabs.nav-stacked > li:first-child > a {
966 -webkit-border-radius: 4px 4px 0 0;
967 -moz-border-radius: 4px 4px 0 0;
968 border-radius: 4px 4px 0 0;
969}
970.nav-tabs.nav-stacked > li:last-child > a {
971 -webkit-border-radius: 0 0 4px 4px;
972 -moz-border-radius: 0 0 4px 4px;
973 border-radius: 0 0 4px 4px;
974}
975.nav-tabs.nav-stacked > li > a:hover {
976 border-color: #ddd;
977 z-index: 2;
978}
979.nav-pills.nav-stacked > li > a {
980 margin-bottom: 3px;
981}
982.nav-pills.nav-stacked > li:last-child > a {
983 margin-bottom: 1px;
984}
985.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
986 margin-top: 1px;
987 border-width: 1px;
988}
989.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530990 -webkit-border-radius: 4px;
991 -moz-border-radius: 4px;
992 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530993}
994.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
995 border-top-color: #0088cc;
996 margin-top: 6px;
997}
998.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
999 border-top-color: #005580;
1000}
1001.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1002 border-top-color: #333333;
1003}
1004.nav > .dropdown.active > a:hover {
1005 color: #000000;
1006 cursor: pointer;
1007}
1008.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1009 color: #ffffff;
1010 background-color: #999999;
1011 border-color: #999999;
1012}
1013.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1014 border-top-color: #ffffff;
1015 opacity: 1;
1016 filter: alpha(opacity=100);
1017}
1018
1019.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301020 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301021 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301022}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301023.navbar-inner {
1024 padding-left: 20px;
1025 padding-right: 20px;
1026 background-color: #2c2c2c;
1027 background-image: -moz-linear-gradient(top, #333333, #222222);
1028 background-image: -ms-linear-gradient(top, #333333, #222222);
1029 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1030 background-image: -webkit-linear-gradient(top, #333333, #222222);
1031 background-image: -o-linear-gradient(top, #333333, #222222);
1032 background-image: linear-gradient(top, #333333, #222222);
1033 background-repeat: repeat-x;
1034 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1035 -webkit-border-radius: 4px;
1036 -moz-border-radius: 4px;
1037 border-radius: 4px;
1038 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1039 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1040 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1041}
1042.btn-navbar {
1043 display: none;
1044 float: right;
1045 padding: 7px 10px;
1046 margin-left: 5px;
1047 margin-right: 5px;
1048 background-color: #2c2c2c;
1049 background-image: -moz-linear-gradient(top, #333333, #222222);
1050 background-image: -ms-linear-gradient(top, #333333, #222222);
1051 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1052 background-image: -webkit-linear-gradient(top, #333333, #222222);
1053 background-image: -o-linear-gradient(top, #333333, #222222);
1054 background-image: linear-gradient(top, #333333, #222222);
1055 background-repeat: repeat-x;
1056 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1057 border-color: #222222 #222222 #000000;
1058 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1059 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1060 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1061 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1062 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1063}
1064.btn-navbar:hover,
1065.btn-navbar:active,
1066.btn-navbar.active,
1067.btn-navbar.disabled,
1068.btn-navbar[disabled] {
1069 background-color: #222222;
1070}
1071.btn-navbar:active, .btn-navbar.active {
1072 background-color: #080808 \9;
1073}
1074.btn-navbar .icon-bar {
1075 display: block;
1076 width: 18px;
1077 height: 2px;
1078 background-color: #f5f5f5;
1079 -webkit-border-radius: 1px;
1080 -moz-border-radius: 1px;
1081 border-radius: 1px;
1082 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1083 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1084 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1085}
1086.btn-navbar .icon-bar + .icon-bar {
1087 margin-top: 3px;
1088}
1089.nav-collapse.collapse {
1090 height: auto;
1091}
1092.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301093 text-decoration: none;
1094}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301095.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301096 float: left;
1097 display: block;
1098 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301099 font-size: 20px;
1100 font-weight: 200;
1101 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301102 color: #ffffff;
1103}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301104.navbar .navbar-text {
1105 margin-bottom: 0;
1106 line-height: 40px;
1107 color: #999999;
1108}
1109.navbar .navbar-text a:hover {
1110 color: #ffffff;
1111 background-color: transparent;
1112}
1113.navbar .btn, .navbar .btn-group {
1114 margin-top: 5px;
1115}
1116.navbar .btn-group .btn {
1117 margin-top: 0;
1118}
1119.navbar-form {
1120 margin-bottom: 0;
1121 *zoom: 1;
1122}
1123.navbar-form:before, .navbar-form:after {
1124 display: table;
1125 content: "";
1126}
1127.navbar-form:after {
1128 clear: both;
1129}
1130.navbar-form input, .navbar-form select {
1131 display: inline-block;
1132 margin-top: 5px;
1133 margin-bottom: 0;
1134}
1135.navbar-form .radio, .navbar-form .checkbox {
1136 margin-top: 5px;
1137}
1138.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1139 margin-top: 3px;
1140}
1141.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301142 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301143 float: left;
1144 margin-top: 6px;
1145 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301146}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301147.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301148 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301149 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1150 font-size: 13px;
1151 font-weight: normal;
1152 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301153 color: #ffffff;
1154 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301155 background: #666;
1156 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301157 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301158 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1159 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1160 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 +05301161 -webkit-transition: none;
1162 -moz-transition: none;
1163 -ms-transition: none;
1164 -o-transition: none;
1165 transition: none;
1166}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301167.navbar-search .search-query :-moz-placeholder {
1168 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301169}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301170.navbar-search .search-query::-webkit-input-placeholder {
1171 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301172}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301173.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301174 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301175 background-color: #999999;
1176 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301177}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301178.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301179 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301180 color: #333333;
1181 text-shadow: 0 1px 0 #ffffff;
1182 background-color: #ffffff;
1183 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301184 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1185 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1186 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301187 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301188}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301189.navbar-fixed-top {
1190 position: fixed;
1191 top: 0;
1192 right: 0;
1193 left: 0;
1194 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301195}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301196.navbar-fixed-top .navbar-inner {
1197 padding-left: 0;
1198 padding-right: 0;
1199 -webkit-border-radius: 0;
1200 -moz-border-radius: 0;
1201 border-radius: 0;
1202}
1203.navbar .nav {
1204 position: relative;
1205 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301206 display: block;
1207 float: left;
1208 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301209}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301210.navbar .nav.pull-right {
1211 float: right;
1212}
1213.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301214 display: block;
1215 float: left;
1216}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301217.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301218 float: none;
1219 padding: 10px 10px 11px;
1220 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301221 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301222 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301223 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301224}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301225.navbar .nav > li > a:hover {
1226 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301227 color: #ffffff;
1228 text-decoration: none;
1229}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301230.navbar .nav .active > a, .navbar .nav .active > a:hover {
1231 color: #ffffff;
1232 text-decoration: none;
1233 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301234 background-color: rgba(0, 0, 0, 0.5);
1235}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301236.navbar .divider-vertical {
1237 height: 40px;
1238 width: 1px;
1239 margin: 0 9px;
1240 overflow: hidden;
1241 background-color: #222222;
1242 border-right: 1px solid #333333;
1243}
1244.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301245 margin-left: 10px;
1246 margin-right: 0;
1247}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301248.navbar .dropdown-menu {
1249 margin-top: 1px;
1250 -webkit-border-radius: 4px;
1251 -moz-border-radius: 4px;
1252 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301253}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301254.navbar .dropdown-menu:before {
1255 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301256 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301257 border-left: 7px solid transparent;
1258 border-right: 7px solid transparent;
1259 border-bottom: 7px solid #ccc;
1260 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301261 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301262 top: -7px;
1263 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301264}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301265.navbar .dropdown-menu:after {
1266 content: '';
1267 display: inline-block;
1268 border-left: 6px solid transparent;
1269 border-right: 6px solid transparent;
1270 border-bottom: 6px solid #ffffff;
1271 position: absolute;
1272 top: -6px;
1273 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301274}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301275.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1276 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301277}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301278.navbar .nav .active .caret {
1279 opacity: 1;
1280 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301281}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301282.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1283 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301284}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301285.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301286 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301287}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301288.navbar .nav.pull-right .dropdown-menu {
1289 left: auto;
1290 right: 0;
1291}
1292.navbar .nav.pull-right .dropdown-menu:before {
1293 left: auto;
1294 right: 12px;
1295}
1296.navbar .nav.pull-right .dropdown-menu:after {
1297 left: auto;
1298 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301299}
1300
1301/*extra size menus for recent*/
1302.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1303 width: 260px !important;
1304 max-width: 260px !important;
1305}
1306
1307/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301308.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301309 display: block;
1310 float: right;
1311 width: 20px;
1312 margin-bottom: -5px;
1313 margin-top: 10px;
1314 visibility: hidden;
1315}
1316
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301317.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301318 padding: 0px 20px;
1319}
1320/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301321 * lib/css/bootstrap/dropdown.css
1322 */.dropdown {
1323 position: relative;
1324}
1325.dropdown-toggle {
1326 *margin-bottom: -3px;
1327}
1328.dropdown-toggle:active, .open .dropdown-toggle {
1329 outline: 0;
1330}
1331.caret {
1332 display: inline-block;
1333 width: 0;
1334 height: 0;
1335 text-indent: -99999px;
1336 *text-indent: 0;
1337 vertical-align: top;
1338 border-left: 4px solid transparent;
1339 border-right: 4px solid transparent;
1340 border-top: 4px solid #000000;
1341 opacity: 0.3;
1342 filter: alpha(opacity=30);
1343 content: "\2193";
1344}
1345.dropdown .caret {
1346 margin-top: 8px;
1347 margin-left: 2px;
1348}
1349.dropdown:hover .caret, .open.dropdown .caret {
1350 opacity: 1;
1351 filter: alpha(opacity=100);
1352}
1353.dropdown-menu {
1354 position: absolute;
1355 top: 100%;
1356 left: 0;
1357 z-index: 1000;
1358 float: left;
1359 display: none;
1360 min-width: 160px;
1361 max-width: 220px;
1362 _width: 160px;
1363 padding: 4px 0;
1364 margin: 0;
1365 list-style: none;
1366 background-color: #ffffff;
1367 border-color: #ccc;
1368 border-color: rgba(0, 0, 0, 0.2);
1369 border-style: solid;
1370 border-width: 1px;
1371 -webkit-border-radius: 0 0 5px 5px;
1372 -moz-border-radius: 0 0 5px 5px;
1373 border-radius: 0 0 5px 5px;
1374 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1375 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1376 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1377 -webkit-background-clip: padding-box;
1378 -moz-background-clip: padding;
1379 background-clip: padding-box;
1380 *border-right-width: 2px;
1381 *border-bottom-width: 2px;
1382}
1383.dropdown-menu.bottom-up {
1384 top: auto;
1385 bottom: 100%;
1386 margin-bottom: 2px;
1387}
1388.dropdown-menu .divider {
1389 height: 1px;
1390 margin: 5px 1px;
1391 overflow: hidden;
1392 background-color: #e5e5e5;
1393 border-bottom: 1px solid #ffffff;
1394 *width: 100%;
1395 *margin: -5px 0 5px;
1396}
1397.dropdown-menu a {
1398 display: block;
1399 padding: 3px 15px;
1400 clear: both;
1401 font-weight: normal;
1402 line-height: 18px;
1403 color: #555555;
1404 white-space: nowrap;
1405}
1406.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1407 color: #ffffff;
1408 text-decoration: none;
1409 background-color: #0088cc;
1410}
1411.dropdown.open {
1412 *z-index: 1000;
1413}
1414.dropdown.open .dropdown-toggle {
1415 color: #ffffff;
1416 background: #ccc;
1417 background: rgba(0, 0, 0, 0.3);
1418}
1419.dropdown.open .dropdown-menu {
1420 display: block;
1421}
1422/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301423 * lib/css/bootstrap/tooltip.css
1424 */.tooltip {
1425 position: absolute;
1426 z-index: 1020;
1427 display: block;
1428 visibility: visible;
1429 padding: 5px;
1430 font-size: 11px;
1431 opacity: 0;
1432 filter: alpha(opacity=0);
1433}
1434.tooltip.in {
1435 opacity: 0.8;
1436 filter: alpha(opacity=80);
1437}
1438.tooltip.top {
1439 margin-top: -2px;
1440}
1441.tooltip.right {
1442 margin-left: 2px;
1443}
1444.tooltip.bottom {
1445 margin-top: 2px;
1446}
1447.tooltip.left {
1448 margin-left: -2px;
1449}
1450.tooltip.top .tooltip-arrow {
1451 bottom: 0;
1452 left: 50%;
1453 margin-left: -5px;
1454 border-left: 5px solid transparent;
1455 border-right: 5px solid transparent;
1456 border-top: 5px solid #000000;
1457}
1458.tooltip.left .tooltip-arrow {
1459 top: 50%;
1460 right: 0;
1461 margin-top: -5px;
1462 border-top: 5px solid transparent;
1463 border-bottom: 5px solid transparent;
1464 border-left: 5px solid #000000;
1465}
1466.tooltip.bottom .tooltip-arrow {
1467 top: 0;
1468 left: 50%;
1469 margin-left: -5px;
1470 border-left: 5px solid transparent;
1471 border-right: 5px solid transparent;
1472 border-bottom: 5px solid #000000;
1473}
1474.tooltip.right .tooltip-arrow {
1475 top: 50%;
1476 left: 0;
1477 margin-top: -5px;
1478 border-top: 5px solid transparent;
1479 border-bottom: 5px solid transparent;
1480 border-right: 5px solid #000000;
1481}
1482.tooltip-inner {
1483 max-width: 200px;
1484 padding: 3px 8px;
1485 color: #ffffff;
1486 text-align: center;
1487 text-decoration: none;
1488 background-color: #000000;
1489 -webkit-border-radius: 4px;
1490 -moz-border-radius: 4px;
1491 border-radius: 4px;
1492}
1493.tooltip-arrow {
1494 position: absolute;
1495 width: 0;
1496 height: 0;
1497}
1498.popover {
1499 position: absolute;
1500 top: 0;
1501 left: 0;
1502 z-index: 1010;
1503 display: none;
1504 padding: 5px;
1505}
1506.popover.top {
1507 margin-top: -5px;
1508}
1509.popover.right {
1510 margin-left: 5px;
1511}
1512.popover.bottom {
1513 margin-top: 5px;
1514}
1515.popover.left {
1516 margin-left: -5px;
1517}
1518.popover.top .arrow {
1519 bottom: 0;
1520 left: 50%;
1521 margin-left: -5px;
1522 border-left: 5px solid transparent;
1523 border-right: 5px solid transparent;
1524 border-top: 5px solid #000000;
1525}
1526.popover.right .arrow {
1527 top: 50%;
1528 left: 0;
1529 margin-top: -5px;
1530 border-top: 5px solid transparent;
1531 border-bottom: 5px solid transparent;
1532 border-right: 5px solid #000000;
1533}
1534.popover.bottom .arrow {
1535 top: 0;
1536 left: 50%;
1537 margin-left: -5px;
1538 border-left: 5px solid transparent;
1539 border-right: 5px solid transparent;
1540 border-bottom: 5px solid #000000;
1541}
1542.popover.left .arrow {
1543 top: 50%;
1544 right: 0;
1545 margin-top: -5px;
1546 border-top: 5px solid transparent;
1547 border-bottom: 5px solid transparent;
1548 border-left: 5px solid #000000;
1549}
1550.popover .arrow {
1551 position: absolute;
1552 width: 0;
1553 height: 0;
1554}
1555.popover-inner {
1556 padding: 3px;
1557 width: 280px;
1558 overflow: hidden;
1559 background: #000000;
1560 background: rgba(0, 0, 0, 0.8);
1561 -webkit-border-radius: 6px;
1562 -moz-border-radius: 6px;
1563 border-radius: 6px;
1564 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1565 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1566 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1567}
1568.popover-title {
1569 padding: 9px 15px;
1570 line-height: 1;
1571 background-color: #f5f5f5;
1572 border-bottom: 1px solid #eee;
1573 -webkit-border-radius: 3px 3px 0 0;
1574 -moz-border-radius: 3px 3px 0 0;
1575 border-radius: 3px 3px 0 0;
1576}
1577.popover-content {
1578 padding: 14px;
1579 background-color: #ffffff;
1580 -webkit-border-radius: 0 0 3px 3px;
1581 -moz-border-radius: 0 0 3px 3px;
1582 border-radius: 0 0 3px 3px;
1583 -webkit-background-clip: padding-box;
1584 -moz-background-clip: padding-box;
1585 background-clip: padding-box;
1586}
1587.popover-content p, .popover-content ul, .popover-content ol {
1588 margin-bottom: 0;
1589}
1590/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301591 * erpnext/startup/startup.css
1592 */h1, h2, h3, h4, h5 {
1593 font-family: Tahoma, Arial, Verdana, sans-serif;
1594 font-weight: bold;
1595}
1596
1597body {
1598 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
1599 font-size: 12px;
1600}
1601
1602span, div, td, input, textarea, button, select {
1603 font-family: inherit;
1604}
1605
1606body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301607}
1608
1609.erpnext-footer {
1610 margin: 3px auto;
1611 color: #888;
1612 text-align: center;
1613}
1614
1615.erpnext-footer a, .erpnext-footer a:hover, .erpnext-footer a:visited {
1616 color: #666;
1617}
1618
1619.module-icons {
1620 background: url(../images/module-icons.png) no-repeat top left;
1621 width:16px;
1622 height:16px;
1623}
1624
1625.module-icons-accounts{ background-position: 0 0; }
1626.module-icons-analysis{ background-position: 0 -66px; }
1627.module-icons-buying{ background-position: 0 -132px; }
1628.module-icons-home{ background-position: 0 -198px; }
1629.module-icons-hr{ background-position: 0 -264px; }
1630.module-icons-people{ background-position: 0 -330px; }
1631.module-icons-production{ background-position: 0 -396px; }
1632.module-icons-projects{ background-position: 0 -462px; }
1633.module-icons-selling{ background-position: 0 -528px; }
1634.module-icons-setup{ background-position: 0 -594px; }
1635.module-icons-stock{ background-position: 0 -660px; }
1636.module-icons-support{ background-position: 0 -726px; }
Anand Doshic3023be2012-02-20 16:31:55 +05301637
1638.topbar-new-comments {
1639 margin: -3px 0px;
1640 padding: 2px;
1641 font-size: 14px;
1642 color: #fff;
1643 background-color: #B00D07;
1644 min-width: 20px;
1645 text-align: center;
1646 display: inline-block;
1647 border-radius: 2px;
1648}
1649
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301650/*
1651 * erpnext/website/css/website.css
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301652 */.layout_wrapper {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301653 padding: 20px;
1654}
1655
1656h1 {
1657 margin-bottom: 15px;
1658}
1659
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301660h2 {
1661 margin-bottom: 11px;
1662}
1663
1664h3 {
1665 margin-bottom: 7px;
1666}
1667
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301668pre {
1669 background-color: #F8F8F8;
1670 border: 1px solid #CCCCCC;
1671 border-radius: 3px 3px 3px 3px;
1672 font-size: 13px;
1673 line-height: 19px;
1674 overflow: auto;
1675 padding: 6px 10px;
1676 margin-bottom: 9px;
1677}
1678
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301679.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1680 min-width: 180px;
1681}
1682
Rushabh Mehta13531b72012-02-20 12:35:23 +05301683.web-head-section {
1684 margin-bottom: 20px
1685}
1686
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301687.web-main-section {
1688 width: 65%;
1689 float: left;
1690 margin-bottom: 20px;
1691}
1692
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301693.web-side-section {
1694 width: 30%;
1695 float: right;
1696 margin-bottom: 20px;
1697 margin-right: 15px;
1698 color: #606060;
1699 overflow-x: hidden;
1700}
1701
1702.web-page-status {
1703 padding: 7px;
1704 color: #777;
1705 clear: both;
1706 text-align: right;
1707}
1708
1709.web-page-status a,
1710.web-page-status a:hover,
1711.web-page-status a:visited {
1712 padding: 2px;
1713 background-color: #777;
1714 color: #FFF;
1715 text-decoration: none;
1716}
1717
1718.web-page-status a:hover {
1719 background-color: #444;
1720}
1721
1722footer {
1723 color: #777;
1724}
1725
1726.web-footer {
1727 color: inherit;
1728 text-align: center;
1729 margin: 10px;
1730 line-height: 1.7;
1731}
1732
1733.web-footer div, .web-footer a {
1734 font-size: 11px;
1735}
1736
1737.web-footer-menu {
1738 margin-bottom: 7px;
1739}
1740footer a, footer a:visited {
1741 color: #777;
1742}
1743
1744footer a:hover {
1745 background-color: #777;
1746 color: #fff;
1747}
1748
1749.web-footer-menu ul {
1750 list-style: none;
1751 margin: 0px;
1752 padding: 0px;
1753}
1754
1755.web-footer-menu ul li {
1756 display: inline;
1757 padding: 2px 15px;
1758 border-right: 1px solid #999;
1759}
1760
1761.web-footer-menu ul li:last-child {
1762 border-right: 0px solid #777 !important;
1763}