blob: ec9fff273d7472f0f36a991b62b345a2d6a206cc [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;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530189 -moz-box-shadow: 7px 0px 6px -2px #ddd;
190 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
191 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530192}
193
194.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530195 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530196 /*float: right;*/
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530197 color: #606060;
198 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530199 padding: 15px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530200 min-height: 450px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530201}
202
203/* from bootstrap */
204.container {
205 margin-left: auto;
206 margin-right: auto;
207 zoom: 1;
208}
209.container:before, .container:after {
210 display: table;
211 content: "";
212 zoom: 1;
213}
214.container:after {
215 clear: both;
216}
217
Anand Doshi40ee8d62012-02-24 19:21:47 +0530218.well {
219 min-height: 20px;
220 padding: 19px;
221 margin-bottom: 20px;
222 background-color: #f5f5f5;
223 border: 1px solid #eee;
224 border: 1px solid rgba(0, 0, 0, 0.05);
225 -webkit-border-radius: 4px;
226 -moz-border-radius: 4px;
227 border-radius: 4px;
228 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
229 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
230 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
231}
232
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530233/*
234 * lib/css/legacy/menus.css
235 */
236/******** Menus - menu.js ************/
237
238ul.menu_toolbar {
239 z-index: 30;
240 padding: 0px;
241 margin: 0px;
242 margin-top: 1px;
243}
244
245ul.menu_toolbar li {
246 list-style: none;
247 margin: 0px;
248 float: left;
249}
250
251.top_menu {
252 margin: 0px;
253 padding: 4px;
254 cursor: pointer;
255 color: #FFF;
256 margin-right: 8px;
257}
258
259.top_menu_mo {
260 background-color: #000;
261
262 -moz-border-radius: 5px;
263 -webkit-border-radius: 5px;
264}
265
266div.menu_toolbar_dropdown {
267 position: absolute;
268 margin-top: 4px;
269 margin-left: 8px;
270 width: 140px;
271 background-color: #FFF;
272 color: #000;
273 display: none;
274 border: 2px solid #333;
275 z-index: 31;
276 overflow-y: auto;
277 overflow-x: hidden;
278}
279
280div.dd_item {
281 cursor: pointer;
282 padding: 4px;
283 background-color: #FFF;
284}
285div.dd_item_mo { background-color: #FE8; }
286/*
287 * lib/css/legacy/messages.css
288 */
289/* FLOATING MESSAGE */
290
291.btn-img { cursor: pointer; }
292
293div.fetching { color: #888; text-align:right; }
294
295div.notice {
296 postion: absolute;
297 background-color: #000;
298 -moz-border-radius: 5px; -webkit-border-radius: 5px;
299 opacity: 0.6;
300 right: 0;
301 top: 0;
302 margin-top: 8px;
303 z-index: -1;
304 padding: 8px;
305}
306
307/** help **/
308
309.info-box {
310 background-color: #F8F8F8;
311 border: 1px solid #CCCCCC;
312 border-radius: 3px 3px 3px 3px;
313 line-height: 1.6em;
314 overflow: auto;
315 padding: 6px 10px;
316 margin-bottom: 9px;
317}
318
319.help_box, .help-box {
320 background-color:#FFC;
321 font-size: 13px;
322 color: #864;
323 padding: 7px;
324 margin: 11px 0px;
325 border: 1px solid #EEB;
326}
327
328.help_box_big {
329 background-color:#FFC;
330 color: #864;
331 padding: 7px;
332 margin: 7px 0px;
333 border: 1px solid #EEB;
334 text-align: center;
335 font-size: 14px;
336}
337/*
338 * lib/css/legacy/dialog.css
339 *//***** Dialogs *******/
340
341div.dialog_wrapper {
342 position: absolute;
343 width: 440px;
344 display: none;
345 z-index: 90;
346 background-color: #FFF;
347 border: 3px solid #222;
348 box-shadow:1px 1px 5px #777;
349 -moz-box-shadow: 1px 1px 5px #777;
350 -webkit-box-shadow: 1px 1px 5px #777;
351
352 border-radius: 5px;
353 -moz-border-radius: 5px;
354 -webkit-border-radius: 5px;
355}
356
357div.dialog_head {
358 height: 22px;
359 padding: 4px;
360 background-color: #222;
361 color: #FFF;
362}
363
364div.dialog_body {
365 padding: 8px 4px 16px 4px;
366 border-radius: 5px;
367 -moz-border-radius: 5px;
368 -webkit-border-radius: 5px;
369}
370
371div.dialog_back {
372 position: fixed;
373 display: none;
374 top: 0px;
375 left: 0px;
376 bottom: 0px;
377 right: 0px;
378 background-color: #EEE;
379 opacity: 0.6;
380 z-index: 50;
381 text-align: center;
382}
383
384div.dialog_message {
385 display: none;
386 position: absolute;
387 width: 250px;
388 font-size: 12px;
389 z-index: 91;
390 background-color:#FFF;
391 padding: 12px;
392 border: 1px solid #444;
393}
394
395div.dialog_row {
396 padding: 8px 8px 0px 8px;
397}
398
399div.dialog_row table {
400 width: 100%;
401}
402
403div.dialog_row table td {
404}
405
406div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
407 width: 80%;
408 font-size: 14px;
409}
410
411div.dialog_row table td textarea {
412 width: 80%;
413 height: 200px;
414 font-size: 12px;
415}
416
417/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530418 * lib/css/bootstrap/headings.css
419 *//* heading from bootstrap */
420
421h1,
422h2,
423h3,
424h4,
425h5,
426h6 {
427 margin: 0;
428 font-weight: bold;
429 color: #333333;
430 text-rendering: optimizelegibility;
431 margin-bottom: 0.3em;
432}
433h1 small,
434h2 small,
435h3 small,
436h4 small,
437h5 small,
438h6 small {
439 font-weight: normal;
440 color: #999999;
441}
442h1 {
443 font-size: 30px;
444 line-height: 36px;
445}
446h1 small {
447 font-size: 18px;
448}
449h2 {
450 font-size: 24px;
451 line-height: 36px;
452}
453h2 small {
454 font-size: 18px;
455}
456h3 {
457 line-height: 27px;
458 font-size: 18px;
459}
460h3 small {
461 font-size: 14px;
462}
463h4, h5, h6 {
464 line-height: 18px;
465}
466h4 {
467 font-size: 14px;
468}
469h4 small {
470 font-size: 12px;
471}
472h5 {
473 font-size: 12px;
474}
475h6 {
476 font-size: 11px;
477 color: #999999;
478 text-transform: uppercase;
479}
480/*
481 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530482 */.close {
483 float: right;
484 font-size: 20px;
485 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530486 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530487 color: #000000;
488 text-shadow: 0 1px 0 #ffffff;
489 opacity: 0.2;
490 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530491}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530492.close:hover {
493 color: #000000;
494 text-decoration: none;
495 opacity: 0.4;
496 filter: alpha(opacity=40);
497 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530498}
499.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530500 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530501 padding: 4px 10px 4px;
502 font-size: 13px;
503 line-height: 18px;
504 color: #333333;
505 text-align: center;
506 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
507 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530508 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
509 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
510 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
511 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
512 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
513 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530514 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530515 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530516 border: 1px solid #ccc;
517 border-bottom-color: #bbb;
518 -webkit-border-radius: 4px;
519 -moz-border-radius: 4px;
520 border-radius: 4px;
521 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
522 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
523 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 +0530524 cursor: pointer;
525 *margin-left: .3em;
526}
527.btn:first-child {
528 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530529}
530.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530531 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530532 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530533 background-color: #e6e6e6;
534 background-position: 0 -15px;
535 -webkit-transition: background-position 0.1s linear;
536 -moz-transition: background-position 0.1s linear;
537 -ms-transition: background-position 0.1s linear;
538 -o-transition: background-position 0.1s linear;
539 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530540}
541.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530542 outline: thin dotted;
543 outline: 5px auto -webkit-focus-ring-color;
544 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530545}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530546.btn.active, .btn:active {
547 background-image: none;
548 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
549 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
550 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
551 background-color: #e6e6e6;
552 background-color: #d9d9d9 \9;
553 color: rgba(0, 0, 0, 0.5);
554 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530555}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530556.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530557 cursor: default;
558 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530559 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530560 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530561 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530562 -webkit-box-shadow: none;
563 -moz-box-shadow: none;
564 box-shadow: none;
565}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530566.btn-large {
567 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530568 font-size: 15px;
569 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530570 -webkit-border-radius: 5px;
571 -moz-border-radius: 5px;
572 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530573}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530574.btn-large .icon {
575 margin-top: 1px;
576}
577.btn-small {
578 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530579 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530580 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530581}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530582.btn-small .icon {
583 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530584}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530585.btn-primary,
586.btn-primary:hover,
587.btn-warning,
588.btn-warning:hover,
589.btn-danger,
590.btn-danger:hover,
591.btn-success,
592.btn-success:hover,
593.btn-info,
594.btn-info:hover {
595 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
596 color: #ffffff;
597}
598.btn-primary.active,
599.btn-warning.active,
600.btn-danger.active,
601.btn-success.active,
602.btn-info.active {
603 color: rgba(255, 255, 255, 0.75);
604}
605.btn-primary {
606 background-color: #006dcc;
607 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
608 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
609 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
610 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
611 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
612 background-image: linear-gradient(top, #0088cc, #0044cc);
613 background-repeat: repeat-x;
614 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
615 border-color: #0044cc #0044cc #002a80;
616 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
617 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
618}
619.btn-primary:hover,
620.btn-primary:active,
621.btn-primary.active,
622.btn-primary.disabled,
623.btn-primary[disabled] {
624 background-color: #0044cc;
625}
626.btn-primary:active, .btn-primary.active {
627 background-color: #003399 \9;
628}
629.btn-warning {
630 background-color: #faa732;
631 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
632 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
633 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
634 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
635 background-image: -o-linear-gradient(top, #fbb450, #f89406);
636 background-image: linear-gradient(top, #fbb450, #f89406);
637 background-repeat: repeat-x;
638 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
639 border-color: #f89406 #f89406 #ad6704;
640 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
641 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
642}
643.btn-warning:hover,
644.btn-warning:active,
645.btn-warning.active,
646.btn-warning.disabled,
647.btn-warning[disabled] {
648 background-color: #f89406;
649}
650.btn-warning:active, .btn-warning.active {
651 background-color: #c67605 \9;
652}
653.btn-danger {
654 background-color: #da4f49;
655 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
656 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
657 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
658 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
659 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
660 background-image: linear-gradient(top, #ee5f5b, #bd362f);
661 background-repeat: repeat-x;
662 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
663 border-color: #bd362f #bd362f #802420;
664 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
665 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
666}
667.btn-danger:hover,
668.btn-danger:active,
669.btn-danger.active,
670.btn-danger.disabled,
671.btn-danger[disabled] {
672 background-color: #bd362f;
673}
674.btn-danger:active, .btn-danger.active {
675 background-color: #942a25 \9;
676}
677.btn-success {
678 background-color: #5bb75b;
679 background-image: -moz-linear-gradient(top, #62c462, #51a351);
680 background-image: -ms-linear-gradient(top, #62c462, #51a351);
681 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
682 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
683 background-image: -o-linear-gradient(top, #62c462, #51a351);
684 background-image: linear-gradient(top, #62c462, #51a351);
685 background-repeat: repeat-x;
686 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
687 border-color: #51a351 #51a351 #387038;
688 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
689 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
690}
691.btn-success:hover,
692.btn-success:active,
693.btn-success.active,
694.btn-success.disabled,
695.btn-success[disabled] {
696 background-color: #51a351;
697}
698.btn-success:active, .btn-success.active {
699 background-color: #408140 \9;
700}
701.btn-info {
702 background-color: #49afcd;
703 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
704 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
705 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
706 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
707 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
708 background-image: linear-gradient(top, #5bc0de, #2f96b4);
709 background-repeat: repeat-x;
710 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
711 border-color: #2f96b4 #2f96b4 #1f6377;
712 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
713 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
714}
715.btn-info:hover,
716.btn-info:active,
717.btn-info.active,
718.btn-info.disabled,
719.btn-info[disabled] {
720 background-color: #2f96b4;
721}
722.btn-info:active, .btn-info.active {
723 background-color: #24748c \9;
724}
725button.btn, input[type="submit"].btn {
726 *padding-top: 2px;
727 *padding-bottom: 2px;
728}
729button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530730 padding: 0;
731 border: 0;
732}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530733button.btn.large, input[type="submit"].btn.large {
734 *padding-top: 7px;
735 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530736}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530737button.btn.small, input[type="submit"].btn.small {
738 *padding-top: 3px;
739 *padding-bottom: 3px;
740}
741.btn-group {
742 position: relative;
743 *zoom: 1;
744 *margin-left: .3em;
745}
746.btn-group:before, .btn-group:after {
747 display: table;
748 content: "";
749}
750.btn-group:after {
751 clear: both;
752}
753.btn-group:first-child {
754 *margin-left: 0;
755}
756.btn-group + .btn-group {
757 margin-left: 5px;
758}
759.btn-toolbar {
760 margin-top: 9px;
761 margin-bottom: 9px;
762}
763.btn-toolbar .btn-group {
764 display: inline-block;
765 *display: inline;
766 /* IE7 inline-block hack */
767
768 *zoom: 1;
769}
770.btn-group .btn {
771 position: relative;
772 float: left;
773 margin-left: -1px;
774 -webkit-border-radius: 0;
775 -moz-border-radius: 0;
776 border-radius: 0;
777}
778.btn-group .btn:first-child {
779 margin-left: 0;
780 -webkit-border-top-left-radius: 4px;
781 -moz-border-radius-topleft: 4px;
782 border-top-left-radius: 4px;
783 -webkit-border-bottom-left-radius: 4px;
784 -moz-border-radius-bottomleft: 4px;
785 border-bottom-left-radius: 4px;
786}
787.btn-group .btn:last-child, .btn-group .dropdown-toggle {
788 -webkit-border-top-right-radius: 4px;
789 -moz-border-radius-topright: 4px;
790 border-top-right-radius: 4px;
791 -webkit-border-bottom-right-radius: 4px;
792 -moz-border-radius-bottomright: 4px;
793 border-bottom-right-radius: 4px;
794}
795.btn-group .btn.large:first-child {
796 margin-left: 0;
797 -webkit-border-top-left-radius: 6px;
798 -moz-border-radius-topleft: 6px;
799 border-top-left-radius: 6px;
800 -webkit-border-bottom-left-radius: 6px;
801 -moz-border-radius-bottomleft: 6px;
802 border-bottom-left-radius: 6px;
803}
804.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
805 -webkit-border-top-right-radius: 6px;
806 -moz-border-radius-topright: 6px;
807 border-top-right-radius: 6px;
808 -webkit-border-bottom-right-radius: 6px;
809 -moz-border-radius-bottomright: 6px;
810 border-bottom-right-radius: 6px;
811}
812.btn-group .btn:hover,
813.btn-group .btn:focus,
814.btn-group .btn:active,
815.btn-group .btn.active {
816 z-index: 2;
817}
818.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
819 outline: 0;
820}
821.btn-group .dropdown-toggle {
822 padding-left: 8px;
823 padding-right: 8px;
824 -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);
825 -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);
826 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);
827 *padding-top: 5px;
828 *padding-bottom: 5px;
829}
830.btn-group.open {
831 *z-index: 1000;
832}
833.btn-group.open .dropdown-menu {
834 display: block;
835 margin-top: 1px;
836 -webkit-border-radius: 5px;
837 -moz-border-radius: 5px;
838 border-radius: 5px;
839}
840.btn-group.open .dropdown-toggle {
841 background-image: none;
842 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
843 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
844 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
845}
846.btn .caret {
847 margin-top: 7px;
848 margin-left: 0;
849}
850.btn:hover .caret, .open.btn-group .caret {
851 opacity: 1;
852 filter: alpha(opacity=100);
853}
854.btn-primary .caret,
855.btn-danger .caret,
856.btn-info .caret,
857.btn-success .caret {
858 border-top-color: #ffffff;
859 opacity: 0.75;
860 filter: alpha(opacity=75);
861}
862.btn-small .caret {
863 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530864}
865/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530866 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530867 */.nav {
868 margin-left: 0;
869 margin-bottom: 18px;
870 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530871}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530872.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530873 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530874}
875.nav > li > a:hover {
876 text-decoration: none;
877 background-color: #eeeeee;
878}
879.nav-list {
880 padding-left: 14px;
881 padding-right: 14px;
882 margin-bottom: 0;
883}
884.nav-list > li > a, .nav-list .nav-header {
885 display: block;
886 padding: 3px 15px;
887 margin-left: -15px;
888 margin-right: -15px;
889 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
890}
891.nav-list .nav-header {
892 font-size: 11px;
893 font-weight: bold;
894 line-height: 18px;
895 color: #999999;
896 text-transform: uppercase;
897}
898.nav-list > li + .nav-header {
899 margin-top: 9px;
900}
901.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530902 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530903 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
904 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530905}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530906.nav-list [class^="icon-"] {
907 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530908}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530909.nav-tabs, .nav-pills {
910 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530911}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530912.nav-tabs:before,
913.nav-pills:before,
914.nav-tabs:after,
915.nav-pills:after {
916 display: table;
917 content: "";
918}
919.nav-tabs:after, .nav-pills:after {
920 clear: both;
921}
922.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530923 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530924}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530925.nav-tabs > li > a, .nav-pills > li > a {
926 padding-right: 12px;
927 padding-left: 12px;
928 margin-right: 2px;
929 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530930}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530931.nav-tabs {
932 border-bottom: 1px solid #ddd;
933}
934.nav-tabs > li {
935 margin-bottom: -1px;
936}
937.nav-tabs > li > a {
938 padding-top: 9px;
939 padding-bottom: 9px;
940 border: 1px solid transparent;
941 -webkit-border-radius: 4px 4px 0 0;
942 -moz-border-radius: 4px 4px 0 0;
943 border-radius: 4px 4px 0 0;
944}
945.nav-tabs > li > a:hover {
946 border-color: #eeeeee #eeeeee #dddddd;
947}
948.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
949 color: #555555;
950 background-color: #ffffff;
951 border: 1px solid #ddd;
952 border-bottom-color: transparent;
953 cursor: default;
954}
955.nav-pills > li > a {
956 padding-top: 8px;
957 padding-bottom: 8px;
958 margin-top: 2px;
959 margin-bottom: 2px;
960 -webkit-border-radius: 5px;
961 -moz-border-radius: 5px;
962 border-radius: 5px;
963}
964.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530965 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530966 background-color: #0088cc;
967}
968.nav-stacked > li {
969 float: none;
970}
971.nav-stacked > li > a {
972 margin-right: 0;
973}
974.nav-tabs.nav-stacked {
975 border-bottom: 0;
976}
977.nav-tabs.nav-stacked > li > a {
978 border: 1px solid #ddd;
979 -webkit-border-radius: 0;
980 -moz-border-radius: 0;
981 border-radius: 0;
982}
983.nav-tabs.nav-stacked > li:first-child > a {
984 -webkit-border-radius: 4px 4px 0 0;
985 -moz-border-radius: 4px 4px 0 0;
986 border-radius: 4px 4px 0 0;
987}
988.nav-tabs.nav-stacked > li:last-child > a {
989 -webkit-border-radius: 0 0 4px 4px;
990 -moz-border-radius: 0 0 4px 4px;
991 border-radius: 0 0 4px 4px;
992}
993.nav-tabs.nav-stacked > li > a:hover {
994 border-color: #ddd;
995 z-index: 2;
996}
997.nav-pills.nav-stacked > li > a {
998 margin-bottom: 3px;
999}
1000.nav-pills.nav-stacked > li:last-child > a {
1001 margin-bottom: 1px;
1002}
1003.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1004 margin-top: 1px;
1005 border-width: 1px;
1006}
1007.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301008 -webkit-border-radius: 4px;
1009 -moz-border-radius: 4px;
1010 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301011}
1012.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1013 border-top-color: #0088cc;
1014 margin-top: 6px;
1015}
1016.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1017 border-top-color: #005580;
1018}
1019.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1020 border-top-color: #333333;
1021}
1022.nav > .dropdown.active > a:hover {
1023 color: #000000;
1024 cursor: pointer;
1025}
1026.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1027 color: #ffffff;
1028 background-color: #999999;
1029 border-color: #999999;
1030}
1031.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1032 border-top-color: #ffffff;
1033 opacity: 1;
1034 filter: alpha(opacity=100);
1035}
1036
1037.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301038 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301039 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301040}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301041.navbar-inner {
1042 padding-left: 20px;
1043 padding-right: 20px;
1044 background-color: #2c2c2c;
1045 background-image: -moz-linear-gradient(top, #333333, #222222);
1046 background-image: -ms-linear-gradient(top, #333333, #222222);
1047 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1048 background-image: -webkit-linear-gradient(top, #333333, #222222);
1049 background-image: -o-linear-gradient(top, #333333, #222222);
1050 background-image: linear-gradient(top, #333333, #222222);
1051 background-repeat: repeat-x;
1052 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1053 -webkit-border-radius: 4px;
1054 -moz-border-radius: 4px;
1055 border-radius: 4px;
1056 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1057 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1058 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1059}
1060.btn-navbar {
1061 display: none;
1062 float: right;
1063 padding: 7px 10px;
1064 margin-left: 5px;
1065 margin-right: 5px;
1066 background-color: #2c2c2c;
1067 background-image: -moz-linear-gradient(top, #333333, #222222);
1068 background-image: -ms-linear-gradient(top, #333333, #222222);
1069 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1070 background-image: -webkit-linear-gradient(top, #333333, #222222);
1071 background-image: -o-linear-gradient(top, #333333, #222222);
1072 background-image: linear-gradient(top, #333333, #222222);
1073 background-repeat: repeat-x;
1074 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1075 border-color: #222222 #222222 #000000;
1076 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1077 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1078 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1079 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1080 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1081}
1082.btn-navbar:hover,
1083.btn-navbar:active,
1084.btn-navbar.active,
1085.btn-navbar.disabled,
1086.btn-navbar[disabled] {
1087 background-color: #222222;
1088}
1089.btn-navbar:active, .btn-navbar.active {
1090 background-color: #080808 \9;
1091}
1092.btn-navbar .icon-bar {
1093 display: block;
1094 width: 18px;
1095 height: 2px;
1096 background-color: #f5f5f5;
1097 -webkit-border-radius: 1px;
1098 -moz-border-radius: 1px;
1099 border-radius: 1px;
1100 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1101 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1102 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1103}
1104.btn-navbar .icon-bar + .icon-bar {
1105 margin-top: 3px;
1106}
1107.nav-collapse.collapse {
1108 height: auto;
1109}
1110.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301111 text-decoration: none;
1112}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301113.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301114 float: left;
1115 display: block;
1116 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301117 font-size: 20px;
1118 font-weight: 200;
1119 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301120 color: #ffffff;
1121}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301122.navbar .navbar-text {
1123 margin-bottom: 0;
1124 line-height: 40px;
1125 color: #999999;
1126}
1127.navbar .navbar-text a:hover {
1128 color: #ffffff;
1129 background-color: transparent;
1130}
1131.navbar .btn, .navbar .btn-group {
1132 margin-top: 5px;
1133}
1134.navbar .btn-group .btn {
1135 margin-top: 0;
1136}
1137.navbar-form {
1138 margin-bottom: 0;
1139 *zoom: 1;
1140}
1141.navbar-form:before, .navbar-form:after {
1142 display: table;
1143 content: "";
1144}
1145.navbar-form:after {
1146 clear: both;
1147}
1148.navbar-form input, .navbar-form select {
1149 display: inline-block;
1150 margin-top: 5px;
1151 margin-bottom: 0;
1152}
1153.navbar-form .radio, .navbar-form .checkbox {
1154 margin-top: 5px;
1155}
1156.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1157 margin-top: 3px;
1158}
1159.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301160 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301161 float: left;
1162 margin-top: 6px;
1163 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301164}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301165.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301166 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301167 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1168 font-size: 13px;
1169 font-weight: normal;
1170 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301171 color: #ffffff;
1172 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301173 background: #666;
1174 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301175 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301176 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1177 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1178 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 +05301179 -webkit-transition: none;
1180 -moz-transition: none;
1181 -ms-transition: none;
1182 -o-transition: none;
1183 transition: none;
1184}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301185.navbar-search .search-query :-moz-placeholder {
1186 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301187}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301188.navbar-search .search-query::-webkit-input-placeholder {
1189 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301190}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301191.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301192 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301193 background-color: #999999;
1194 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301195}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301196.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301197 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301198 color: #333333;
1199 text-shadow: 0 1px 0 #ffffff;
1200 background-color: #ffffff;
1201 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301202 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1203 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1204 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301205 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301206}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301207.navbar-fixed-top {
1208 position: fixed;
1209 top: 0;
1210 right: 0;
1211 left: 0;
1212 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301213}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301214.navbar-fixed-top .navbar-inner {
1215 padding-left: 0;
1216 padding-right: 0;
1217 -webkit-border-radius: 0;
1218 -moz-border-radius: 0;
1219 border-radius: 0;
1220}
1221.navbar .nav {
1222 position: relative;
1223 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301224 display: block;
1225 float: left;
1226 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301227}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301228.navbar .nav.pull-right {
1229 float: right;
1230}
1231.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301232 display: block;
1233 float: left;
1234}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301235.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301236 float: none;
1237 padding: 10px 10px 11px;
1238 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301239 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301240 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301241 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301242}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301243.navbar .nav > li > a:hover {
1244 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301245 color: #ffffff;
1246 text-decoration: none;
1247}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301248.navbar .nav .active > a, .navbar .nav .active > a:hover {
1249 color: #ffffff;
1250 text-decoration: none;
1251 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301252 background-color: rgba(0, 0, 0, 0.5);
1253}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301254.navbar .divider-vertical {
1255 height: 40px;
1256 width: 1px;
1257 margin: 0 9px;
1258 overflow: hidden;
1259 background-color: #222222;
1260 border-right: 1px solid #333333;
1261}
1262.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301263 margin-left: 10px;
1264 margin-right: 0;
1265}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301266.navbar .dropdown-menu {
1267 margin-top: 1px;
1268 -webkit-border-radius: 4px;
1269 -moz-border-radius: 4px;
1270 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301271}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301272.navbar .dropdown-menu:before {
1273 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301274 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301275 border-left: 7px solid transparent;
1276 border-right: 7px solid transparent;
1277 border-bottom: 7px solid #ccc;
1278 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301279 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301280 top: -7px;
1281 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301282}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301283.navbar .dropdown-menu:after {
1284 content: '';
1285 display: inline-block;
1286 border-left: 6px solid transparent;
1287 border-right: 6px solid transparent;
1288 border-bottom: 6px solid #ffffff;
1289 position: absolute;
1290 top: -6px;
1291 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301292}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301293.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1294 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301295}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301296.navbar .nav .active .caret {
1297 opacity: 1;
1298 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301299}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301300.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1301 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301302}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301303.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301304 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301305}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301306.navbar .nav.pull-right .dropdown-menu {
1307 left: auto;
1308 right: 0;
1309}
1310.navbar .nav.pull-right .dropdown-menu:before {
1311 left: auto;
1312 right: 12px;
1313}
1314.navbar .nav.pull-right .dropdown-menu:after {
1315 left: auto;
1316 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301317}
1318
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301319/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301320.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301321 display: block;
1322 float: right;
1323 width: 20px;
1324 margin-bottom: -5px;
1325 margin-top: 10px;
1326 visibility: hidden;
1327}
1328
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301329.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301330 padding: 0px 20px;
1331}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301332
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301333/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301334 * lib/css/bootstrap/dropdown.css
1335 */.dropdown {
1336 position: relative;
1337}
1338.dropdown-toggle {
1339 *margin-bottom: -3px;
1340}
1341.dropdown-toggle:active, .open .dropdown-toggle {
1342 outline: 0;
1343}
1344.caret {
1345 display: inline-block;
1346 width: 0;
1347 height: 0;
1348 text-indent: -99999px;
1349 *text-indent: 0;
1350 vertical-align: top;
1351 border-left: 4px solid transparent;
1352 border-right: 4px solid transparent;
1353 border-top: 4px solid #000000;
1354 opacity: 0.3;
1355 filter: alpha(opacity=30);
1356 content: "\2193";
1357}
1358.dropdown .caret {
1359 margin-top: 8px;
1360 margin-left: 2px;
1361}
1362.dropdown:hover .caret, .open.dropdown .caret {
1363 opacity: 1;
1364 filter: alpha(opacity=100);
1365}
1366.dropdown-menu {
1367 position: absolute;
1368 top: 100%;
1369 left: 0;
1370 z-index: 1000;
1371 float: left;
1372 display: none;
1373 min-width: 160px;
1374 max-width: 220px;
1375 _width: 160px;
1376 padding: 4px 0;
1377 margin: 0;
1378 list-style: none;
1379 background-color: #ffffff;
1380 border-color: #ccc;
1381 border-color: rgba(0, 0, 0, 0.2);
1382 border-style: solid;
1383 border-width: 1px;
1384 -webkit-border-radius: 0 0 5px 5px;
1385 -moz-border-radius: 0 0 5px 5px;
1386 border-radius: 0 0 5px 5px;
1387 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1388 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1389 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1390 -webkit-background-clip: padding-box;
1391 -moz-background-clip: padding;
1392 background-clip: padding-box;
1393 *border-right-width: 2px;
1394 *border-bottom-width: 2px;
1395}
1396.dropdown-menu.bottom-up {
1397 top: auto;
1398 bottom: 100%;
1399 margin-bottom: 2px;
1400}
1401.dropdown-menu .divider {
1402 height: 1px;
1403 margin: 5px 1px;
1404 overflow: hidden;
1405 background-color: #e5e5e5;
1406 border-bottom: 1px solid #ffffff;
1407 *width: 100%;
1408 *margin: -5px 0 5px;
1409}
1410.dropdown-menu a {
1411 display: block;
1412 padding: 3px 15px;
1413 clear: both;
1414 font-weight: normal;
1415 line-height: 18px;
1416 color: #555555;
1417 white-space: nowrap;
1418}
1419.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1420 color: #ffffff;
1421 text-decoration: none;
1422 background-color: #0088cc;
1423}
1424.dropdown.open {
1425 *z-index: 1000;
1426}
1427.dropdown.open .dropdown-toggle {
1428 color: #ffffff;
1429 background: #ccc;
1430 background: rgba(0, 0, 0, 0.3);
1431}
1432.dropdown.open .dropdown-menu {
1433 display: block;
1434}
1435/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301436 * lib/css/bootstrap/tooltip.css
1437 */.tooltip {
1438 position: absolute;
1439 z-index: 1020;
1440 display: block;
1441 visibility: visible;
1442 padding: 5px;
1443 font-size: 11px;
1444 opacity: 0;
1445 filter: alpha(opacity=0);
1446}
1447.tooltip.in {
1448 opacity: 0.8;
1449 filter: alpha(opacity=80);
1450}
1451.tooltip.top {
1452 margin-top: -2px;
1453}
1454.tooltip.right {
1455 margin-left: 2px;
1456}
1457.tooltip.bottom {
1458 margin-top: 2px;
1459}
1460.tooltip.left {
1461 margin-left: -2px;
1462}
1463.tooltip.top .tooltip-arrow {
1464 bottom: 0;
1465 left: 50%;
1466 margin-left: -5px;
1467 border-left: 5px solid transparent;
1468 border-right: 5px solid transparent;
1469 border-top: 5px solid #000000;
1470}
1471.tooltip.left .tooltip-arrow {
1472 top: 50%;
1473 right: 0;
1474 margin-top: -5px;
1475 border-top: 5px solid transparent;
1476 border-bottom: 5px solid transparent;
1477 border-left: 5px solid #000000;
1478}
1479.tooltip.bottom .tooltip-arrow {
1480 top: 0;
1481 left: 50%;
1482 margin-left: -5px;
1483 border-left: 5px solid transparent;
1484 border-right: 5px solid transparent;
1485 border-bottom: 5px solid #000000;
1486}
1487.tooltip.right .tooltip-arrow {
1488 top: 50%;
1489 left: 0;
1490 margin-top: -5px;
1491 border-top: 5px solid transparent;
1492 border-bottom: 5px solid transparent;
1493 border-right: 5px solid #000000;
1494}
1495.tooltip-inner {
1496 max-width: 200px;
1497 padding: 3px 8px;
1498 color: #ffffff;
1499 text-align: center;
1500 text-decoration: none;
1501 background-color: #000000;
1502 -webkit-border-radius: 4px;
1503 -moz-border-radius: 4px;
1504 border-radius: 4px;
1505}
1506.tooltip-arrow {
1507 position: absolute;
1508 width: 0;
1509 height: 0;
1510}
1511.popover {
1512 position: absolute;
1513 top: 0;
1514 left: 0;
1515 z-index: 1010;
1516 display: none;
1517 padding: 5px;
1518}
1519.popover.top {
1520 margin-top: -5px;
1521}
1522.popover.right {
1523 margin-left: 5px;
1524}
1525.popover.bottom {
1526 margin-top: 5px;
1527}
1528.popover.left {
1529 margin-left: -5px;
1530}
1531.popover.top .arrow {
1532 bottom: 0;
1533 left: 50%;
1534 margin-left: -5px;
1535 border-left: 5px solid transparent;
1536 border-right: 5px solid transparent;
1537 border-top: 5px solid #000000;
1538}
1539.popover.right .arrow {
1540 top: 50%;
1541 left: 0;
1542 margin-top: -5px;
1543 border-top: 5px solid transparent;
1544 border-bottom: 5px solid transparent;
1545 border-right: 5px solid #000000;
1546}
1547.popover.bottom .arrow {
1548 top: 0;
1549 left: 50%;
1550 margin-left: -5px;
1551 border-left: 5px solid transparent;
1552 border-right: 5px solid transparent;
1553 border-bottom: 5px solid #000000;
1554}
1555.popover.left .arrow {
1556 top: 50%;
1557 right: 0;
1558 margin-top: -5px;
1559 border-top: 5px solid transparent;
1560 border-bottom: 5px solid transparent;
1561 border-left: 5px solid #000000;
1562}
1563.popover .arrow {
1564 position: absolute;
1565 width: 0;
1566 height: 0;
1567}
1568.popover-inner {
1569 padding: 3px;
1570 width: 280px;
1571 overflow: hidden;
1572 background: #000000;
1573 background: rgba(0, 0, 0, 0.8);
1574 -webkit-border-radius: 6px;
1575 -moz-border-radius: 6px;
1576 border-radius: 6px;
1577 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1578 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1579 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1580}
1581.popover-title {
1582 padding: 9px 15px;
1583 line-height: 1;
1584 background-color: #f5f5f5;
1585 border-bottom: 1px solid #eee;
1586 -webkit-border-radius: 3px 3px 0 0;
1587 -moz-border-radius: 3px 3px 0 0;
1588 border-radius: 3px 3px 0 0;
1589}
1590.popover-content {
1591 padding: 14px;
1592 background-color: #ffffff;
1593 -webkit-border-radius: 0 0 3px 3px;
1594 -moz-border-radius: 0 0 3px 3px;
1595 border-radius: 0 0 3px 3px;
1596 -webkit-background-clip: padding-box;
1597 -moz-background-clip: padding-box;
1598 background-clip: padding-box;
1599}
1600.popover-content p, .popover-content ul, .popover-content ol {
1601 margin-bottom: 0;
1602}
1603/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301604 * erpnext/startup/startup.css
1605 */h1, h2, h3, h4, h5 {
1606 font-family: Tahoma, Arial, Verdana, sans-serif;
1607 font-weight: bold;
1608}
1609
1610body {
1611 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
1612 font-size: 12px;
1613}
1614
1615span, div, td, input, textarea, button, select {
1616 font-family: inherit;
1617}
1618
1619body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301620}
1621
1622.erpnext-footer {
1623 margin: 3px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301624 text-align: center;
1625}
1626
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301627.module-icons {
1628 background: url(../images/module-icons.png) no-repeat top left;
1629 width:16px;
1630 height:16px;
1631}
1632
1633.module-icons-accounts{ background-position: 0 0; }
1634.module-icons-analysis{ background-position: 0 -66px; }
1635.module-icons-buying{ background-position: 0 -132px; }
1636.module-icons-home{ background-position: 0 -198px; }
1637.module-icons-hr{ background-position: 0 -264px; }
1638.module-icons-people{ background-position: 0 -330px; }
1639.module-icons-production{ background-position: 0 -396px; }
1640.module-icons-projects{ background-position: 0 -462px; }
1641.module-icons-selling{ background-position: 0 -528px; }
1642.module-icons-setup{ background-position: 0 -594px; }
1643.module-icons-stock{ background-position: 0 -660px; }
1644.module-icons-support{ background-position: 0 -726px; }
Anand Doshic3023be2012-02-20 16:31:55 +05301645
Anand Doshidb628762012-02-24 17:56:00 +05301646.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301647 margin: -3px 0px;
1648 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301649 min-width: 20px;
1650 text-align: center;
1651 display: inline-block;
1652 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301653 color: #999999;
1654 background-color: #333131;
1655}
1656
1657.navbar-new-comments:hover,
1658.navbar-new-comments:active,
1659.navbar-new-comments:focus {
1660 color: #fff;
1661}
1662
1663
1664.navbar-new-comments-true {
1665 color: #fff;
1666 background-color: #B00D07;
1667}
1668
1669.navbar-icon-home {
1670 vertical-align: middle;
1671 opacity:0.4;
1672 Filter:alpha(opacity=40); /* For IE8 and earlier */
1673}
1674
1675.navbar-icon-home:hover,
1676.navbar-icon-home:focus,
1677.navbar-icon-home:active {
1678 opacity:1;
1679 Filter:alpha(opacity=100); /* For IE8 and earlier */
1680}
1681
1682/*extra size menus for recent*/
1683.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1684 min-width: 160px !important;
1685 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301686}
1687
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301688/*
1689 * erpnext/website/css/website.css
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301690 */.layout_wrapper {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301691 padding: 20px;
1692}
1693
1694h1 {
1695 margin-bottom: 15px;
1696}
1697
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301698h2 {
1699 margin-bottom: 11px;
1700}
1701
1702h3 {
1703 margin-bottom: 7px;
1704}
1705
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301706pre {
1707 background-color: #F8F8F8;
1708 border: 1px solid #CCCCCC;
1709 border-radius: 3px 3px 3px 3px;
1710 font-size: 13px;
1711 line-height: 19px;
1712 overflow: auto;
1713 padding: 6px 10px;
1714 margin-bottom: 9px;
1715}
1716
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301717.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1718 min-width: 180px;
1719}
1720
Rushabh Mehta13531b72012-02-20 12:35:23 +05301721.web-head-section {
1722 margin-bottom: 20px
1723}
1724
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301725.web-main-section {
1726 width: 65%;
1727 float: left;
1728 margin-bottom: 20px;
1729}
1730
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301731.web-side-section {
1732 width: 30%;
1733 float: right;
1734 margin-bottom: 20px;
1735 margin-right: 15px;
1736 color: #606060;
1737 overflow-x: hidden;
1738}
1739
1740.web-page-status {
1741 padding: 7px;
1742 color: #777;
1743 clear: both;
1744 text-align: right;
1745}
1746
1747.web-page-status a,
1748.web-page-status a:hover,
1749.web-page-status a:visited {
1750 padding: 2px;
1751 background-color: #777;
1752 color: #FFF;
1753 text-decoration: none;
1754}
1755
1756.web-page-status a:hover {
1757 background-color: #444;
1758}
1759
1760footer {
1761 color: #777;
1762}
1763
1764.web-footer {
1765 color: inherit;
1766 text-align: center;
1767 margin: 10px;
1768 line-height: 1.7;
1769}
1770
1771.web-footer div, .web-footer a {
1772 font-size: 11px;
1773}
1774
1775.web-footer-menu {
1776 margin-bottom: 7px;
1777}
1778footer a, footer a:visited {
1779 color: #777;
1780}
1781
1782footer a:hover {
1783 background-color: #777;
1784 color: #fff;
1785}
1786
1787.web-footer-menu ul {
1788 list-style: none;
1789 margin: 0px;
1790 padding: 0px;
1791}
1792
1793.web-footer-menu ul li {
1794 display: inline;
1795 padding: 2px 15px;
1796 border-right: 1px solid #999;
1797}
1798
1799.web-footer-menu ul li:last-child {
1800 border-right: 0px solid #777 !important;
1801}