blob: 967c32b65c121cb83071320327dffe84bd58c284 [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 Mehtadf33cb32012-03-01 13:44:09 +0530233.avatar-small {
234 display: inline-block;
235 min-width: 29px;
236}
237.avatar-small img {
238 height: 24px;
239 margin-bottom: -7px;
240 max-width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530241}
242
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530243/*
244 * lib/css/legacy/messages.css
245 */
246/* FLOATING MESSAGE */
247
248.btn-img { cursor: pointer; }
249
250div.fetching { color: #888; text-align:right; }
251
252div.notice {
253 postion: absolute;
254 background-color: #000;
255 -moz-border-radius: 5px; -webkit-border-radius: 5px;
256 opacity: 0.6;
257 right: 0;
258 top: 0;
259 margin-top: 8px;
260 z-index: -1;
261 padding: 8px;
262}
263
264/** help **/
265
266.info-box {
267 background-color: #F8F8F8;
268 border: 1px solid #CCCCCC;
269 border-radius: 3px 3px 3px 3px;
270 line-height: 1.6em;
271 overflow: auto;
272 padding: 6px 10px;
273 margin-bottom: 9px;
274}
275
276.help_box, .help-box {
277 background-color:#FFC;
278 font-size: 13px;
279 color: #864;
280 padding: 7px;
281 margin: 11px 0px;
282 border: 1px solid #EEB;
283}
284
285.help_box_big {
286 background-color:#FFC;
287 color: #864;
288 padding: 7px;
289 margin: 7px 0px;
290 border: 1px solid #EEB;
291 text-align: center;
292 font-size: 14px;
293}
294/*
295 * lib/css/legacy/dialog.css
296 *//***** Dialogs *******/
297
298div.dialog_wrapper {
299 position: absolute;
300 width: 440px;
301 display: none;
302 z-index: 90;
303 background-color: #FFF;
304 border: 3px solid #222;
305 box-shadow:1px 1px 5px #777;
306 -moz-box-shadow: 1px 1px 5px #777;
307 -webkit-box-shadow: 1px 1px 5px #777;
308
309 border-radius: 5px;
310 -moz-border-radius: 5px;
311 -webkit-border-radius: 5px;
312}
313
314div.dialog_head {
315 height: 22px;
316 padding: 4px;
317 background-color: #222;
318 color: #FFF;
319}
320
321div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530322 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530323 border-radius: 5px;
324 -moz-border-radius: 5px;
325 -webkit-border-radius: 5px;
326}
327
328div.dialog_back {
329 position: fixed;
330 display: none;
331 top: 0px;
332 left: 0px;
333 bottom: 0px;
334 right: 0px;
335 background-color: #EEE;
336 opacity: 0.6;
337 z-index: 50;
338 text-align: center;
339}
340
341div.dialog_message {
342 display: none;
343 position: absolute;
344 width: 250px;
345 font-size: 12px;
346 z-index: 91;
347 background-color:#FFF;
348 padding: 12px;
349 border: 1px solid #444;
350}
351
352div.dialog_row {
353 padding: 8px 8px 0px 8px;
354}
355
356div.dialog_row table {
357 width: 100%;
358}
359
360div.dialog_row table td {
361}
362
363div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
364 width: 80%;
365 font-size: 14px;
366}
367
368div.dialog_row table td textarea {
369 width: 80%;
370 height: 200px;
371 font-size: 12px;
372}
373
374/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530375 * lib/css/bootstrap/headings.css
376 *//* heading from bootstrap */
377
378h1,
379h2,
380h3,
381h4,
382h5,
383h6 {
384 margin: 0;
385 font-weight: bold;
386 color: #333333;
387 text-rendering: optimizelegibility;
388 margin-bottom: 0.3em;
389}
390h1 small,
391h2 small,
392h3 small,
393h4 small,
394h5 small,
395h6 small {
396 font-weight: normal;
397 color: #999999;
398}
399h1 {
400 font-size: 30px;
401 line-height: 36px;
402}
403h1 small {
404 font-size: 18px;
405}
406h2 {
407 font-size: 24px;
408 line-height: 36px;
409}
410h2 small {
411 font-size: 18px;
412}
413h3 {
414 line-height: 27px;
415 font-size: 18px;
416}
417h3 small {
418 font-size: 14px;
419}
420h4, h5, h6 {
421 line-height: 18px;
422}
423h4 {
424 font-size: 14px;
425}
426h4 small {
427 font-size: 12px;
428}
429h5 {
430 font-size: 12px;
431}
432h6 {
433 font-size: 11px;
434 color: #999999;
435 text-transform: uppercase;
436}
437/*
438 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530439 */.close {
440 float: right;
441 font-size: 20px;
442 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530443 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530444 color: #000000;
445 text-shadow: 0 1px 0 #ffffff;
446 opacity: 0.2;
447 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530448}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530449.close:hover {
450 color: #000000;
451 text-decoration: none;
452 opacity: 0.4;
453 filter: alpha(opacity=40);
454 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530455}
456.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530457 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530458 padding: 4px 10px 4px;
459 font-size: 13px;
460 line-height: 18px;
461 color: #333333;
462 text-align: center;
463 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
464 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530465 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
466 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
467 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
468 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
469 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
470 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530471 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530472 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530473 border: 1px solid #ccc;
474 border-bottom-color: #bbb;
475 -webkit-border-radius: 4px;
476 -moz-border-radius: 4px;
477 border-radius: 4px;
478 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
479 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
480 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 +0530481 cursor: pointer;
482 *margin-left: .3em;
483}
484.btn:first-child {
485 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530486}
487.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530488 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530489 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530490 background-color: #e6e6e6;
491 background-position: 0 -15px;
492 -webkit-transition: background-position 0.1s linear;
493 -moz-transition: background-position 0.1s linear;
494 -ms-transition: background-position 0.1s linear;
495 -o-transition: background-position 0.1s linear;
496 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530497}
498.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530499 outline: thin dotted;
500 outline: 5px auto -webkit-focus-ring-color;
501 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530502}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530503.btn.active, .btn:active {
504 background-image: none;
505 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
506 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
507 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
508 background-color: #e6e6e6;
509 background-color: #d9d9d9 \9;
510 color: rgba(0, 0, 0, 0.5);
511 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530512}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530513.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530514 cursor: default;
515 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530516 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530517 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530518 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530519 -webkit-box-shadow: none;
520 -moz-box-shadow: none;
521 box-shadow: none;
522}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530523.btn-large {
524 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530525 font-size: 15px;
526 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530527 -webkit-border-radius: 5px;
528 -moz-border-radius: 5px;
529 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530530}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530531.btn-large .icon {
532 margin-top: 1px;
533}
534.btn-small {
535 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530536 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530537 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530538}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530539.btn-small .icon {
540 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530541}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530542.btn-primary,
543.btn-primary:hover,
544.btn-warning,
545.btn-warning:hover,
546.btn-danger,
547.btn-danger:hover,
548.btn-success,
549.btn-success:hover,
550.btn-info,
551.btn-info:hover {
552 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
553 color: #ffffff;
554}
555.btn-primary.active,
556.btn-warning.active,
557.btn-danger.active,
558.btn-success.active,
559.btn-info.active {
560 color: rgba(255, 255, 255, 0.75);
561}
562.btn-primary {
563 background-color: #006dcc;
564 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
565 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
566 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
567 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
568 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
569 background-image: linear-gradient(top, #0088cc, #0044cc);
570 background-repeat: repeat-x;
571 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
572 border-color: #0044cc #0044cc #002a80;
573 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
574 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
575}
576.btn-primary:hover,
577.btn-primary:active,
578.btn-primary.active,
579.btn-primary.disabled,
580.btn-primary[disabled] {
581 background-color: #0044cc;
582}
583.btn-primary:active, .btn-primary.active {
584 background-color: #003399 \9;
585}
586.btn-warning {
587 background-color: #faa732;
588 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
589 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
590 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
591 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
592 background-image: -o-linear-gradient(top, #fbb450, #f89406);
593 background-image: linear-gradient(top, #fbb450, #f89406);
594 background-repeat: repeat-x;
595 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
596 border-color: #f89406 #f89406 #ad6704;
597 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
598 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
599}
600.btn-warning:hover,
601.btn-warning:active,
602.btn-warning.active,
603.btn-warning.disabled,
604.btn-warning[disabled] {
605 background-color: #f89406;
606}
607.btn-warning:active, .btn-warning.active {
608 background-color: #c67605 \9;
609}
610.btn-danger {
611 background-color: #da4f49;
612 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
613 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
614 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
615 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
616 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
617 background-image: linear-gradient(top, #ee5f5b, #bd362f);
618 background-repeat: repeat-x;
619 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
620 border-color: #bd362f #bd362f #802420;
621 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
622 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
623}
624.btn-danger:hover,
625.btn-danger:active,
626.btn-danger.active,
627.btn-danger.disabled,
628.btn-danger[disabled] {
629 background-color: #bd362f;
630}
631.btn-danger:active, .btn-danger.active {
632 background-color: #942a25 \9;
633}
634.btn-success {
635 background-color: #5bb75b;
636 background-image: -moz-linear-gradient(top, #62c462, #51a351);
637 background-image: -ms-linear-gradient(top, #62c462, #51a351);
638 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
639 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
640 background-image: -o-linear-gradient(top, #62c462, #51a351);
641 background-image: linear-gradient(top, #62c462, #51a351);
642 background-repeat: repeat-x;
643 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
644 border-color: #51a351 #51a351 #387038;
645 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
646 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
647}
648.btn-success:hover,
649.btn-success:active,
650.btn-success.active,
651.btn-success.disabled,
652.btn-success[disabled] {
653 background-color: #51a351;
654}
655.btn-success:active, .btn-success.active {
656 background-color: #408140 \9;
657}
658.btn-info {
659 background-color: #49afcd;
660 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
661 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
662 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
663 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
664 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
665 background-image: linear-gradient(top, #5bc0de, #2f96b4);
666 background-repeat: repeat-x;
667 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
668 border-color: #2f96b4 #2f96b4 #1f6377;
669 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
670 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
671}
672.btn-info:hover,
673.btn-info:active,
674.btn-info.active,
675.btn-info.disabled,
676.btn-info[disabled] {
677 background-color: #2f96b4;
678}
679.btn-info:active, .btn-info.active {
680 background-color: #24748c \9;
681}
682button.btn, input[type="submit"].btn {
683 *padding-top: 2px;
684 *padding-bottom: 2px;
685}
686button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530687 padding: 0;
688 border: 0;
689}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530690button.btn.large, input[type="submit"].btn.large {
691 *padding-top: 7px;
692 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530693}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530694button.btn.small, input[type="submit"].btn.small {
695 *padding-top: 3px;
696 *padding-bottom: 3px;
697}
698.btn-group {
699 position: relative;
700 *zoom: 1;
701 *margin-left: .3em;
702}
703.btn-group:before, .btn-group:after {
704 display: table;
705 content: "";
706}
707.btn-group:after {
708 clear: both;
709}
710.btn-group:first-child {
711 *margin-left: 0;
712}
713.btn-group + .btn-group {
714 margin-left: 5px;
715}
716.btn-toolbar {
717 margin-top: 9px;
718 margin-bottom: 9px;
719}
720.btn-toolbar .btn-group {
721 display: inline-block;
722 *display: inline;
723 /* IE7 inline-block hack */
724
725 *zoom: 1;
726}
727.btn-group .btn {
728 position: relative;
729 float: left;
730 margin-left: -1px;
731 -webkit-border-radius: 0;
732 -moz-border-radius: 0;
733 border-radius: 0;
734}
735.btn-group .btn:first-child {
736 margin-left: 0;
737 -webkit-border-top-left-radius: 4px;
738 -moz-border-radius-topleft: 4px;
739 border-top-left-radius: 4px;
740 -webkit-border-bottom-left-radius: 4px;
741 -moz-border-radius-bottomleft: 4px;
742 border-bottom-left-radius: 4px;
743}
744.btn-group .btn:last-child, .btn-group .dropdown-toggle {
745 -webkit-border-top-right-radius: 4px;
746 -moz-border-radius-topright: 4px;
747 border-top-right-radius: 4px;
748 -webkit-border-bottom-right-radius: 4px;
749 -moz-border-radius-bottomright: 4px;
750 border-bottom-right-radius: 4px;
751}
752.btn-group .btn.large:first-child {
753 margin-left: 0;
754 -webkit-border-top-left-radius: 6px;
755 -moz-border-radius-topleft: 6px;
756 border-top-left-radius: 6px;
757 -webkit-border-bottom-left-radius: 6px;
758 -moz-border-radius-bottomleft: 6px;
759 border-bottom-left-radius: 6px;
760}
761.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
762 -webkit-border-top-right-radius: 6px;
763 -moz-border-radius-topright: 6px;
764 border-top-right-radius: 6px;
765 -webkit-border-bottom-right-radius: 6px;
766 -moz-border-radius-bottomright: 6px;
767 border-bottom-right-radius: 6px;
768}
769.btn-group .btn:hover,
770.btn-group .btn:focus,
771.btn-group .btn:active,
772.btn-group .btn.active {
773 z-index: 2;
774}
775.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
776 outline: 0;
777}
778.btn-group .dropdown-toggle {
779 padding-left: 8px;
780 padding-right: 8px;
781 -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);
782 -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);
783 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);
784 *padding-top: 5px;
785 *padding-bottom: 5px;
786}
787.btn-group.open {
788 *z-index: 1000;
789}
790.btn-group.open .dropdown-menu {
791 display: block;
792 margin-top: 1px;
793 -webkit-border-radius: 5px;
794 -moz-border-radius: 5px;
795 border-radius: 5px;
796}
797.btn-group.open .dropdown-toggle {
798 background-image: none;
799 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
800 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
801 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
802}
803.btn .caret {
804 margin-top: 7px;
805 margin-left: 0;
806}
807.btn:hover .caret, .open.btn-group .caret {
808 opacity: 1;
809 filter: alpha(opacity=100);
810}
811.btn-primary .caret,
812.btn-danger .caret,
813.btn-info .caret,
814.btn-success .caret {
815 border-top-color: #ffffff;
816 opacity: 0.75;
817 filter: alpha(opacity=75);
818}
819.btn-small .caret {
820 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530821}
822/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530823 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530824 */.nav {
825 margin-left: 0;
826 margin-bottom: 18px;
827 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530828}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530829.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530830 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530831}
832.nav > li > a:hover {
833 text-decoration: none;
834 background-color: #eeeeee;
835}
836.nav-list {
837 padding-left: 14px;
838 padding-right: 14px;
839 margin-bottom: 0;
840}
841.nav-list > li > a, .nav-list .nav-header {
842 display: block;
843 padding: 3px 15px;
844 margin-left: -15px;
845 margin-right: -15px;
846 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
847}
848.nav-list .nav-header {
849 font-size: 11px;
850 font-weight: bold;
851 line-height: 18px;
852 color: #999999;
853 text-transform: uppercase;
854}
855.nav-list > li + .nav-header {
856 margin-top: 9px;
857}
858.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530859 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530860 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
861 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530862}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530863.nav-list [class^="icon-"] {
864 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530865}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530866.nav-tabs, .nav-pills {
867 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530868}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530869.nav-tabs:before,
870.nav-pills:before,
871.nav-tabs:after,
872.nav-pills:after {
873 display: table;
874 content: "";
875}
876.nav-tabs:after, .nav-pills:after {
877 clear: both;
878}
879.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530880 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530881}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530882.nav-tabs > li > a, .nav-pills > li > a {
883 padding-right: 12px;
884 padding-left: 12px;
885 margin-right: 2px;
886 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530887}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530888.nav-tabs {
889 border-bottom: 1px solid #ddd;
890}
891.nav-tabs > li {
892 margin-bottom: -1px;
893}
894.nav-tabs > li > a {
895 padding-top: 9px;
896 padding-bottom: 9px;
897 border: 1px solid transparent;
898 -webkit-border-radius: 4px 4px 0 0;
899 -moz-border-radius: 4px 4px 0 0;
900 border-radius: 4px 4px 0 0;
901}
902.nav-tabs > li > a:hover {
903 border-color: #eeeeee #eeeeee #dddddd;
904}
905.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
906 color: #555555;
907 background-color: #ffffff;
908 border: 1px solid #ddd;
909 border-bottom-color: transparent;
910 cursor: default;
911}
912.nav-pills > li > a {
913 padding-top: 8px;
914 padding-bottom: 8px;
915 margin-top: 2px;
916 margin-bottom: 2px;
917 -webkit-border-radius: 5px;
918 -moz-border-radius: 5px;
919 border-radius: 5px;
920}
921.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530922 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530923 background-color: #0088cc;
924}
925.nav-stacked > li {
926 float: none;
927}
928.nav-stacked > li > a {
929 margin-right: 0;
930}
931.nav-tabs.nav-stacked {
932 border-bottom: 0;
933}
934.nav-tabs.nav-stacked > li > a {
935 border: 1px solid #ddd;
936 -webkit-border-radius: 0;
937 -moz-border-radius: 0;
938 border-radius: 0;
939}
940.nav-tabs.nav-stacked > li:first-child > a {
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.nav-stacked > li:last-child > a {
946 -webkit-border-radius: 0 0 4px 4px;
947 -moz-border-radius: 0 0 4px 4px;
948 border-radius: 0 0 4px 4px;
949}
950.nav-tabs.nav-stacked > li > a:hover {
951 border-color: #ddd;
952 z-index: 2;
953}
954.nav-pills.nav-stacked > li > a {
955 margin-bottom: 3px;
956}
957.nav-pills.nav-stacked > li:last-child > a {
958 margin-bottom: 1px;
959}
960.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
961 margin-top: 1px;
962 border-width: 1px;
963}
964.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530965 -webkit-border-radius: 4px;
966 -moz-border-radius: 4px;
967 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530968}
969.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
970 border-top-color: #0088cc;
971 margin-top: 6px;
972}
973.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
974 border-top-color: #005580;
975}
976.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
977 border-top-color: #333333;
978}
979.nav > .dropdown.active > a:hover {
980 color: #000000;
981 cursor: pointer;
982}
983.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
984 color: #ffffff;
985 background-color: #999999;
986 border-color: #999999;
987}
988.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
989 border-top-color: #ffffff;
990 opacity: 1;
991 filter: alpha(opacity=100);
992}
993
994.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530995 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530996 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530997}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530998.navbar-inner {
999 padding-left: 20px;
1000 padding-right: 20px;
1001 background-color: #2c2c2c;
1002 background-image: -moz-linear-gradient(top, #333333, #222222);
1003 background-image: -ms-linear-gradient(top, #333333, #222222);
1004 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1005 background-image: -webkit-linear-gradient(top, #333333, #222222);
1006 background-image: -o-linear-gradient(top, #333333, #222222);
1007 background-image: linear-gradient(top, #333333, #222222);
1008 background-repeat: repeat-x;
1009 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1010 -webkit-border-radius: 4px;
1011 -moz-border-radius: 4px;
1012 border-radius: 4px;
1013 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1014 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1015 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1016}
1017.btn-navbar {
1018 display: none;
1019 float: right;
1020 padding: 7px 10px;
1021 margin-left: 5px;
1022 margin-right: 5px;
1023 background-color: #2c2c2c;
1024 background-image: -moz-linear-gradient(top, #333333, #222222);
1025 background-image: -ms-linear-gradient(top, #333333, #222222);
1026 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1027 background-image: -webkit-linear-gradient(top, #333333, #222222);
1028 background-image: -o-linear-gradient(top, #333333, #222222);
1029 background-image: linear-gradient(top, #333333, #222222);
1030 background-repeat: repeat-x;
1031 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1032 border-color: #222222 #222222 #000000;
1033 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1034 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1035 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1036 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1037 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1038}
1039.btn-navbar:hover,
1040.btn-navbar:active,
1041.btn-navbar.active,
1042.btn-navbar.disabled,
1043.btn-navbar[disabled] {
1044 background-color: #222222;
1045}
1046.btn-navbar:active, .btn-navbar.active {
1047 background-color: #080808 \9;
1048}
1049.btn-navbar .icon-bar {
1050 display: block;
1051 width: 18px;
1052 height: 2px;
1053 background-color: #f5f5f5;
1054 -webkit-border-radius: 1px;
1055 -moz-border-radius: 1px;
1056 border-radius: 1px;
1057 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1058 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1059 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1060}
1061.btn-navbar .icon-bar + .icon-bar {
1062 margin-top: 3px;
1063}
1064.nav-collapse.collapse {
1065 height: auto;
1066}
1067.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301068 text-decoration: none;
1069}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301070.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301071 float: left;
1072 display: block;
1073 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301074 font-size: 20px;
1075 font-weight: 200;
1076 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301077 color: #ffffff;
1078}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301079.navbar .navbar-text {
1080 margin-bottom: 0;
1081 line-height: 40px;
1082 color: #999999;
1083}
1084.navbar .navbar-text a:hover {
1085 color: #ffffff;
1086 background-color: transparent;
1087}
1088.navbar .btn, .navbar .btn-group {
1089 margin-top: 5px;
1090}
1091.navbar .btn-group .btn {
1092 margin-top: 0;
1093}
1094.navbar-form {
1095 margin-bottom: 0;
1096 *zoom: 1;
1097}
1098.navbar-form:before, .navbar-form:after {
1099 display: table;
1100 content: "";
1101}
1102.navbar-form:after {
1103 clear: both;
1104}
1105.navbar-form input, .navbar-form select {
1106 display: inline-block;
1107 margin-top: 5px;
1108 margin-bottom: 0;
1109}
1110.navbar-form .radio, .navbar-form .checkbox {
1111 margin-top: 5px;
1112}
1113.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1114 margin-top: 3px;
1115}
1116.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301117 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301118 float: left;
1119 margin-top: 6px;
1120 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301121}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301122.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301123 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301124 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1125 font-size: 13px;
1126 font-weight: normal;
1127 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301128 color: #ffffff;
1129 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301130 background: #666;
1131 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301132 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301133 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1134 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1135 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 +05301136 -webkit-transition: none;
1137 -moz-transition: none;
1138 -ms-transition: none;
1139 -o-transition: none;
1140 transition: none;
1141}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301142.navbar-search .search-query :-moz-placeholder {
1143 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301144}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301145.navbar-search .search-query::-webkit-input-placeholder {
1146 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301147}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301148.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301149 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301150 background-color: #999999;
1151 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301152}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301153.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301154 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301155 color: #333333;
1156 text-shadow: 0 1px 0 #ffffff;
1157 background-color: #ffffff;
1158 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301159 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1160 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1161 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301162 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301163}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301164.navbar-fixed-top {
1165 position: fixed;
1166 top: 0;
1167 right: 0;
1168 left: 0;
1169 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301170}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301171.navbar-fixed-top .navbar-inner {
1172 padding-left: 0;
1173 padding-right: 0;
1174 -webkit-border-radius: 0;
1175 -moz-border-radius: 0;
1176 border-radius: 0;
1177}
1178.navbar .nav {
1179 position: relative;
1180 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301181 display: block;
1182 float: left;
1183 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301184}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301185.navbar .nav.pull-right {
1186 float: right;
1187}
1188.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301189 display: block;
1190 float: left;
1191}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301192.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301193 float: none;
1194 padding: 10px 10px 11px;
1195 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301196 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301197 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301198 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301199}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301200.navbar .nav > li > a:hover {
1201 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301202 color: #ffffff;
1203 text-decoration: none;
1204}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301205.navbar .nav .active > a, .navbar .nav .active > a:hover {
1206 color: #ffffff;
1207 text-decoration: none;
1208 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301209 background-color: rgba(0, 0, 0, 0.5);
1210}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301211.navbar .divider-vertical {
1212 height: 40px;
1213 width: 1px;
1214 margin: 0 9px;
1215 overflow: hidden;
1216 background-color: #222222;
1217 border-right: 1px solid #333333;
1218}
1219.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301220 margin-left: 10px;
1221 margin-right: 0;
1222}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301223.navbar .dropdown-menu {
1224 margin-top: 1px;
1225 -webkit-border-radius: 4px;
1226 -moz-border-radius: 4px;
1227 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301228}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301229.navbar .dropdown-menu:before {
1230 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301231 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301232 border-left: 7px solid transparent;
1233 border-right: 7px solid transparent;
1234 border-bottom: 7px solid #ccc;
1235 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301236 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301237 top: -7px;
1238 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301239}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301240.navbar .dropdown-menu:after {
1241 content: '';
1242 display: inline-block;
1243 border-left: 6px solid transparent;
1244 border-right: 6px solid transparent;
1245 border-bottom: 6px solid #ffffff;
1246 position: absolute;
1247 top: -6px;
1248 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301249}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301250.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1251 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301252}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301253.navbar .nav .active .caret {
1254 opacity: 1;
1255 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301256}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301257.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1258 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301259}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301260.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301261 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301262}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301263.navbar .nav.pull-right .dropdown-menu {
1264 left: auto;
1265 right: 0;
1266}
1267.navbar .nav.pull-right .dropdown-menu:before {
1268 left: auto;
1269 right: 12px;
1270}
1271.navbar .nav.pull-right .dropdown-menu:after {
1272 left: auto;
1273 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301274}
1275
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301276/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301277.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301278 display: block;
1279 float: right;
1280 width: 20px;
1281 margin-bottom: -5px;
1282 margin-top: 10px;
1283 visibility: hidden;
1284}
1285
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301286.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301287 padding: 0px 20px;
1288}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301289
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301290/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301291 * lib/css/bootstrap/dropdown.css
1292 */.dropdown {
1293 position: relative;
1294}
1295.dropdown-toggle {
1296 *margin-bottom: -3px;
1297}
1298.dropdown-toggle:active, .open .dropdown-toggle {
1299 outline: 0;
1300}
1301.caret {
1302 display: inline-block;
1303 width: 0;
1304 height: 0;
1305 text-indent: -99999px;
1306 *text-indent: 0;
1307 vertical-align: top;
1308 border-left: 4px solid transparent;
1309 border-right: 4px solid transparent;
1310 border-top: 4px solid #000000;
1311 opacity: 0.3;
1312 filter: alpha(opacity=30);
1313 content: "\2193";
1314}
1315.dropdown .caret {
1316 margin-top: 8px;
1317 margin-left: 2px;
1318}
1319.dropdown:hover .caret, .open.dropdown .caret {
1320 opacity: 1;
1321 filter: alpha(opacity=100);
1322}
1323.dropdown-menu {
1324 position: absolute;
1325 top: 100%;
1326 left: 0;
1327 z-index: 1000;
1328 float: left;
1329 display: none;
1330 min-width: 160px;
1331 max-width: 220px;
1332 _width: 160px;
1333 padding: 4px 0;
1334 margin: 0;
1335 list-style: none;
1336 background-color: #ffffff;
1337 border-color: #ccc;
1338 border-color: rgba(0, 0, 0, 0.2);
1339 border-style: solid;
1340 border-width: 1px;
1341 -webkit-border-radius: 0 0 5px 5px;
1342 -moz-border-radius: 0 0 5px 5px;
1343 border-radius: 0 0 5px 5px;
1344 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1345 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1346 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1347 -webkit-background-clip: padding-box;
1348 -moz-background-clip: padding;
1349 background-clip: padding-box;
1350 *border-right-width: 2px;
1351 *border-bottom-width: 2px;
1352}
1353.dropdown-menu.bottom-up {
1354 top: auto;
1355 bottom: 100%;
1356 margin-bottom: 2px;
1357}
1358.dropdown-menu .divider {
1359 height: 1px;
1360 margin: 5px 1px;
1361 overflow: hidden;
1362 background-color: #e5e5e5;
1363 border-bottom: 1px solid #ffffff;
1364 *width: 100%;
1365 *margin: -5px 0 5px;
1366}
1367.dropdown-menu a {
1368 display: block;
1369 padding: 3px 15px;
1370 clear: both;
1371 font-weight: normal;
1372 line-height: 18px;
1373 color: #555555;
1374 white-space: nowrap;
1375}
1376.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1377 color: #ffffff;
1378 text-decoration: none;
1379 background-color: #0088cc;
1380}
1381.dropdown.open {
1382 *z-index: 1000;
1383}
1384.dropdown.open .dropdown-toggle {
1385 color: #ffffff;
1386 background: #ccc;
1387 background: rgba(0, 0, 0, 0.3);
1388}
1389.dropdown.open .dropdown-menu {
1390 display: block;
1391}
1392/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301393 * lib/css/bootstrap/tooltip.css
1394 */.tooltip {
1395 position: absolute;
1396 z-index: 1020;
1397 display: block;
1398 visibility: visible;
1399 padding: 5px;
1400 font-size: 11px;
1401 opacity: 0;
1402 filter: alpha(opacity=0);
1403}
1404.tooltip.in {
1405 opacity: 0.8;
1406 filter: alpha(opacity=80);
1407}
1408.tooltip.top {
1409 margin-top: -2px;
1410}
1411.tooltip.right {
1412 margin-left: 2px;
1413}
1414.tooltip.bottom {
1415 margin-top: 2px;
1416}
1417.tooltip.left {
1418 margin-left: -2px;
1419}
1420.tooltip.top .tooltip-arrow {
1421 bottom: 0;
1422 left: 50%;
1423 margin-left: -5px;
1424 border-left: 5px solid transparent;
1425 border-right: 5px solid transparent;
1426 border-top: 5px solid #000000;
1427}
1428.tooltip.left .tooltip-arrow {
1429 top: 50%;
1430 right: 0;
1431 margin-top: -5px;
1432 border-top: 5px solid transparent;
1433 border-bottom: 5px solid transparent;
1434 border-left: 5px solid #000000;
1435}
1436.tooltip.bottom .tooltip-arrow {
1437 top: 0;
1438 left: 50%;
1439 margin-left: -5px;
1440 border-left: 5px solid transparent;
1441 border-right: 5px solid transparent;
1442 border-bottom: 5px solid #000000;
1443}
1444.tooltip.right .tooltip-arrow {
1445 top: 50%;
1446 left: 0;
1447 margin-top: -5px;
1448 border-top: 5px solid transparent;
1449 border-bottom: 5px solid transparent;
1450 border-right: 5px solid #000000;
1451}
1452.tooltip-inner {
1453 max-width: 200px;
1454 padding: 3px 8px;
1455 color: #ffffff;
1456 text-align: center;
1457 text-decoration: none;
1458 background-color: #000000;
1459 -webkit-border-radius: 4px;
1460 -moz-border-radius: 4px;
1461 border-radius: 4px;
1462}
1463.tooltip-arrow {
1464 position: absolute;
1465 width: 0;
1466 height: 0;
1467}
1468.popover {
1469 position: absolute;
1470 top: 0;
1471 left: 0;
1472 z-index: 1010;
1473 display: none;
1474 padding: 5px;
1475}
1476.popover.top {
1477 margin-top: -5px;
1478}
1479.popover.right {
1480 margin-left: 5px;
1481}
1482.popover.bottom {
1483 margin-top: 5px;
1484}
1485.popover.left {
1486 margin-left: -5px;
1487}
1488.popover.top .arrow {
1489 bottom: 0;
1490 left: 50%;
1491 margin-left: -5px;
1492 border-left: 5px solid transparent;
1493 border-right: 5px solid transparent;
1494 border-top: 5px solid #000000;
1495}
1496.popover.right .arrow {
1497 top: 50%;
1498 left: 0;
1499 margin-top: -5px;
1500 border-top: 5px solid transparent;
1501 border-bottom: 5px solid transparent;
1502 border-right: 5px solid #000000;
1503}
1504.popover.bottom .arrow {
1505 top: 0;
1506 left: 50%;
1507 margin-left: -5px;
1508 border-left: 5px solid transparent;
1509 border-right: 5px solid transparent;
1510 border-bottom: 5px solid #000000;
1511}
1512.popover.left .arrow {
1513 top: 50%;
1514 right: 0;
1515 margin-top: -5px;
1516 border-top: 5px solid transparent;
1517 border-bottom: 5px solid transparent;
1518 border-left: 5px solid #000000;
1519}
1520.popover .arrow {
1521 position: absolute;
1522 width: 0;
1523 height: 0;
1524}
1525.popover-inner {
1526 padding: 3px;
1527 width: 280px;
1528 overflow: hidden;
1529 background: #000000;
1530 background: rgba(0, 0, 0, 0.8);
1531 -webkit-border-radius: 6px;
1532 -moz-border-radius: 6px;
1533 border-radius: 6px;
1534 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1535 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1536 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1537}
1538.popover-title {
1539 padding: 9px 15px;
1540 line-height: 1;
1541 background-color: #f5f5f5;
1542 border-bottom: 1px solid #eee;
1543 -webkit-border-radius: 3px 3px 0 0;
1544 -moz-border-radius: 3px 3px 0 0;
1545 border-radius: 3px 3px 0 0;
1546}
1547.popover-content {
1548 padding: 14px;
1549 background-color: #ffffff;
1550 -webkit-border-radius: 0 0 3px 3px;
1551 -moz-border-radius: 0 0 3px 3px;
1552 border-radius: 0 0 3px 3px;
1553 -webkit-background-clip: padding-box;
1554 -moz-background-clip: padding-box;
1555 background-clip: padding-box;
1556}
1557.popover-content p, .popover-content ul, .popover-content ol {
1558 margin-bottom: 0;
1559}
1560/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301561 * erpnext/startup/startup.css
1562 */h1, h2, h3, h4, h5 {
1563 font-family: Tahoma, Arial, Verdana, sans-serif;
1564 font-weight: bold;
1565}
1566
1567body {
1568 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
1569 font-size: 12px;
1570}
1571
1572span, div, td, input, textarea, button, select {
1573 font-family: inherit;
1574}
1575
1576body {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301577}
1578
1579.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301580 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301581 text-align: center;
1582}
1583
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301584.module-icons {
1585 background: url(../images/module-icons.png) no-repeat top left;
1586 width:16px;
1587 height:16px;
1588}
1589
1590.module-icons-accounts{ background-position: 0 0; }
1591.module-icons-analysis{ background-position: 0 -66px; }
1592.module-icons-buying{ background-position: 0 -132px; }
1593.module-icons-home{ background-position: 0 -198px; }
1594.module-icons-hr{ background-position: 0 -264px; }
1595.module-icons-people{ background-position: 0 -330px; }
1596.module-icons-production{ background-position: 0 -396px; }
1597.module-icons-projects{ background-position: 0 -462px; }
1598.module-icons-selling{ background-position: 0 -528px; }
1599.module-icons-setup{ background-position: 0 -594px; }
1600.module-icons-stock{ background-position: 0 -660px; }
1601.module-icons-support{ background-position: 0 -726px; }
Anand Doshic3023be2012-02-20 16:31:55 +05301602
Anand Doshidb628762012-02-24 17:56:00 +05301603.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301604 margin: -3px 0px;
1605 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301606 min-width: 20px;
1607 text-align: center;
1608 display: inline-block;
1609 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301610 color: #999999;
1611 background-color: #333131;
1612}
1613
1614.navbar-new-comments:hover,
1615.navbar-new-comments:active,
1616.navbar-new-comments:focus {
1617 color: #fff;
1618}
1619
1620
1621.navbar-new-comments-true {
1622 color: #fff;
1623 background-color: #B00D07;
1624}
1625
1626.navbar-icon-home {
1627 vertical-align: middle;
1628 opacity:0.4;
1629 Filter:alpha(opacity=40); /* For IE8 and earlier */
1630}
1631
1632.navbar-icon-home:hover,
1633.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05301634.navbar-icon-home:active,
1635.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301636 opacity:1;
1637 Filter:alpha(opacity=100); /* For IE8 and earlier */
1638}
1639
1640/*extra size menus for recent*/
1641.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1642 min-width: 160px !important;
1643 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301644}
1645
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301646/*
1647 * erpnext/website/css/website.css
Rushabh Mehtac5471dd2012-02-22 12:07:42 +05301648 */.layout_wrapper {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301649 padding: 20px;
1650}
1651
1652h1 {
1653 margin-bottom: 15px;
1654}
1655
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301656h2 {
1657 margin-bottom: 11px;
1658}
1659
1660h3 {
1661 margin-bottom: 7px;
1662}
1663
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301664pre {
1665 background-color: #F8F8F8;
1666 border: 1px solid #CCCCCC;
1667 border-radius: 3px 3px 3px 3px;
1668 font-size: 13px;
1669 line-height: 19px;
1670 overflow: auto;
1671 padding: 6px 10px;
1672 margin-bottom: 9px;
1673}
1674
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301675.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1676 min-width: 180px;
1677}
1678
Rushabh Mehta13531b72012-02-20 12:35:23 +05301679.web-head-section {
1680 margin-bottom: 20px
1681}
1682
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301683.web-main-section {
1684 width: 65%;
1685 float: left;
1686 margin-bottom: 20px;
1687}
1688
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301689.web-side-section {
1690 width: 30%;
1691 float: right;
1692 margin-bottom: 20px;
1693 margin-right: 15px;
1694 color: #606060;
1695 overflow-x: hidden;
1696}
1697
1698.web-page-status {
1699 padding: 7px;
1700 color: #777;
1701 clear: both;
1702 text-align: right;
1703}
1704
1705.web-page-status a,
1706.web-page-status a:hover,
1707.web-page-status a:visited {
1708 padding: 2px;
1709 background-color: #777;
1710 color: #FFF;
1711 text-decoration: none;
1712}
1713
1714.web-page-status a:hover {
1715 background-color: #444;
1716}
1717
1718footer {
1719 color: #777;
1720}
1721
1722.web-footer {
1723 color: inherit;
1724 text-align: center;
1725 margin: 10px;
1726 line-height: 1.7;
1727}
1728
1729.web-footer div, .web-footer a {
1730 font-size: 11px;
1731}
1732
1733.web-footer-menu {
1734 margin-bottom: 7px;
1735}
1736footer a, footer a:visited {
1737 color: #777;
1738}
1739
1740footer a:hover {
1741 background-color: #777;
1742 color: #fff;
1743}
1744
1745.web-footer-menu ul {
1746 list-style: none;
1747 margin: 0px;
1748 padding: 0px;
1749}
1750
1751.web-footer-menu ul li {
1752 display: inline;
1753 padding: 2px 15px;
1754 border-right: 1px solid #999;
1755}
1756
1757.web-footer-menu ul li:last-child {
1758 border-right: 0px solid #777 !important;
1759}