blob: 9acc25b1fd9cde0bbe3cd6d5a3d7a54977c8fb46 [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}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530242/*
243 * lib/css/legacy/messages.css
244 */
245/* FLOATING MESSAGE */
246
247.btn-img { cursor: pointer; }
248
249div.fetching { color: #888; text-align:right; }
250
251div.notice {
252 postion: absolute;
253 background-color: #000;
254 -moz-border-radius: 5px; -webkit-border-radius: 5px;
255 opacity: 0.6;
256 right: 0;
257 top: 0;
258 margin-top: 8px;
259 z-index: -1;
260 padding: 8px;
261}
262
263/** help **/
264
265.info-box {
266 background-color: #F8F8F8;
267 border: 1px solid #CCCCCC;
268 border-radius: 3px 3px 3px 3px;
269 line-height: 1.6em;
270 overflow: auto;
271 padding: 6px 10px;
272 margin-bottom: 9px;
273}
274
275.help_box, .help-box {
276 background-color:#FFC;
277 font-size: 13px;
278 color: #864;
279 padding: 7px;
280 margin: 11px 0px;
281 border: 1px solid #EEB;
282}
283
284.help_box_big {
285 background-color:#FFC;
286 color: #864;
287 padding: 7px;
288 margin: 7px 0px;
289 border: 1px solid #EEB;
290 text-align: center;
291 font-size: 14px;
292}
293/*
294 * lib/css/legacy/dialog.css
295 *//***** Dialogs *******/
296
297div.dialog_wrapper {
298 position: absolute;
299 width: 440px;
300 display: none;
301 z-index: 90;
302 background-color: #FFF;
303 border: 3px solid #222;
304 box-shadow:1px 1px 5px #777;
305 -moz-box-shadow: 1px 1px 5px #777;
306 -webkit-box-shadow: 1px 1px 5px #777;
307
308 border-radius: 5px;
309 -moz-border-radius: 5px;
310 -webkit-border-radius: 5px;
311}
312
313div.dialog_head {
314 height: 22px;
315 padding: 4px;
316 background-color: #222;
317 color: #FFF;
318}
319
320div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530321 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530322 border-radius: 5px;
323 -moz-border-radius: 5px;
324 -webkit-border-radius: 5px;
325}
326
327div.dialog_back {
328 position: fixed;
329 display: none;
330 top: 0px;
331 left: 0px;
332 bottom: 0px;
333 right: 0px;
334 background-color: #EEE;
335 opacity: 0.6;
336 z-index: 50;
337 text-align: center;
338}
339
340div.dialog_message {
341 display: none;
342 position: absolute;
343 width: 250px;
344 font-size: 12px;
345 z-index: 91;
346 background-color:#FFF;
347 padding: 12px;
348 border: 1px solid #444;
349}
350
351div.dialog_row {
352 padding: 8px 8px 0px 8px;
353}
354
355div.dialog_row table {
356 width: 100%;
357}
358
359div.dialog_row table td {
360}
361
362div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
363 width: 80%;
364 font-size: 14px;
365}
366
367div.dialog_row table td textarea {
368 width: 80%;
369 height: 200px;
370 font-size: 12px;
371}
372
373/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530374 * lib/css/bootstrap/headings.css
375 *//* heading from bootstrap */
376
377h1,
378h2,
379h3,
380h4,
381h5,
382h6 {
383 margin: 0;
384 font-weight: bold;
385 color: #333333;
386 text-rendering: optimizelegibility;
387 margin-bottom: 0.3em;
388}
389h1 small,
390h2 small,
391h3 small,
392h4 small,
393h5 small,
394h6 small {
395 font-weight: normal;
396 color: #999999;
397}
398h1 {
399 font-size: 30px;
400 line-height: 36px;
401}
402h1 small {
403 font-size: 18px;
404}
405h2 {
406 font-size: 24px;
407 line-height: 36px;
408}
409h2 small {
410 font-size: 18px;
411}
412h3 {
413 line-height: 27px;
414 font-size: 18px;
415}
416h3 small {
417 font-size: 14px;
418}
419h4, h5, h6 {
420 line-height: 18px;
421}
422h4 {
423 font-size: 14px;
424}
425h4 small {
426 font-size: 12px;
427}
428h5 {
429 font-size: 12px;
430}
431h6 {
432 font-size: 11px;
433 color: #999999;
434 text-transform: uppercase;
435}
436/*
437 * lib/css/bootstrap/buttons.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530438 */.close {
439 float: right;
440 font-size: 20px;
441 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530442 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530443 color: #000000;
444 text-shadow: 0 1px 0 #ffffff;
445 opacity: 0.2;
446 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530447}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530448.close:hover {
449 color: #000000;
450 text-decoration: none;
451 opacity: 0.4;
452 filter: alpha(opacity=40);
453 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530454}
455.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530456 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530457 padding: 4px 10px 4px;
458 font-size: 13px;
459 line-height: 18px;
460 color: #333333;
461 text-align: center;
462 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
463 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530464 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
465 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
466 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
467 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
468 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
469 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530470 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530471 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530472 border: 1px solid #ccc;
473 border-bottom-color: #bbb;
474 -webkit-border-radius: 4px;
475 -moz-border-radius: 4px;
476 border-radius: 4px;
477 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
478 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
479 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 +0530480 cursor: pointer;
481 *margin-left: .3em;
482}
483.btn:first-child {
484 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530485}
486.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530487 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530488 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530489 background-color: #e6e6e6;
490 background-position: 0 -15px;
491 -webkit-transition: background-position 0.1s linear;
492 -moz-transition: background-position 0.1s linear;
493 -ms-transition: background-position 0.1s linear;
494 -o-transition: background-position 0.1s linear;
495 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530496}
497.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530498 outline: thin dotted;
499 outline: 5px auto -webkit-focus-ring-color;
500 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530501}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530502.btn.active, .btn:active {
503 background-image: none;
504 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
505 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
506 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
507 background-color: #e6e6e6;
508 background-color: #d9d9d9 \9;
509 color: rgba(0, 0, 0, 0.5);
510 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530511}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530512.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530513 cursor: default;
514 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530515 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530516 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530517 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530518 -webkit-box-shadow: none;
519 -moz-box-shadow: none;
520 box-shadow: none;
521}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530522.btn-large {
523 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530524 font-size: 15px;
525 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530526 -webkit-border-radius: 5px;
527 -moz-border-radius: 5px;
528 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530529}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530530.btn-large .icon {
531 margin-top: 1px;
532}
533.btn-small {
534 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530535 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530536 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530537}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530538.btn-small .icon {
539 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530540}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530541.btn-primary,
542.btn-primary:hover,
543.btn-warning,
544.btn-warning:hover,
545.btn-danger,
546.btn-danger:hover,
547.btn-success,
548.btn-success:hover,
549.btn-info,
550.btn-info:hover {
551 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
552 color: #ffffff;
553}
554.btn-primary.active,
555.btn-warning.active,
556.btn-danger.active,
557.btn-success.active,
558.btn-info.active {
559 color: rgba(255, 255, 255, 0.75);
560}
561.btn-primary {
562 background-color: #006dcc;
563 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
564 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
565 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
566 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
567 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
568 background-image: linear-gradient(top, #0088cc, #0044cc);
569 background-repeat: repeat-x;
570 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
571 border-color: #0044cc #0044cc #002a80;
572 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
573 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
574}
575.btn-primary:hover,
576.btn-primary:active,
577.btn-primary.active,
578.btn-primary.disabled,
579.btn-primary[disabled] {
580 background-color: #0044cc;
581}
582.btn-primary:active, .btn-primary.active {
583 background-color: #003399 \9;
584}
585.btn-warning {
586 background-color: #faa732;
587 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
588 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
589 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
590 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
591 background-image: -o-linear-gradient(top, #fbb450, #f89406);
592 background-image: linear-gradient(top, #fbb450, #f89406);
593 background-repeat: repeat-x;
594 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
595 border-color: #f89406 #f89406 #ad6704;
596 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
597 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
598}
599.btn-warning:hover,
600.btn-warning:active,
601.btn-warning.active,
602.btn-warning.disabled,
603.btn-warning[disabled] {
604 background-color: #f89406;
605}
606.btn-warning:active, .btn-warning.active {
607 background-color: #c67605 \9;
608}
609.btn-danger {
610 background-color: #da4f49;
611 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
612 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
613 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
614 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
615 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
616 background-image: linear-gradient(top, #ee5f5b, #bd362f);
617 background-repeat: repeat-x;
618 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
619 border-color: #bd362f #bd362f #802420;
620 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
621 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
622}
623.btn-danger:hover,
624.btn-danger:active,
625.btn-danger.active,
626.btn-danger.disabled,
627.btn-danger[disabled] {
628 background-color: #bd362f;
629}
630.btn-danger:active, .btn-danger.active {
631 background-color: #942a25 \9;
632}
633.btn-success {
634 background-color: #5bb75b;
635 background-image: -moz-linear-gradient(top, #62c462, #51a351);
636 background-image: -ms-linear-gradient(top, #62c462, #51a351);
637 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
638 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
639 background-image: -o-linear-gradient(top, #62c462, #51a351);
640 background-image: linear-gradient(top, #62c462, #51a351);
641 background-repeat: repeat-x;
642 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
643 border-color: #51a351 #51a351 #387038;
644 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
645 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
646}
647.btn-success:hover,
648.btn-success:active,
649.btn-success.active,
650.btn-success.disabled,
651.btn-success[disabled] {
652 background-color: #51a351;
653}
654.btn-success:active, .btn-success.active {
655 background-color: #408140 \9;
656}
657.btn-info {
658 background-color: #49afcd;
659 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
660 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
661 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
662 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
663 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
664 background-image: linear-gradient(top, #5bc0de, #2f96b4);
665 background-repeat: repeat-x;
666 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
667 border-color: #2f96b4 #2f96b4 #1f6377;
668 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
669 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
670}
671.btn-info:hover,
672.btn-info:active,
673.btn-info.active,
674.btn-info.disabled,
675.btn-info[disabled] {
676 background-color: #2f96b4;
677}
678.btn-info:active, .btn-info.active {
679 background-color: #24748c \9;
680}
681button.btn, input[type="submit"].btn {
682 *padding-top: 2px;
683 *padding-bottom: 2px;
684}
685button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530686 padding: 0;
687 border: 0;
688}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530689button.btn.large, input[type="submit"].btn.large {
690 *padding-top: 7px;
691 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530692}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530693button.btn.small, input[type="submit"].btn.small {
694 *padding-top: 3px;
695 *padding-bottom: 3px;
696}
697.btn-group {
698 position: relative;
699 *zoom: 1;
700 *margin-left: .3em;
701}
702.btn-group:before, .btn-group:after {
703 display: table;
704 content: "";
705}
706.btn-group:after {
707 clear: both;
708}
709.btn-group:first-child {
710 *margin-left: 0;
711}
712.btn-group + .btn-group {
713 margin-left: 5px;
714}
715.btn-toolbar {
716 margin-top: 9px;
717 margin-bottom: 9px;
718}
719.btn-toolbar .btn-group {
720 display: inline-block;
721 *display: inline;
722 /* IE7 inline-block hack */
723
724 *zoom: 1;
725}
726.btn-group .btn {
727 position: relative;
728 float: left;
729 margin-left: -1px;
730 -webkit-border-radius: 0;
731 -moz-border-radius: 0;
732 border-radius: 0;
733}
734.btn-group .btn:first-child {
735 margin-left: 0;
736 -webkit-border-top-left-radius: 4px;
737 -moz-border-radius-topleft: 4px;
738 border-top-left-radius: 4px;
739 -webkit-border-bottom-left-radius: 4px;
740 -moz-border-radius-bottomleft: 4px;
741 border-bottom-left-radius: 4px;
742}
743.btn-group .btn:last-child, .btn-group .dropdown-toggle {
744 -webkit-border-top-right-radius: 4px;
745 -moz-border-radius-topright: 4px;
746 border-top-right-radius: 4px;
747 -webkit-border-bottom-right-radius: 4px;
748 -moz-border-radius-bottomright: 4px;
749 border-bottom-right-radius: 4px;
750}
751.btn-group .btn.large:first-child {
752 margin-left: 0;
753 -webkit-border-top-left-radius: 6px;
754 -moz-border-radius-topleft: 6px;
755 border-top-left-radius: 6px;
756 -webkit-border-bottom-left-radius: 6px;
757 -moz-border-radius-bottomleft: 6px;
758 border-bottom-left-radius: 6px;
759}
760.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
761 -webkit-border-top-right-radius: 6px;
762 -moz-border-radius-topright: 6px;
763 border-top-right-radius: 6px;
764 -webkit-border-bottom-right-radius: 6px;
765 -moz-border-radius-bottomright: 6px;
766 border-bottom-right-radius: 6px;
767}
768.btn-group .btn:hover,
769.btn-group .btn:focus,
770.btn-group .btn:active,
771.btn-group .btn.active {
772 z-index: 2;
773}
774.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
775 outline: 0;
776}
777.btn-group .dropdown-toggle {
778 padding-left: 8px;
779 padding-right: 8px;
780 -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);
781 -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);
782 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 *padding-top: 5px;
784 *padding-bottom: 5px;
785}
786.btn-group.open {
787 *z-index: 1000;
788}
789.btn-group.open .dropdown-menu {
790 display: block;
791 margin-top: 1px;
792 -webkit-border-radius: 5px;
793 -moz-border-radius: 5px;
794 border-radius: 5px;
795}
796.btn-group.open .dropdown-toggle {
797 background-image: none;
798 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
799 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
800 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
801}
802.btn .caret {
803 margin-top: 7px;
804 margin-left: 0;
805}
806.btn:hover .caret, .open.btn-group .caret {
807 opacity: 1;
808 filter: alpha(opacity=100);
809}
810.btn-primary .caret,
811.btn-danger .caret,
812.btn-info .caret,
813.btn-success .caret {
814 border-top-color: #ffffff;
815 opacity: 0.75;
816 filter: alpha(opacity=75);
817}
818.btn-small .caret {
819 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530820}
821/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530822 * lib/css/bootstrap/navbar.css
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530823 */.nav {
824 margin-left: 0;
825 margin-bottom: 18px;
826 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530827}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530828.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530829 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530830}
831.nav > li > a:hover {
832 text-decoration: none;
833 background-color: #eeeeee;
834}
835.nav-list {
836 padding-left: 14px;
837 padding-right: 14px;
838 margin-bottom: 0;
839}
840.nav-list > li > a, .nav-list .nav-header {
841 display: block;
842 padding: 3px 15px;
843 margin-left: -15px;
844 margin-right: -15px;
845 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
846}
847.nav-list .nav-header {
848 font-size: 11px;
849 font-weight: bold;
850 line-height: 18px;
851 color: #999999;
852 text-transform: uppercase;
853}
854.nav-list > li + .nav-header {
855 margin-top: 9px;
856}
857.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530858 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530859 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
860 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530861}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530862.nav-list [class^="icon-"] {
863 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530864}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530865.nav-tabs, .nav-pills {
866 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530867}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530868.nav-tabs:before,
869.nav-pills:before,
870.nav-tabs:after,
871.nav-pills:after {
872 display: table;
873 content: "";
874}
875.nav-tabs:after, .nav-pills:after {
876 clear: both;
877}
878.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530879 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530880}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530881.nav-tabs > li > a, .nav-pills > li > a {
882 padding-right: 12px;
883 padding-left: 12px;
884 margin-right: 2px;
885 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530886}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530887.nav-tabs {
888 border-bottom: 1px solid #ddd;
889}
890.nav-tabs > li {
891 margin-bottom: -1px;
892}
893.nav-tabs > li > a {
894 padding-top: 9px;
895 padding-bottom: 9px;
896 border: 1px solid transparent;
897 -webkit-border-radius: 4px 4px 0 0;
898 -moz-border-radius: 4px 4px 0 0;
899 border-radius: 4px 4px 0 0;
900}
901.nav-tabs > li > a:hover {
902 border-color: #eeeeee #eeeeee #dddddd;
903}
904.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
905 color: #555555;
906 background-color: #ffffff;
907 border: 1px solid #ddd;
908 border-bottom-color: transparent;
909 cursor: default;
910}
911.nav-pills > li > a {
912 padding-top: 8px;
913 padding-bottom: 8px;
914 margin-top: 2px;
915 margin-bottom: 2px;
916 -webkit-border-radius: 5px;
917 -moz-border-radius: 5px;
918 border-radius: 5px;
919}
920.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530921 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530922 background-color: #0088cc;
923}
924.nav-stacked > li {
925 float: none;
926}
927.nav-stacked > li > a {
928 margin-right: 0;
929}
930.nav-tabs.nav-stacked {
931 border-bottom: 0;
932}
933.nav-tabs.nav-stacked > li > a {
934 border: 1px solid #ddd;
935 -webkit-border-radius: 0;
936 -moz-border-radius: 0;
937 border-radius: 0;
938}
939.nav-tabs.nav-stacked > li:first-child > a {
940 -webkit-border-radius: 4px 4px 0 0;
941 -moz-border-radius: 4px 4px 0 0;
942 border-radius: 4px 4px 0 0;
943}
944.nav-tabs.nav-stacked > li:last-child > a {
945 -webkit-border-radius: 0 0 4px 4px;
946 -moz-border-radius: 0 0 4px 4px;
947 border-radius: 0 0 4px 4px;
948}
949.nav-tabs.nav-stacked > li > a:hover {
950 border-color: #ddd;
951 z-index: 2;
952}
953.nav-pills.nav-stacked > li > a {
954 margin-bottom: 3px;
955}
956.nav-pills.nav-stacked > li:last-child > a {
957 margin-bottom: 1px;
958}
959.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
960 margin-top: 1px;
961 border-width: 1px;
962}
963.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530964 -webkit-border-radius: 4px;
965 -moz-border-radius: 4px;
966 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530967}
968.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
969 border-top-color: #0088cc;
970 margin-top: 6px;
971}
972.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
973 border-top-color: #005580;
974}
975.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
976 border-top-color: #333333;
977}
978.nav > .dropdown.active > a:hover {
979 color: #000000;
980 cursor: pointer;
981}
982.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
983 color: #ffffff;
984 background-color: #999999;
985 border-color: #999999;
986}
987.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
988 border-top-color: #ffffff;
989 opacity: 1;
990 filter: alpha(opacity=100);
991}
992
993.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530994 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530995 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530996}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530997.navbar-inner {
998 padding-left: 20px;
999 padding-right: 20px;
1000 background-color: #2c2c2c;
1001 background-image: -moz-linear-gradient(top, #333333, #222222);
1002 background-image: -ms-linear-gradient(top, #333333, #222222);
1003 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1004 background-image: -webkit-linear-gradient(top, #333333, #222222);
1005 background-image: -o-linear-gradient(top, #333333, #222222);
1006 background-image: linear-gradient(top, #333333, #222222);
1007 background-repeat: repeat-x;
1008 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1009 -webkit-border-radius: 4px;
1010 -moz-border-radius: 4px;
1011 border-radius: 4px;
1012 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1013 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1014 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1015}
1016.btn-navbar {
1017 display: none;
1018 float: right;
1019 padding: 7px 10px;
1020 margin-left: 5px;
1021 margin-right: 5px;
1022 background-color: #2c2c2c;
1023 background-image: -moz-linear-gradient(top, #333333, #222222);
1024 background-image: -ms-linear-gradient(top, #333333, #222222);
1025 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1026 background-image: -webkit-linear-gradient(top, #333333, #222222);
1027 background-image: -o-linear-gradient(top, #333333, #222222);
1028 background-image: linear-gradient(top, #333333, #222222);
1029 background-repeat: repeat-x;
1030 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1031 border-color: #222222 #222222 #000000;
1032 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1033 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1034 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1035 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1036 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1037}
1038.btn-navbar:hover,
1039.btn-navbar:active,
1040.btn-navbar.active,
1041.btn-navbar.disabled,
1042.btn-navbar[disabled] {
1043 background-color: #222222;
1044}
1045.btn-navbar:active, .btn-navbar.active {
1046 background-color: #080808 \9;
1047}
1048.btn-navbar .icon-bar {
1049 display: block;
1050 width: 18px;
1051 height: 2px;
1052 background-color: #f5f5f5;
1053 -webkit-border-radius: 1px;
1054 -moz-border-radius: 1px;
1055 border-radius: 1px;
1056 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1057 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1058 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1059}
1060.btn-navbar .icon-bar + .icon-bar {
1061 margin-top: 3px;
1062}
1063.nav-collapse.collapse {
1064 height: auto;
1065}
1066.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301067 text-decoration: none;
1068}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301069.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301070 float: left;
1071 display: block;
1072 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301073 font-size: 20px;
1074 font-weight: 200;
1075 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301076 color: #ffffff;
1077}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301078.navbar .navbar-text {
1079 margin-bottom: 0;
1080 line-height: 40px;
1081 color: #999999;
1082}
1083.navbar .navbar-text a:hover {
1084 color: #ffffff;
1085 background-color: transparent;
1086}
1087.navbar .btn, .navbar .btn-group {
1088 margin-top: 5px;
1089}
1090.navbar .btn-group .btn {
1091 margin-top: 0;
1092}
1093.navbar-form {
1094 margin-bottom: 0;
1095 *zoom: 1;
1096}
1097.navbar-form:before, .navbar-form:after {
1098 display: table;
1099 content: "";
1100}
1101.navbar-form:after {
1102 clear: both;
1103}
1104.navbar-form input, .navbar-form select {
1105 display: inline-block;
1106 margin-top: 5px;
1107 margin-bottom: 0;
1108}
1109.navbar-form .radio, .navbar-form .checkbox {
1110 margin-top: 5px;
1111}
1112.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1113 margin-top: 3px;
1114}
1115.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301116 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301117 float: left;
1118 margin-top: 6px;
1119 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301120}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301121.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301122 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301123 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1124 font-size: 13px;
1125 font-weight: normal;
1126 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301127 color: #ffffff;
1128 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301129 background: #666;
1130 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301131 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301132 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1133 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1134 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 +05301135 -webkit-transition: none;
1136 -moz-transition: none;
1137 -ms-transition: none;
1138 -o-transition: none;
1139 transition: none;
1140}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301141.navbar-search .search-query :-moz-placeholder {
1142 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301143}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301144.navbar-search .search-query::-webkit-input-placeholder {
1145 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301146}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301147.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301148 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301149 background-color: #999999;
1150 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301151}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301152.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301153 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301154 color: #333333;
1155 text-shadow: 0 1px 0 #ffffff;
1156 background-color: #ffffff;
1157 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301158 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1159 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1160 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301161 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301162}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301163.navbar-fixed-top {
1164 position: fixed;
1165 top: 0;
1166 right: 0;
1167 left: 0;
1168 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301169}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301170.navbar-fixed-top .navbar-inner {
1171 padding-left: 0;
1172 padding-right: 0;
1173 -webkit-border-radius: 0;
1174 -moz-border-radius: 0;
1175 border-radius: 0;
1176}
1177.navbar .nav {
1178 position: relative;
1179 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301180 display: block;
1181 float: left;
1182 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301183}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301184.navbar .nav.pull-right {
1185 float: right;
1186}
1187.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301188 display: block;
1189 float: left;
1190}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301191.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301192 float: none;
1193 padding: 10px 10px 11px;
1194 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301195 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301196 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301197 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301198}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301199.navbar .nav > li > a:hover {
1200 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301201 color: #ffffff;
1202 text-decoration: none;
1203}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301204.navbar .nav .active > a, .navbar .nav .active > a:hover {
1205 color: #ffffff;
1206 text-decoration: none;
1207 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301208 background-color: rgba(0, 0, 0, 0.5);
1209}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301210.navbar .divider-vertical {
1211 height: 40px;
1212 width: 1px;
1213 margin: 0 9px;
1214 overflow: hidden;
1215 background-color: #222222;
1216 border-right: 1px solid #333333;
1217}
1218.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301219 margin-left: 10px;
1220 margin-right: 0;
1221}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301222.navbar .dropdown-menu {
1223 margin-top: 1px;
1224 -webkit-border-radius: 4px;
1225 -moz-border-radius: 4px;
1226 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301227}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301228.navbar .dropdown-menu:before {
1229 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301230 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301231 border-left: 7px solid transparent;
1232 border-right: 7px solid transparent;
1233 border-bottom: 7px solid #ccc;
1234 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301235 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301236 top: -7px;
1237 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301238}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301239.navbar .dropdown-menu:after {
1240 content: '';
1241 display: inline-block;
1242 border-left: 6px solid transparent;
1243 border-right: 6px solid transparent;
1244 border-bottom: 6px solid #ffffff;
1245 position: absolute;
1246 top: -6px;
1247 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301248}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301249.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1250 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301251}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301252.navbar .nav .active .caret {
1253 opacity: 1;
1254 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301255}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301256.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1257 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301258}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301259.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301260 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301261}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301262.navbar .nav.pull-right .dropdown-menu {
1263 left: auto;
1264 right: 0;
1265}
1266.navbar .nav.pull-right .dropdown-menu:before {
1267 left: auto;
1268 right: 12px;
1269}
1270.navbar .nav.pull-right .dropdown-menu:after {
1271 left: auto;
1272 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301273}
1274
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301275/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301276.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301277 display: block;
1278 float: right;
1279 width: 20px;
1280 margin-bottom: -5px;
1281 margin-top: 10px;
1282 visibility: hidden;
1283}
1284
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301285.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301286 padding: 0px 20px;
1287}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301288
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301289/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301290 * lib/css/bootstrap/dropdown.css
1291 */.dropdown {
1292 position: relative;
1293}
1294.dropdown-toggle {
1295 *margin-bottom: -3px;
1296}
1297.dropdown-toggle:active, .open .dropdown-toggle {
1298 outline: 0;
1299}
1300.caret {
1301 display: inline-block;
1302 width: 0;
1303 height: 0;
1304 text-indent: -99999px;
1305 *text-indent: 0;
1306 vertical-align: top;
1307 border-left: 4px solid transparent;
1308 border-right: 4px solid transparent;
1309 border-top: 4px solid #000000;
1310 opacity: 0.3;
1311 filter: alpha(opacity=30);
1312 content: "\2193";
1313}
1314.dropdown .caret {
1315 margin-top: 8px;
1316 margin-left: 2px;
1317}
1318.dropdown:hover .caret, .open.dropdown .caret {
1319 opacity: 1;
1320 filter: alpha(opacity=100);
1321}
1322.dropdown-menu {
1323 position: absolute;
1324 top: 100%;
1325 left: 0;
1326 z-index: 1000;
1327 float: left;
1328 display: none;
1329 min-width: 160px;
1330 max-width: 220px;
1331 _width: 160px;
1332 padding: 4px 0;
1333 margin: 0;
1334 list-style: none;
1335 background-color: #ffffff;
1336 border-color: #ccc;
1337 border-color: rgba(0, 0, 0, 0.2);
1338 border-style: solid;
1339 border-width: 1px;
1340 -webkit-border-radius: 0 0 5px 5px;
1341 -moz-border-radius: 0 0 5px 5px;
1342 border-radius: 0 0 5px 5px;
1343 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1344 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1345 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1346 -webkit-background-clip: padding-box;
1347 -moz-background-clip: padding;
1348 background-clip: padding-box;
1349 *border-right-width: 2px;
1350 *border-bottom-width: 2px;
1351}
1352.dropdown-menu.bottom-up {
1353 top: auto;
1354 bottom: 100%;
1355 margin-bottom: 2px;
1356}
1357.dropdown-menu .divider {
1358 height: 1px;
1359 margin: 5px 1px;
1360 overflow: hidden;
1361 background-color: #e5e5e5;
1362 border-bottom: 1px solid #ffffff;
1363 *width: 100%;
1364 *margin: -5px 0 5px;
1365}
1366.dropdown-menu a {
1367 display: block;
1368 padding: 3px 15px;
1369 clear: both;
1370 font-weight: normal;
1371 line-height: 18px;
1372 color: #555555;
1373 white-space: nowrap;
1374}
1375.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1376 color: #ffffff;
1377 text-decoration: none;
1378 background-color: #0088cc;
1379}
1380.dropdown.open {
1381 *z-index: 1000;
1382}
1383.dropdown.open .dropdown-toggle {
1384 color: #ffffff;
1385 background: #ccc;
1386 background: rgba(0, 0, 0, 0.3);
1387}
1388.dropdown.open .dropdown-menu {
1389 display: block;
1390}
1391/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301392 * lib/css/bootstrap/tooltip.css
1393 */.tooltip {
1394 position: absolute;
1395 z-index: 1020;
1396 display: block;
1397 visibility: visible;
1398 padding: 5px;
1399 font-size: 11px;
1400 opacity: 0;
1401 filter: alpha(opacity=0);
1402}
1403.tooltip.in {
1404 opacity: 0.8;
1405 filter: alpha(opacity=80);
1406}
1407.tooltip.top {
1408 margin-top: -2px;
1409}
1410.tooltip.right {
1411 margin-left: 2px;
1412}
1413.tooltip.bottom {
1414 margin-top: 2px;
1415}
1416.tooltip.left {
1417 margin-left: -2px;
1418}
1419.tooltip.top .tooltip-arrow {
1420 bottom: 0;
1421 left: 50%;
1422 margin-left: -5px;
1423 border-left: 5px solid transparent;
1424 border-right: 5px solid transparent;
1425 border-top: 5px solid #000000;
1426}
1427.tooltip.left .tooltip-arrow {
1428 top: 50%;
1429 right: 0;
1430 margin-top: -5px;
1431 border-top: 5px solid transparent;
1432 border-bottom: 5px solid transparent;
1433 border-left: 5px solid #000000;
1434}
1435.tooltip.bottom .tooltip-arrow {
1436 top: 0;
1437 left: 50%;
1438 margin-left: -5px;
1439 border-left: 5px solid transparent;
1440 border-right: 5px solid transparent;
1441 border-bottom: 5px solid #000000;
1442}
1443.tooltip.right .tooltip-arrow {
1444 top: 50%;
1445 left: 0;
1446 margin-top: -5px;
1447 border-top: 5px solid transparent;
1448 border-bottom: 5px solid transparent;
1449 border-right: 5px solid #000000;
1450}
1451.tooltip-inner {
1452 max-width: 200px;
1453 padding: 3px 8px;
1454 color: #ffffff;
1455 text-align: center;
1456 text-decoration: none;
1457 background-color: #000000;
1458 -webkit-border-radius: 4px;
1459 -moz-border-radius: 4px;
1460 border-radius: 4px;
1461}
1462.tooltip-arrow {
1463 position: absolute;
1464 width: 0;
1465 height: 0;
1466}
1467.popover {
1468 position: absolute;
1469 top: 0;
1470 left: 0;
1471 z-index: 1010;
1472 display: none;
1473 padding: 5px;
1474}
1475.popover.top {
1476 margin-top: -5px;
1477}
1478.popover.right {
1479 margin-left: 5px;
1480}
1481.popover.bottom {
1482 margin-top: 5px;
1483}
1484.popover.left {
1485 margin-left: -5px;
1486}
1487.popover.top .arrow {
1488 bottom: 0;
1489 left: 50%;
1490 margin-left: -5px;
1491 border-left: 5px solid transparent;
1492 border-right: 5px solid transparent;
1493 border-top: 5px solid #000000;
1494}
1495.popover.right .arrow {
1496 top: 50%;
1497 left: 0;
1498 margin-top: -5px;
1499 border-top: 5px solid transparent;
1500 border-bottom: 5px solid transparent;
1501 border-right: 5px solid #000000;
1502}
1503.popover.bottom .arrow {
1504 top: 0;
1505 left: 50%;
1506 margin-left: -5px;
1507 border-left: 5px solid transparent;
1508 border-right: 5px solid transparent;
1509 border-bottom: 5px solid #000000;
1510}
1511.popover.left .arrow {
1512 top: 50%;
1513 right: 0;
1514 margin-top: -5px;
1515 border-top: 5px solid transparent;
1516 border-bottom: 5px solid transparent;
1517 border-left: 5px solid #000000;
1518}
1519.popover .arrow {
1520 position: absolute;
1521 width: 0;
1522 height: 0;
1523}
1524.popover-inner {
1525 padding: 3px;
1526 width: 280px;
1527 overflow: hidden;
1528 background: #000000;
1529 background: rgba(0, 0, 0, 0.8);
1530 -webkit-border-radius: 6px;
1531 -moz-border-radius: 6px;
1532 border-radius: 6px;
1533 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1534 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1535 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1536}
1537.popover-title {
1538 padding: 9px 15px;
1539 line-height: 1;
1540 background-color: #f5f5f5;
1541 border-bottom: 1px solid #eee;
1542 -webkit-border-radius: 3px 3px 0 0;
1543 -moz-border-radius: 3px 3px 0 0;
1544 border-radius: 3px 3px 0 0;
1545}
1546.popover-content {
1547 padding: 14px;
1548 background-color: #ffffff;
1549 -webkit-border-radius: 0 0 3px 3px;
1550 -moz-border-radius: 0 0 3px 3px;
1551 border-radius: 0 0 3px 3px;
1552 -webkit-background-clip: padding-box;
1553 -moz-background-clip: padding-box;
1554 background-clip: padding-box;
1555}
1556.popover-content p, .popover-content ul, .popover-content ol {
1557 margin-bottom: 0;
1558}
1559/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301560 * erpnext/startup/startup.css
1561 */h1, h2, h3, h4, h5 {
1562 font-family: Tahoma, Arial, Verdana, sans-serif;
1563 font-weight: bold;
1564}
1565
1566body {
1567 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
1568 font-size: 12px;
1569}
1570
1571span, div, td, input, textarea, button, select {
1572 font-family: inherit;
1573}
1574
1575body {
Rushabh Mehta5d267a42012-03-01 18:53:06 +05301576 background: url(../images/stripedbg.png) repeat;
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}