blob: ceb6d9c7be00acc69bbe1330c3a38d2f0d1e0555 [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
3 * lib/css/legacy/body.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5html {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05306 margin: 0px;
7 padding: 0px;
8}
9
10body {
11 margin: 0px;
12 padding: 0px;
13 font-family: Arial, Helvetica, Sans;
14 font-size: 12px;
15 color: #000;
Rushabh Mehta3f29b852012-02-20 15:40:29 +053016 background-color: #e2e2e2;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053017}
18
Rushabh Mehtaafaac602012-02-14 11:44:13 +053019pre { margin: 0px; padding: 0px; }
20
21button { margin: 2px; margin-left: 0px; }
22
23label {
24 padding-top: 15px;
25 color: #404040;
26}
27
28select, input, textarea {
29 border: 1px solid #AAA;
30 -moz-border-radius: 4px;
31 -webkit-border-radius: 4px;
32 font-size: 13px;
33 padding: 4px;
34 color: #222;
35}
36
37textarea {
38 font-family: inherit;
39 height: 120px;
40 width: 90%;
41 font-size: 12px;
42 white-space: normal;
43}
44
45table { padding: 0px; border-collapse: 'collapse'}
46
47td {
48 padding:0px;
49 margin: 0px;
50 vertical-align: top;
51}
52
53p {
54 margin: 0px 0px 9px 0px;
55 line-height: 1.5em;
56}
57
58li {
59 line-height: 1.5em;
60}
61
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053062hr {
63 margin: 18px 0;
64 border: 0;
65 border-top: 1px solid #e5e5e5;
66 border-bottom: 1px solid #ffffff;
67}
68
Rushabh Mehtad0251332012-02-21 17:26:50 +053069/* links */
70
Rushabh Mehtaafaac602012-02-14 11:44:13 +053071a:active { outline:none; }
72
Rushabh Mehtad0251332012-02-21 17:26:50 +053073a {
74 color: #0088cc;
75 text-decoration: none;
76}
77a:hover {
78 color: #005580;
79 text-decoration: underline;
80}
81
82.link_type {
83 padding:2px;
84 color: #0088cc;
85 cursor: pointer;
86}
87
88.link_type:hover {
89 color: #005580;
90 text-decoration: underline;
91}
92
Rushabh Mehtaafaac602012-02-14 11:44:13 +053093:focus { -moz-outline-style:none; }
94
95table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
96table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
97
98div.fix_ff_cursor { overflow: auto; }
99
100/* --- Layout --- */
101
102div.comment { color: #444; }
103
104div#body_div {
105 position: relative;
106 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530107 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530108 width: 900px;
109 margin: auto;
110 margin-top: 56px;
111}
112
113footer {
114 width: 900px;
115 margin: auto;
116}
117header .container {
118 width: 900px;
119 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530120}
121
122div.no_script {
123 display: none;
124}
125
126div.loading_div {
127 position: absolute;
128 background-color: #FFFFCC;
129 z-index: 1999;
130 right: 5px;
131 width: 90px;
132 display: none;
133 text-align: center;
134 padding: 2px;
135 font-size: 12px;
136 border: 1px solid #FF4;
137}
138
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530139div.std-footer {
140 margin: 13px 0px;
141 border-top: 1px solid #AAA;
142 padding: 13px;
143}
144
145div.std-footer-item {
146 margin: 0px 13px 13px 0px;
147}
148
149.shadow {
150 -moz-box-shadow: 0px 2px 2px #888;
151 -webkit-box-shadow: 0px 2px 2px #888;
152 box-shadow: 0px 2px 2px #888;
153}
154
155.round {
156 -webkit-border-radius: 5px;
157 -moz-border-radius: 5px;
158 border-radius: 5px;
159}
160.gradient {
161 background: #ededed; /* Old browsers */
162 background: -moz-linear-gradient(top, #ededed 0%, #d1d1d1 47%, #b7b7b7 100%); /* FF3.6+ */
163 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(47%,#d1d1d1), color-stop(100%,#b7b7b7)); /* Chrome,Safari4+ */
164 background: -webkit-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Chrome10+,Safari5.1+ */
165 background: -o-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Opera11.10+ */
166 background: -ms-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* IE10+ */
167 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#b7b7b7',GradientType=0 ); /* IE6-9 */
168 background: linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* W3C */
169}
170
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530171.layout_wrapper, .layout-wrapper {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530172 -moz-box-shadow: 1px 1px 8px #555;
173 -webkit-box-shadow: 1px 1px 8px #555;
174 box-shadow: 1px 1px 8px #555;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530175 background-color: #fff;
176 padding: 15px;
177}
178
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530179.layout-wrapper-background {
180 background-color: #f2f2f2 !important;
181 padding: 0px;
182}
183
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530184.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530185 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530186 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530187 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530188 background-color: #FFF;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530189 min-height: 450px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530190 -moz-box-shadow: 7px 0px 6px -2px #ddd;
191 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
192 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530193}
194
195.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530196 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530197 /*float: right;*/
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530198 color: #606060;
199 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530200 padding: 15px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530201 min-height: 450px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530202}
203
204/* from bootstrap */
205.container {
206 margin-left: auto;
207 margin-right: auto;
208 zoom: 1;
209}
210.container:before, .container:after {
211 display: table;
212 content: "";
213 zoom: 1;
214}
215.container:after {
216 clear: both;
217}
218
Anand Doshi40ee8d62012-02-24 19:21:47 +0530219.well {
220 min-height: 20px;
221 padding: 19px;
222 margin-bottom: 20px;
223 background-color: #f5f5f5;
224 border: 1px solid #eee;
225 border: 1px solid rgba(0, 0, 0, 0.05);
226 -webkit-border-radius: 4px;
227 -moz-border-radius: 4px;
228 border-radius: 4px;
229 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
230 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
231 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
232}
233
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530234.avatar-small {
235 display: inline-block;
236 min-width: 29px;
237}
238.avatar-small img {
239 height: 24px;
240 margin-bottom: -7px;
241 max-width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530242}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530243
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530244/*
245 * lib/css/legacy/messages.css
246 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530247
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530248/* FLOATING MESSAGE */
249
250.btn-img { cursor: pointer; }
251
252div.fetching { color: #888; text-align:right; }
253
254div.notice {
255 postion: absolute;
256 background-color: #000;
257 -moz-border-radius: 5px; -webkit-border-radius: 5px;
258 opacity: 0.6;
259 right: 0;
260 top: 0;
261 margin-top: 8px;
262 z-index: -1;
263 padding: 8px;
264}
265
266/** help **/
267
268.info-box {
269 background-color: #F8F8F8;
270 border: 1px solid #CCCCCC;
271 border-radius: 3px 3px 3px 3px;
272 line-height: 1.6em;
273 overflow: auto;
274 padding: 6px 10px;
275 margin-bottom: 9px;
276}
277
278.help_box, .help-box {
279 background-color:#FFC;
280 font-size: 13px;
281 color: #864;
282 padding: 7px;
283 margin: 11px 0px;
284 border: 1px solid #EEB;
285}
286
287.help_box_big {
288 background-color:#FFC;
289 color: #864;
290 padding: 7px;
291 margin: 7px 0px;
292 border: 1px solid #EEB;
293 text-align: center;
294 font-size: 14px;
295}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530296
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530297/*
298 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530299 */
300/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530301
302div.dialog_wrapper {
303 position: absolute;
304 width: 440px;
305 display: none;
306 z-index: 90;
307 background-color: #FFF;
308 border: 3px solid #222;
309 box-shadow:1px 1px 5px #777;
310 -moz-box-shadow: 1px 1px 5px #777;
311 -webkit-box-shadow: 1px 1px 5px #777;
312
313 border-radius: 5px;
314 -moz-border-radius: 5px;
315 -webkit-border-radius: 5px;
316}
317
318div.dialog_head {
319 height: 22px;
320 padding: 4px;
321 background-color: #222;
322 color: #FFF;
323}
324
325div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530326 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530327 border-radius: 5px;
328 -moz-border-radius: 5px;
329 -webkit-border-radius: 5px;
330}
331
332div.dialog_back {
333 position: fixed;
334 display: none;
335 top: 0px;
336 left: 0px;
337 bottom: 0px;
338 right: 0px;
339 background-color: #EEE;
340 opacity: 0.6;
341 z-index: 50;
342 text-align: center;
343}
344
345div.dialog_message {
346 display: none;
347 position: absolute;
348 width: 250px;
349 font-size: 12px;
350 z-index: 91;
351 background-color:#FFF;
352 padding: 12px;
353 border: 1px solid #444;
354}
355
356div.dialog_row {
357 padding: 8px 8px 0px 8px;
358}
359
360div.dialog_row table {
361 width: 100%;
362}
363
364div.dialog_row table td {
365}
366
367div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
368 width: 80%;
369 font-size: 14px;
370}
371
372div.dialog_row table td textarea {
373 width: 80%;
374 height: 200px;
375 font-size: 12px;
376}
377
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530378
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530379/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530380 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530381 */
382/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530383
384h1,
385h2,
386h3,
387h4,
388h5,
389h6 {
390 margin: 0;
391 font-weight: bold;
392 color: #333333;
393 text-rendering: optimizelegibility;
394 margin-bottom: 0.3em;
395}
396h1 small,
397h2 small,
398h3 small,
399h4 small,
400h5 small,
401h6 small {
402 font-weight: normal;
403 color: #999999;
404}
405h1 {
406 font-size: 30px;
407 line-height: 36px;
408}
409h1 small {
410 font-size: 18px;
411}
412h2 {
413 font-size: 24px;
414 line-height: 36px;
415}
416h2 small {
417 font-size: 18px;
418}
419h3 {
420 line-height: 27px;
421 font-size: 18px;
422}
423h3 small {
424 font-size: 14px;
425}
426h4, h5, h6 {
427 line-height: 18px;
428}
429h4 {
430 font-size: 14px;
431}
432h4 small {
433 font-size: 12px;
434}
435h5 {
436 font-size: 12px;
437}
438h6 {
439 font-size: 11px;
440 color: #999999;
441 text-transform: uppercase;
442}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530443
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530444/*
445 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530446 */
447.close {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530448 float: right;
449 font-size: 20px;
450 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530451 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530452 color: #000000;
453 text-shadow: 0 1px 0 #ffffff;
454 opacity: 0.2;
455 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530456}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530457.close:hover {
458 color: #000000;
459 text-decoration: none;
460 opacity: 0.4;
461 filter: alpha(opacity=40);
462 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530463}
464.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530465 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530466 padding: 4px 10px 4px;
467 font-size: 13px;
468 line-height: 18px;
469 color: #333333;
470 text-align: center;
471 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
472 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530473 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
474 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
475 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
476 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
477 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
478 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530479 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530480 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530481 border: 1px solid #ccc;
482 border-bottom-color: #bbb;
483 -webkit-border-radius: 4px;
484 -moz-border-radius: 4px;
485 border-radius: 4px;
486 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
487 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
488 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 +0530489 cursor: pointer;
490 *margin-left: .3em;
491}
492.btn:first-child {
493 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530494}
495.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530496 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530497 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530498 background-color: #e6e6e6;
499 background-position: 0 -15px;
500 -webkit-transition: background-position 0.1s linear;
501 -moz-transition: background-position 0.1s linear;
502 -ms-transition: background-position 0.1s linear;
503 -o-transition: background-position 0.1s linear;
504 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530505}
506.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530507 outline: thin dotted;
508 outline: 5px auto -webkit-focus-ring-color;
509 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530510}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530511.btn.active, .btn:active {
512 background-image: none;
513 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
514 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
515 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
516 background-color: #e6e6e6;
517 background-color: #d9d9d9 \9;
518 color: rgba(0, 0, 0, 0.5);
519 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530520}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530521.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530522 cursor: default;
523 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530524 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530525 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530526 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530527 -webkit-box-shadow: none;
528 -moz-box-shadow: none;
529 box-shadow: none;
530}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530531.btn-large {
532 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530533 font-size: 15px;
534 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530535 -webkit-border-radius: 5px;
536 -moz-border-radius: 5px;
537 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530538}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530539.btn-large .icon {
540 margin-top: 1px;
541}
542.btn-small {
543 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530544 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530545 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530546}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530547.btn-small .icon {
548 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530549}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530550.btn-primary,
551.btn-primary:hover,
552.btn-warning,
553.btn-warning:hover,
554.btn-danger,
555.btn-danger:hover,
556.btn-success,
557.btn-success:hover,
558.btn-info,
559.btn-info:hover {
560 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
561 color: #ffffff;
562}
563.btn-primary.active,
564.btn-warning.active,
565.btn-danger.active,
566.btn-success.active,
567.btn-info.active {
568 color: rgba(255, 255, 255, 0.75);
569}
570.btn-primary {
571 background-color: #006dcc;
572 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
573 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
574 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
575 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
576 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
577 background-image: linear-gradient(top, #0088cc, #0044cc);
578 background-repeat: repeat-x;
579 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
580 border-color: #0044cc #0044cc #002a80;
581 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
582 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
583}
584.btn-primary:hover,
585.btn-primary:active,
586.btn-primary.active,
587.btn-primary.disabled,
588.btn-primary[disabled] {
589 background-color: #0044cc;
590}
591.btn-primary:active, .btn-primary.active {
592 background-color: #003399 \9;
593}
594.btn-warning {
595 background-color: #faa732;
596 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
597 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
598 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
599 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
600 background-image: -o-linear-gradient(top, #fbb450, #f89406);
601 background-image: linear-gradient(top, #fbb450, #f89406);
602 background-repeat: repeat-x;
603 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
604 border-color: #f89406 #f89406 #ad6704;
605 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
606 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
607}
608.btn-warning:hover,
609.btn-warning:active,
610.btn-warning.active,
611.btn-warning.disabled,
612.btn-warning[disabled] {
613 background-color: #f89406;
614}
615.btn-warning:active, .btn-warning.active {
616 background-color: #c67605 \9;
617}
618.btn-danger {
619 background-color: #da4f49;
620 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
621 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
622 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
623 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
624 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
625 background-image: linear-gradient(top, #ee5f5b, #bd362f);
626 background-repeat: repeat-x;
627 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
628 border-color: #bd362f #bd362f #802420;
629 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
630 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
631}
632.btn-danger:hover,
633.btn-danger:active,
634.btn-danger.active,
635.btn-danger.disabled,
636.btn-danger[disabled] {
637 background-color: #bd362f;
638}
639.btn-danger:active, .btn-danger.active {
640 background-color: #942a25 \9;
641}
642.btn-success {
643 background-color: #5bb75b;
644 background-image: -moz-linear-gradient(top, #62c462, #51a351);
645 background-image: -ms-linear-gradient(top, #62c462, #51a351);
646 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
647 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
648 background-image: -o-linear-gradient(top, #62c462, #51a351);
649 background-image: linear-gradient(top, #62c462, #51a351);
650 background-repeat: repeat-x;
651 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
652 border-color: #51a351 #51a351 #387038;
653 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
654 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
655}
656.btn-success:hover,
657.btn-success:active,
658.btn-success.active,
659.btn-success.disabled,
660.btn-success[disabled] {
661 background-color: #51a351;
662}
663.btn-success:active, .btn-success.active {
664 background-color: #408140 \9;
665}
666.btn-info {
667 background-color: #49afcd;
668 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
669 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
670 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
671 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
672 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
673 background-image: linear-gradient(top, #5bc0de, #2f96b4);
674 background-repeat: repeat-x;
675 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
676 border-color: #2f96b4 #2f96b4 #1f6377;
677 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
678 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
679}
680.btn-info:hover,
681.btn-info:active,
682.btn-info.active,
683.btn-info.disabled,
684.btn-info[disabled] {
685 background-color: #2f96b4;
686}
687.btn-info:active, .btn-info.active {
688 background-color: #24748c \9;
689}
690button.btn, input[type="submit"].btn {
691 *padding-top: 2px;
692 *padding-bottom: 2px;
693}
694button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530695 padding: 0;
696 border: 0;
697}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530698button.btn.large, input[type="submit"].btn.large {
699 *padding-top: 7px;
700 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530701}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530702button.btn.small, input[type="submit"].btn.small {
703 *padding-top: 3px;
704 *padding-bottom: 3px;
705}
706.btn-group {
707 position: relative;
708 *zoom: 1;
709 *margin-left: .3em;
710}
711.btn-group:before, .btn-group:after {
712 display: table;
713 content: "";
714}
715.btn-group:after {
716 clear: both;
717}
718.btn-group:first-child {
719 *margin-left: 0;
720}
721.btn-group + .btn-group {
722 margin-left: 5px;
723}
724.btn-toolbar {
725 margin-top: 9px;
726 margin-bottom: 9px;
727}
728.btn-toolbar .btn-group {
729 display: inline-block;
730 *display: inline;
731 /* IE7 inline-block hack */
732
733 *zoom: 1;
734}
735.btn-group .btn {
736 position: relative;
737 float: left;
738 margin-left: -1px;
739 -webkit-border-radius: 0;
740 -moz-border-radius: 0;
741 border-radius: 0;
742}
743.btn-group .btn:first-child {
744 margin-left: 0;
745 -webkit-border-top-left-radius: 4px;
746 -moz-border-radius-topleft: 4px;
747 border-top-left-radius: 4px;
748 -webkit-border-bottom-left-radius: 4px;
749 -moz-border-radius-bottomleft: 4px;
750 border-bottom-left-radius: 4px;
751}
752.btn-group .btn:last-child, .btn-group .dropdown-toggle {
753 -webkit-border-top-right-radius: 4px;
754 -moz-border-radius-topright: 4px;
755 border-top-right-radius: 4px;
756 -webkit-border-bottom-right-radius: 4px;
757 -moz-border-radius-bottomright: 4px;
758 border-bottom-right-radius: 4px;
759}
760.btn-group .btn.large:first-child {
761 margin-left: 0;
762 -webkit-border-top-left-radius: 6px;
763 -moz-border-radius-topleft: 6px;
764 border-top-left-radius: 6px;
765 -webkit-border-bottom-left-radius: 6px;
766 -moz-border-radius-bottomleft: 6px;
767 border-bottom-left-radius: 6px;
768}
769.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
770 -webkit-border-top-right-radius: 6px;
771 -moz-border-radius-topright: 6px;
772 border-top-right-radius: 6px;
773 -webkit-border-bottom-right-radius: 6px;
774 -moz-border-radius-bottomright: 6px;
775 border-bottom-right-radius: 6px;
776}
777.btn-group .btn:hover,
778.btn-group .btn:focus,
779.btn-group .btn:active,
780.btn-group .btn.active {
781 z-index: 2;
782}
783.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
784 outline: 0;
785}
786.btn-group .dropdown-toggle {
787 padding-left: 8px;
788 padding-right: 8px;
789 -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);
790 -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);
791 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);
792 *padding-top: 5px;
793 *padding-bottom: 5px;
794}
795.btn-group.open {
796 *z-index: 1000;
797}
798.btn-group.open .dropdown-menu {
799 display: block;
800 margin-top: 1px;
801 -webkit-border-radius: 5px;
802 -moz-border-radius: 5px;
803 border-radius: 5px;
804}
805.btn-group.open .dropdown-toggle {
806 background-image: none;
807 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
808 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
809 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
810}
811.btn .caret {
812 margin-top: 7px;
813 margin-left: 0;
814}
815.btn:hover .caret, .open.btn-group .caret {
816 opacity: 1;
817 filter: alpha(opacity=100);
818}
819.btn-primary .caret,
820.btn-danger .caret,
821.btn-info .caret,
822.btn-success .caret {
823 border-top-color: #ffffff;
824 opacity: 0.75;
825 filter: alpha(opacity=75);
826}
827.btn-small .caret {
828 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530829}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530830
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530831/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530832 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530833 */
834.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530835 margin-left: 0;
836 margin-bottom: 18px;
837 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530838}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530839.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530840 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530841}
842.nav > li > a:hover {
843 text-decoration: none;
844 background-color: #eeeeee;
845}
846.nav-list {
847 padding-left: 14px;
848 padding-right: 14px;
849 margin-bottom: 0;
850}
851.nav-list > li > a, .nav-list .nav-header {
852 display: block;
853 padding: 3px 15px;
854 margin-left: -15px;
855 margin-right: -15px;
856 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
857}
858.nav-list .nav-header {
859 font-size: 11px;
860 font-weight: bold;
861 line-height: 18px;
862 color: #999999;
863 text-transform: uppercase;
864}
865.nav-list > li + .nav-header {
866 margin-top: 9px;
867}
868.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530869 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530870 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
871 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530872}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530873.nav-list [class^="icon-"] {
874 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530875}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530876.nav-tabs, .nav-pills {
877 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530878}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530879.nav-tabs:before,
880.nav-pills:before,
881.nav-tabs:after,
882.nav-pills:after {
883 display: table;
884 content: "";
885}
886.nav-tabs:after, .nav-pills:after {
887 clear: both;
888}
889.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530890 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530891}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530892.nav-tabs > li > a, .nav-pills > li > a {
893 padding-right: 12px;
894 padding-left: 12px;
895 margin-right: 2px;
896 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530897}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530898.nav-tabs {
899 border-bottom: 1px solid #ddd;
900}
901.nav-tabs > li {
902 margin-bottom: -1px;
903}
904.nav-tabs > li > a {
905 padding-top: 9px;
906 padding-bottom: 9px;
907 border: 1px solid transparent;
908 -webkit-border-radius: 4px 4px 0 0;
909 -moz-border-radius: 4px 4px 0 0;
910 border-radius: 4px 4px 0 0;
911}
912.nav-tabs > li > a:hover {
913 border-color: #eeeeee #eeeeee #dddddd;
914}
915.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
916 color: #555555;
917 background-color: #ffffff;
918 border: 1px solid #ddd;
919 border-bottom-color: transparent;
920 cursor: default;
921}
922.nav-pills > li > a {
923 padding-top: 8px;
924 padding-bottom: 8px;
925 margin-top: 2px;
926 margin-bottom: 2px;
927 -webkit-border-radius: 5px;
928 -moz-border-radius: 5px;
929 border-radius: 5px;
930}
931.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530932 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530933 background-color: #0088cc;
934}
935.nav-stacked > li {
936 float: none;
937}
938.nav-stacked > li > a {
939 margin-right: 0;
940}
941.nav-tabs.nav-stacked {
942 border-bottom: 0;
943}
944.nav-tabs.nav-stacked > li > a {
945 border: 1px solid #ddd;
946 -webkit-border-radius: 0;
947 -moz-border-radius: 0;
948 border-radius: 0;
949}
950.nav-tabs.nav-stacked > li:first-child > a {
951 -webkit-border-radius: 4px 4px 0 0;
952 -moz-border-radius: 4px 4px 0 0;
953 border-radius: 4px 4px 0 0;
954}
955.nav-tabs.nav-stacked > li:last-child > a {
956 -webkit-border-radius: 0 0 4px 4px;
957 -moz-border-radius: 0 0 4px 4px;
958 border-radius: 0 0 4px 4px;
959}
960.nav-tabs.nav-stacked > li > a:hover {
961 border-color: #ddd;
962 z-index: 2;
963}
964.nav-pills.nav-stacked > li > a {
965 margin-bottom: 3px;
966}
967.nav-pills.nav-stacked > li:last-child > a {
968 margin-bottom: 1px;
969}
970.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
971 margin-top: 1px;
972 border-width: 1px;
973}
974.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530975 -webkit-border-radius: 4px;
976 -moz-border-radius: 4px;
977 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530978}
979.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
980 border-top-color: #0088cc;
981 margin-top: 6px;
982}
983.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
984 border-top-color: #005580;
985}
986.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
987 border-top-color: #333333;
988}
989.nav > .dropdown.active > a:hover {
990 color: #000000;
991 cursor: pointer;
992}
993.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
994 color: #ffffff;
995 background-color: #999999;
996 border-color: #999999;
997}
998.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
999 border-top-color: #ffffff;
1000 opacity: 1;
1001 filter: alpha(opacity=100);
1002}
1003
1004.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301005 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301006 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301007}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301008.navbar-inner {
1009 padding-left: 20px;
1010 padding-right: 20px;
1011 background-color: #2c2c2c;
1012 background-image: -moz-linear-gradient(top, #333333, #222222);
1013 background-image: -ms-linear-gradient(top, #333333, #222222);
1014 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1015 background-image: -webkit-linear-gradient(top, #333333, #222222);
1016 background-image: -o-linear-gradient(top, #333333, #222222);
1017 background-image: linear-gradient(top, #333333, #222222);
1018 background-repeat: repeat-x;
1019 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1020 -webkit-border-radius: 4px;
1021 -moz-border-radius: 4px;
1022 border-radius: 4px;
1023 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1024 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1025 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1026}
1027.btn-navbar {
1028 display: none;
1029 float: right;
1030 padding: 7px 10px;
1031 margin-left: 5px;
1032 margin-right: 5px;
1033 background-color: #2c2c2c;
1034 background-image: -moz-linear-gradient(top, #333333, #222222);
1035 background-image: -ms-linear-gradient(top, #333333, #222222);
1036 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1037 background-image: -webkit-linear-gradient(top, #333333, #222222);
1038 background-image: -o-linear-gradient(top, #333333, #222222);
1039 background-image: linear-gradient(top, #333333, #222222);
1040 background-repeat: repeat-x;
1041 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1042 border-color: #222222 #222222 #000000;
1043 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1044 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1045 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1046 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1047 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1048}
1049.btn-navbar:hover,
1050.btn-navbar:active,
1051.btn-navbar.active,
1052.btn-navbar.disabled,
1053.btn-navbar[disabled] {
1054 background-color: #222222;
1055}
1056.btn-navbar:active, .btn-navbar.active {
1057 background-color: #080808 \9;
1058}
1059.btn-navbar .icon-bar {
1060 display: block;
1061 width: 18px;
1062 height: 2px;
1063 background-color: #f5f5f5;
1064 -webkit-border-radius: 1px;
1065 -moz-border-radius: 1px;
1066 border-radius: 1px;
1067 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1068 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1069 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1070}
1071.btn-navbar .icon-bar + .icon-bar {
1072 margin-top: 3px;
1073}
1074.nav-collapse.collapse {
1075 height: auto;
1076}
1077.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301078 text-decoration: none;
1079}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301080.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301081 float: left;
1082 display: block;
1083 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301084 font-size: 20px;
1085 font-weight: 200;
1086 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301087 color: #ffffff;
1088}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301089.navbar .navbar-text {
1090 margin-bottom: 0;
1091 line-height: 40px;
1092 color: #999999;
1093}
1094.navbar .navbar-text a:hover {
1095 color: #ffffff;
1096 background-color: transparent;
1097}
1098.navbar .btn, .navbar .btn-group {
1099 margin-top: 5px;
1100}
1101.navbar .btn-group .btn {
1102 margin-top: 0;
1103}
1104.navbar-form {
1105 margin-bottom: 0;
1106 *zoom: 1;
1107}
1108.navbar-form:before, .navbar-form:after {
1109 display: table;
1110 content: "";
1111}
1112.navbar-form:after {
1113 clear: both;
1114}
1115.navbar-form input, .navbar-form select {
1116 display: inline-block;
1117 margin-top: 5px;
1118 margin-bottom: 0;
1119}
1120.navbar-form .radio, .navbar-form .checkbox {
1121 margin-top: 5px;
1122}
1123.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1124 margin-top: 3px;
1125}
1126.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301127 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301128 float: left;
1129 margin-top: 6px;
1130 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301131}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301132.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301133 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301134 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1135 font-size: 13px;
1136 font-weight: normal;
1137 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301138 color: #ffffff;
1139 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301140 background: #666;
1141 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301142 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301143 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1144 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1145 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 +05301146 -webkit-transition: none;
1147 -moz-transition: none;
1148 -ms-transition: none;
1149 -o-transition: none;
1150 transition: none;
1151}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301152.navbar-search .search-query :-moz-placeholder {
1153 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301154}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301155.navbar-search .search-query::-webkit-input-placeholder {
1156 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301157}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301158.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301159 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301160 background-color: #999999;
1161 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301162}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301163.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301164 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301165 color: #333333;
1166 text-shadow: 0 1px 0 #ffffff;
1167 background-color: #ffffff;
1168 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301169 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1170 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1171 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301172 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301173}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301174.navbar-fixed-top {
1175 position: fixed;
1176 top: 0;
1177 right: 0;
1178 left: 0;
1179 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301180}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301181.navbar-fixed-top .navbar-inner {
1182 padding-left: 0;
1183 padding-right: 0;
1184 -webkit-border-radius: 0;
1185 -moz-border-radius: 0;
1186 border-radius: 0;
1187}
1188.navbar .nav {
1189 position: relative;
1190 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301191 display: block;
1192 float: left;
1193 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301194}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301195.navbar .nav.pull-right {
1196 float: right;
1197}
1198.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301199 display: block;
1200 float: left;
1201}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301202.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301203 float: none;
1204 padding: 10px 10px 11px;
1205 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301206 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301207 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301208 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301209}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301210.navbar .nav > li > a:hover {
1211 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301212 color: #ffffff;
1213 text-decoration: none;
1214}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301215.navbar .nav .active > a, .navbar .nav .active > a:hover {
1216 color: #ffffff;
1217 text-decoration: none;
1218 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301219 background-color: rgba(0, 0, 0, 0.5);
1220}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301221.navbar .divider-vertical {
1222 height: 40px;
1223 width: 1px;
1224 margin: 0 9px;
1225 overflow: hidden;
1226 background-color: #222222;
1227 border-right: 1px solid #333333;
1228}
1229.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301230 margin-left: 10px;
1231 margin-right: 0;
1232}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301233.navbar .dropdown-menu {
1234 margin-top: 1px;
1235 -webkit-border-radius: 4px;
1236 -moz-border-radius: 4px;
1237 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301238}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301239.navbar .dropdown-menu:before {
1240 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301241 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301242 border-left: 7px solid transparent;
1243 border-right: 7px solid transparent;
1244 border-bottom: 7px solid #ccc;
1245 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301246 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301247 top: -7px;
1248 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301249}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301250.navbar .dropdown-menu:after {
1251 content: '';
1252 display: inline-block;
1253 border-left: 6px solid transparent;
1254 border-right: 6px solid transparent;
1255 border-bottom: 6px solid #ffffff;
1256 position: absolute;
1257 top: -6px;
1258 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301259}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301260.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1261 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301262}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301263.navbar .nav .active .caret {
1264 opacity: 1;
1265 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301266}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301267.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1268 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301269}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301270.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301271 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301272}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301273.navbar .nav.pull-right .dropdown-menu {
1274 left: auto;
1275 right: 0;
1276}
1277.navbar .nav.pull-right .dropdown-menu:before {
1278 left: auto;
1279 right: 12px;
1280}
1281.navbar .nav.pull-right .dropdown-menu:after {
1282 left: auto;
1283 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301284}
1285
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301286/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301287.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301288 display: block;
1289 float: right;
1290 width: 20px;
1291 margin-bottom: -5px;
1292 margin-top: 10px;
1293 visibility: hidden;
1294}
1295
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301296.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301297 padding: 0px 20px;
1298}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301299
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301300
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301301/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301302 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301303 */
1304.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301305 position: relative;
1306}
1307.dropdown-toggle {
1308 *margin-bottom: -3px;
1309}
1310.dropdown-toggle:active, .open .dropdown-toggle {
1311 outline: 0;
1312}
1313.caret {
1314 display: inline-block;
1315 width: 0;
1316 height: 0;
1317 text-indent: -99999px;
1318 *text-indent: 0;
1319 vertical-align: top;
1320 border-left: 4px solid transparent;
1321 border-right: 4px solid transparent;
1322 border-top: 4px solid #000000;
1323 opacity: 0.3;
1324 filter: alpha(opacity=30);
1325 content: "\2193";
1326}
1327.dropdown .caret {
1328 margin-top: 8px;
1329 margin-left: 2px;
1330}
1331.dropdown:hover .caret, .open.dropdown .caret {
1332 opacity: 1;
1333 filter: alpha(opacity=100);
1334}
1335.dropdown-menu {
1336 position: absolute;
1337 top: 100%;
1338 left: 0;
1339 z-index: 1000;
1340 float: left;
1341 display: none;
1342 min-width: 160px;
1343 max-width: 220px;
1344 _width: 160px;
1345 padding: 4px 0;
1346 margin: 0;
1347 list-style: none;
1348 background-color: #ffffff;
1349 border-color: #ccc;
1350 border-color: rgba(0, 0, 0, 0.2);
1351 border-style: solid;
1352 border-width: 1px;
1353 -webkit-border-radius: 0 0 5px 5px;
1354 -moz-border-radius: 0 0 5px 5px;
1355 border-radius: 0 0 5px 5px;
1356 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1357 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1358 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1359 -webkit-background-clip: padding-box;
1360 -moz-background-clip: padding;
1361 background-clip: padding-box;
1362 *border-right-width: 2px;
1363 *border-bottom-width: 2px;
1364}
1365.dropdown-menu.bottom-up {
1366 top: auto;
1367 bottom: 100%;
1368 margin-bottom: 2px;
1369}
1370.dropdown-menu .divider {
1371 height: 1px;
1372 margin: 5px 1px;
1373 overflow: hidden;
1374 background-color: #e5e5e5;
1375 border-bottom: 1px solid #ffffff;
1376 *width: 100%;
1377 *margin: -5px 0 5px;
1378}
1379.dropdown-menu a {
1380 display: block;
1381 padding: 3px 15px;
1382 clear: both;
1383 font-weight: normal;
1384 line-height: 18px;
1385 color: #555555;
1386 white-space: nowrap;
1387}
1388.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1389 color: #ffffff;
1390 text-decoration: none;
1391 background-color: #0088cc;
1392}
1393.dropdown.open {
1394 *z-index: 1000;
1395}
1396.dropdown.open .dropdown-toggle {
1397 color: #ffffff;
1398 background: #ccc;
1399 background: rgba(0, 0, 0, 0.3);
1400}
1401.dropdown.open .dropdown-menu {
1402 display: block;
1403}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301404
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301405/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301406 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301407 */
1408.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301409 position: absolute;
1410 z-index: 1020;
1411 display: block;
1412 visibility: visible;
1413 padding: 5px;
1414 font-size: 11px;
1415 opacity: 0;
1416 filter: alpha(opacity=0);
1417}
1418.tooltip.in {
1419 opacity: 0.8;
1420 filter: alpha(opacity=80);
1421}
1422.tooltip.top {
1423 margin-top: -2px;
1424}
1425.tooltip.right {
1426 margin-left: 2px;
1427}
1428.tooltip.bottom {
1429 margin-top: 2px;
1430}
1431.tooltip.left {
1432 margin-left: -2px;
1433}
1434.tooltip.top .tooltip-arrow {
1435 bottom: 0;
1436 left: 50%;
1437 margin-left: -5px;
1438 border-left: 5px solid transparent;
1439 border-right: 5px solid transparent;
1440 border-top: 5px solid #000000;
1441}
1442.tooltip.left .tooltip-arrow {
1443 top: 50%;
1444 right: 0;
1445 margin-top: -5px;
1446 border-top: 5px solid transparent;
1447 border-bottom: 5px solid transparent;
1448 border-left: 5px solid #000000;
1449}
1450.tooltip.bottom .tooltip-arrow {
1451 top: 0;
1452 left: 50%;
1453 margin-left: -5px;
1454 border-left: 5px solid transparent;
1455 border-right: 5px solid transparent;
1456 border-bottom: 5px solid #000000;
1457}
1458.tooltip.right .tooltip-arrow {
1459 top: 50%;
1460 left: 0;
1461 margin-top: -5px;
1462 border-top: 5px solid transparent;
1463 border-bottom: 5px solid transparent;
1464 border-right: 5px solid #000000;
1465}
1466.tooltip-inner {
1467 max-width: 200px;
1468 padding: 3px 8px;
1469 color: #ffffff;
1470 text-align: center;
1471 text-decoration: none;
1472 background-color: #000000;
1473 -webkit-border-radius: 4px;
1474 -moz-border-radius: 4px;
1475 border-radius: 4px;
1476}
1477.tooltip-arrow {
1478 position: absolute;
1479 width: 0;
1480 height: 0;
1481}
1482.popover {
1483 position: absolute;
1484 top: 0;
1485 left: 0;
1486 z-index: 1010;
1487 display: none;
1488 padding: 5px;
1489}
1490.popover.top {
1491 margin-top: -5px;
1492}
1493.popover.right {
1494 margin-left: 5px;
1495}
1496.popover.bottom {
1497 margin-top: 5px;
1498}
1499.popover.left {
1500 margin-left: -5px;
1501}
1502.popover.top .arrow {
1503 bottom: 0;
1504 left: 50%;
1505 margin-left: -5px;
1506 border-left: 5px solid transparent;
1507 border-right: 5px solid transparent;
1508 border-top: 5px solid #000000;
1509}
1510.popover.right .arrow {
1511 top: 50%;
1512 left: 0;
1513 margin-top: -5px;
1514 border-top: 5px solid transparent;
1515 border-bottom: 5px solid transparent;
1516 border-right: 5px solid #000000;
1517}
1518.popover.bottom .arrow {
1519 top: 0;
1520 left: 50%;
1521 margin-left: -5px;
1522 border-left: 5px solid transparent;
1523 border-right: 5px solid transparent;
1524 border-bottom: 5px solid #000000;
1525}
1526.popover.left .arrow {
1527 top: 50%;
1528 right: 0;
1529 margin-top: -5px;
1530 border-top: 5px solid transparent;
1531 border-bottom: 5px solid transparent;
1532 border-left: 5px solid #000000;
1533}
1534.popover .arrow {
1535 position: absolute;
1536 width: 0;
1537 height: 0;
1538}
1539.popover-inner {
1540 padding: 3px;
1541 width: 280px;
1542 overflow: hidden;
1543 background: #000000;
1544 background: rgba(0, 0, 0, 0.8);
1545 -webkit-border-radius: 6px;
1546 -moz-border-radius: 6px;
1547 border-radius: 6px;
1548 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1549 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1550 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1551}
1552.popover-title {
1553 padding: 9px 15px;
1554 line-height: 1;
1555 background-color: #f5f5f5;
1556 border-bottom: 1px solid #eee;
1557 -webkit-border-radius: 3px 3px 0 0;
1558 -moz-border-radius: 3px 3px 0 0;
1559 border-radius: 3px 3px 0 0;
1560}
1561.popover-content {
1562 padding: 14px;
1563 background-color: #ffffff;
1564 -webkit-border-radius: 0 0 3px 3px;
1565 -moz-border-radius: 0 0 3px 3px;
1566 border-radius: 0 0 3px 3px;
1567 -webkit-background-clip: padding-box;
1568 -moz-background-clip: padding-box;
1569 background-clip: padding-box;
1570}
1571.popover-content p, .popover-content ul, .popover-content ol {
1572 margin-bottom: 0;
1573}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301574
Rushabh Mehtad0251332012-02-21 17:26:50 +05301575/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301576 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301577 */
1578h1, h2, h3, h4, h5 {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301579 font-family: Tahoma, Arial, Verdana, sans-serif;
1580 font-weight: bold;
1581}
1582
1583body {
1584 font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
1585 font-size: 12px;
1586}
1587
1588span, div, td, input, textarea, button, select {
1589 font-family: inherit;
1590}
1591
1592body {
Rushabh Mehta5d267a42012-03-01 18:53:06 +05301593 background: url(../images/stripedbg.png) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301594}
1595
1596.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301597 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301598 text-align: center;
1599}
1600
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301601.module-icons {
1602 background: url(../images/module-icons.png) no-repeat top left;
1603 width:16px;
1604 height:16px;
1605}
1606
1607.module-icons-accounts{ background-position: 0 0; }
1608.module-icons-analysis{ background-position: 0 -66px; }
1609.module-icons-buying{ background-position: 0 -132px; }
1610.module-icons-home{ background-position: 0 -198px; }
1611.module-icons-hr{ background-position: 0 -264px; }
1612.module-icons-people{ background-position: 0 -330px; }
1613.module-icons-production{ background-position: 0 -396px; }
1614.module-icons-projects{ background-position: 0 -462px; }
1615.module-icons-selling{ background-position: 0 -528px; }
1616.module-icons-setup{ background-position: 0 -594px; }
1617.module-icons-stock{ background-position: 0 -660px; }
1618.module-icons-support{ background-position: 0 -726px; }
Anand Doshic3023be2012-02-20 16:31:55 +05301619
Anand Doshidb628762012-02-24 17:56:00 +05301620.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301621 margin: -3px 0px;
1622 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301623 min-width: 20px;
1624 text-align: center;
1625 display: inline-block;
1626 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301627 color: #999999;
1628 background-color: #333131;
1629}
1630
1631.navbar-new-comments:hover,
1632.navbar-new-comments:active,
1633.navbar-new-comments:focus {
1634 color: #fff;
1635}
1636
1637
1638.navbar-new-comments-true {
1639 color: #fff;
1640 background-color: #B00D07;
1641}
1642
1643.navbar-icon-home {
1644 vertical-align: middle;
1645 opacity:0.4;
1646 Filter:alpha(opacity=40); /* For IE8 and earlier */
1647}
1648
1649.navbar-icon-home:hover,
1650.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05301651.navbar-icon-home:active,
1652.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301653 opacity:1;
1654 Filter:alpha(opacity=100); /* For IE8 and earlier */
1655}
1656
1657/*extra size menus for recent*/
1658.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1659 min-width: 160px !important;
1660 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301661}
1662
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301663
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301664/*
1665 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301666 */
1667.layout_wrapper {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301668 padding: 20px;
1669}
1670
1671h1 {
1672 margin-bottom: 15px;
1673}
1674
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301675h2 {
1676 margin-bottom: 11px;
1677}
1678
1679h3 {
1680 margin-bottom: 7px;
1681}
1682
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301683pre {
1684 background-color: #F8F8F8;
1685 border: 1px solid #CCCCCC;
1686 border-radius: 3px 3px 3px 3px;
1687 font-size: 13px;
1688 line-height: 19px;
1689 overflow: auto;
1690 padding: 6px 10px;
1691 margin-bottom: 9px;
1692}
1693
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301694.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1695 min-width: 180px;
1696}
1697
Rushabh Mehta13531b72012-02-20 12:35:23 +05301698.web-head-section {
1699 margin-bottom: 20px
1700}
1701
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301702.web-main-section {
1703 width: 65%;
1704 float: left;
1705 margin-bottom: 20px;
1706}
1707
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301708.web-side-section {
1709 width: 30%;
1710 float: right;
1711 margin-bottom: 20px;
1712 margin-right: 15px;
1713 color: #606060;
1714 overflow-x: hidden;
1715}
1716
1717.web-page-status {
1718 padding: 7px;
1719 color: #777;
1720 clear: both;
1721 text-align: right;
1722}
1723
1724.web-page-status a,
1725.web-page-status a:hover,
1726.web-page-status a:visited {
1727 padding: 2px;
1728 background-color: #777;
1729 color: #FFF;
1730 text-decoration: none;
1731}
1732
1733.web-page-status a:hover {
1734 background-color: #444;
1735}
1736
1737footer {
1738 color: #777;
1739}
1740
1741.web-footer {
1742 color: inherit;
1743 text-align: center;
1744 margin: 10px;
1745 line-height: 1.7;
1746}
1747
1748.web-footer div, .web-footer a {
1749 font-size: 11px;
1750}
1751
1752.web-footer-menu {
1753 margin-bottom: 7px;
1754}
1755footer a, footer a:visited {
1756 color: #777;
1757}
1758
1759footer a:hover {
1760 background-color: #777;
1761 color: #fff;
1762}
1763
1764.web-footer-menu ul {
1765 list-style: none;
1766 margin: 0px;
1767 padding: 0px;
1768}
1769
1770.web-footer-menu ul li {
1771 display: inline;
1772 padding: 2px 15px;
1773 border-right: 1px solid #999;
1774}
1775
1776.web-footer-menu ul li:last-child {
1777 border-right: 0px solid #777 !important;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301778}