blob: 6a75d12c2adf39b629cee44a998151d75d2cfd53 [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;
Rushabh Mehta983a1712012-03-21 13:35:34 +053014 font-size: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053015 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 {
Rushabh Mehtab9878d02012-03-12 16:12:09 +053029 border: 1px solid #ccc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053030 -moz-border-radius: 4px;
31 -webkit-border-radius: 4px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053032 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053033 padding: 4px;
Rushabh Mehtab9878d02012-03-12 16:12:09 +053034 color: #444;
35 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
36 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
37 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
Rushabh Mehtaafaac602012-02-14 11:44:13 +053038}
39
40textarea {
41 font-family: inherit;
42 height: 120px;
43 width: 90%;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053044 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053045 white-space: normal;
46}
47
48table { padding: 0px; border-collapse: 'collapse'}
49
50td {
51 padding:0px;
52 margin: 0px;
53 vertical-align: top;
54}
55
56p {
57 margin: 0px 0px 9px 0px;
58 line-height: 1.5em;
59}
60
61li {
62 line-height: 1.5em;
63}
64
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053065hr {
66 margin: 18px 0;
67 border: 0;
68 border-top: 1px solid #e5e5e5;
69 border-bottom: 1px solid #ffffff;
70}
71
Rushabh Mehtad0251332012-02-21 17:26:50 +053072/* links */
73
Rushabh Mehtaafaac602012-02-14 11:44:13 +053074a:active { outline:none; }
75
Rushabh Mehtad0251332012-02-21 17:26:50 +053076a {
77 color: #0088cc;
78 text-decoration: none;
79}
80a:hover {
81 color: #005580;
82 text-decoration: underline;
83}
84
85.link_type {
86 padding:2px;
87 color: #0088cc;
88 cursor: pointer;
89}
90
91.link_type:hover {
92 color: #005580;
93 text-decoration: underline;
94}
95
Rushabh Mehtaafaac602012-02-14 11:44:13 +053096:focus { -moz-outline-style:none; }
97
98table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
99table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
100
101div.fix_ff_cursor { overflow: auto; }
102
103/* --- Layout --- */
104
105div.comment { color: #444; }
106
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530107.small {
108 font-size: 11px;
109}
110
111.help {
112 margin: 3px 0px;
113 color: #888;
114}
115
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530116div#body_div {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530117 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530118 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530119 width: 900px;
120 margin: auto;
121 margin-top: 56px;
122}
123
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530124.content {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530125 width: 900px;
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530126 margin-bottom: 30px;
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530127}
128
129.background-fade-in {
130 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
131 -moz-transition: background 1s ease-in;
132 -o-transition: background 1s ease-in;
133 transition: background 1s ease-in;
134}
135
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530136footer {
137 position: absolute;
138 bottom: 0px;
139 width: 100%;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530140}
141header .container {
142 width: 900px;
143 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530144}
145
Rushabh Mehta2438de42012-03-15 16:43:46 +0530146@media (max-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530147 div#body_div, header .container, .content, #opened-page-selector, footer {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530148 width: 900px;
149 }
150}
151
152@media (min-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530153 div#body_div, header .container, .content, #opened-page-selector, footer {
154 width: 1100px;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530155 }
156}
157
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530158div.no_script {
159 display: none;
160}
161
162div.loading_div {
163 position: absolute;
164 background-color: #FFFFCC;
165 z-index: 1999;
166 right: 5px;
167 width: 90px;
168 display: none;
169 text-align: center;
170 padding: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530171 border: 1px solid #FF4;
172}
173
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530174div.std-footer {
175 margin: 13px 0px;
176 border-top: 1px solid #AAA;
177 padding: 13px;
178}
179
180div.std-footer-item {
181 margin: 0px 13px 13px 0px;
182}
183
184.shadow {
185 -moz-box-shadow: 0px 2px 2px #888;
186 -webkit-box-shadow: 0px 2px 2px #888;
187 box-shadow: 0px 2px 2px #888;
188}
189
190.round {
191 -webkit-border-radius: 5px;
192 -moz-border-radius: 5px;
193 border-radius: 5px;
194}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530195
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530196.layout_wrapper, .layout-wrapper {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530197 -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
198 -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
199 box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530200 background-color: #fff;
201 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530202 margin-bottom: 30px;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530203}
204
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530205.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530206 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530207 padding: 0px;
208}
209
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530210.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530211 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530212 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530213 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530214 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530215 min-height: 600px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530216 -moz-box-shadow: 7px 0px 6px -2px #ddd;
217 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
218 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530219}
220
221.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530222 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530223 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530224 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530225 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530226 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530227 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530228}
229
230/* from bootstrap */
231.container {
232 margin-left: auto;
233 margin-right: auto;
234 zoom: 1;
235}
236.container:before, .container:after {
237 display: table;
238 content: "";
239 zoom: 1;
240}
241.container:after {
242 clear: both;
243}
244
Anand Doshi40ee8d62012-02-24 19:21:47 +0530245.well {
246 min-height: 20px;
247 padding: 19px;
248 margin-bottom: 20px;
249 background-color: #f5f5f5;
250 border: 1px solid #eee;
251 border: 1px solid rgba(0, 0, 0, 0.05);
252 -webkit-border-radius: 4px;
253 -moz-border-radius: 4px;
254 border-radius: 4px;
255 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
256 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
257 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
258}
259
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530260.avatar-small {
261 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530262 width: 24px;
263 height: 20px;
264 vertical-align: middle;
265 overflow: hidden;
266 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530267}
268.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530269 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530270}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530271
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530272/*
273 * lib/css/legacy/messages.css
274 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530275
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530276/* FLOATING MESSAGE */
277
278.btn-img { cursor: pointer; }
279
280div.fetching { color: #888; text-align:right; }
281
282div.notice {
283 postion: absolute;
284 background-color: #000;
285 -moz-border-radius: 5px; -webkit-border-radius: 5px;
286 opacity: 0.6;
287 right: 0;
288 top: 0;
289 margin-top: 8px;
290 z-index: -1;
291 padding: 8px;
292}
293
294/** help **/
295
296.info-box {
297 background-color: #F8F8F8;
298 border: 1px solid #CCCCCC;
299 border-radius: 3px 3px 3px 3px;
300 line-height: 1.6em;
301 overflow: auto;
302 padding: 6px 10px;
303 margin-bottom: 9px;
304}
305
306.help_box, .help-box {
307 background-color:#FFC;
308 font-size: 13px;
309 color: #864;
310 padding: 7px;
311 margin: 11px 0px;
312 border: 1px solid #EEB;
313}
314
315.help_box_big {
316 background-color:#FFC;
317 color: #864;
318 padding: 7px;
319 margin: 7px 0px;
320 border: 1px solid #EEB;
321 text-align: center;
322 font-size: 14px;
323}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530324
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530325/*
326 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530327 */
328/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530329
330div.dialog_wrapper {
331 position: absolute;
332 width: 440px;
333 display: none;
334 z-index: 90;
335 background-color: #FFF;
336 border: 3px solid #222;
337 box-shadow:1px 1px 5px #777;
338 -moz-box-shadow: 1px 1px 5px #777;
339 -webkit-box-shadow: 1px 1px 5px #777;
340
341 border-radius: 5px;
342 -moz-border-radius: 5px;
343 -webkit-border-radius: 5px;
344}
345
346div.dialog_head {
347 height: 22px;
348 padding: 4px;
349 background-color: #222;
350 color: #FFF;
351}
352
353div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530354 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530355 border-radius: 5px;
356 -moz-border-radius: 5px;
357 -webkit-border-radius: 5px;
358}
359
360div.dialog_back {
361 position: fixed;
362 display: none;
363 top: 0px;
364 left: 0px;
365 bottom: 0px;
366 right: 0px;
367 background-color: #EEE;
368 opacity: 0.6;
369 z-index: 50;
370 text-align: center;
371}
372
373div.dialog_message {
374 display: none;
375 position: absolute;
376 width: 250px;
377 font-size: 12px;
378 z-index: 91;
379 background-color:#FFF;
380 padding: 12px;
381 border: 1px solid #444;
382}
383
384div.dialog_row {
385 padding: 8px 8px 0px 8px;
386}
387
388div.dialog_row table {
389 width: 100%;
390}
391
392div.dialog_row table td {
393}
394
395div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
396 width: 80%;
397 font-size: 14px;
398}
399
400div.dialog_row table td textarea {
401 width: 80%;
402 height: 200px;
403 font-size: 12px;
404}
405
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530406
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530407/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530408 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530409 */
410/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530411
412h1,
413h2,
414h3,
415h4,
416h5,
417h6 {
418 margin: 0;
419 font-weight: bold;
420 color: #333333;
421 text-rendering: optimizelegibility;
422 margin-bottom: 0.3em;
423}
424h1 small,
425h2 small,
426h3 small,
427h4 small,
428h5 small,
429h6 small {
430 font-weight: normal;
431 color: #999999;
432}
433h1 {
434 font-size: 30px;
435 line-height: 36px;
436}
437h1 small {
438 font-size: 18px;
439}
440h2 {
441 font-size: 24px;
442 line-height: 36px;
443}
444h2 small {
445 font-size: 18px;
446}
447h3 {
448 line-height: 27px;
449 font-size: 18px;
450}
451h3 small {
452 font-size: 14px;
453}
454h4, h5, h6 {
455 line-height: 18px;
456}
457h4 {
458 font-size: 14px;
459}
460h4 small {
461 font-size: 12px;
462}
463h5 {
464 font-size: 12px;
465}
466h6 {
467 font-size: 11px;
468 color: #999999;
469 text-transform: uppercase;
470}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530471
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530472/*
473 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530474 */
475.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530476 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530477 float: right;
478 font-size: 20px;
479 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530480 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530481 color: #000000;
482 text-shadow: 0 1px 0 #ffffff;
483 opacity: 0.2;
484 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530485}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530486.close:hover {
487 color: #000000;
488 text-decoration: none;
489 opacity: 0.4;
490 filter: alpha(opacity=40);
491 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530492}
493.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530494 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530495 padding: 4px 10px 4px;
496 font-size: 13px;
497 line-height: 18px;
498 color: #333333;
499 text-align: center;
500 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
501 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530502 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
503 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
504 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
505 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
506 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
507 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530508 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530509 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530510 border: 1px solid #ccc;
511 border-bottom-color: #bbb;
512 -webkit-border-radius: 4px;
513 -moz-border-radius: 4px;
514 border-radius: 4px;
515 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
516 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
517 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 +0530518 cursor: pointer;
519 *margin-left: .3em;
520}
521.btn:first-child {
522 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530523}
524.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530525 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530526 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530527 background-color: #e6e6e6;
528 background-position: 0 -15px;
529 -webkit-transition: background-position 0.1s linear;
530 -moz-transition: background-position 0.1s linear;
531 -ms-transition: background-position 0.1s linear;
532 -o-transition: background-position 0.1s linear;
533 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530534}
535.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530536 outline: thin dotted;
537 outline: 5px auto -webkit-focus-ring-color;
538 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530539}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530540.btn.active, .btn:active {
541 background-image: none;
542 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
543 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
544 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
545 background-color: #e6e6e6;
546 background-color: #d9d9d9 \9;
547 color: rgba(0, 0, 0, 0.5);
548 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530549}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530550.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530551 cursor: default;
552 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530553 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530554 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530555 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530556 -webkit-box-shadow: none;
557 -moz-box-shadow: none;
558 box-shadow: none;
559}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530560.btn-large {
561 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530562 font-size: 15px;
563 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530564 -webkit-border-radius: 5px;
565 -moz-border-radius: 5px;
566 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530567}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530568.btn-large .icon {
569 margin-top: 1px;
570}
571.btn-small {
572 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530573 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530574 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530575}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530576.btn-small .icon {
577 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530578}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530579.btn-primary,
580.btn-primary:hover,
581.btn-warning,
582.btn-warning:hover,
583.btn-danger,
584.btn-danger:hover,
585.btn-success,
586.btn-success:hover,
587.btn-info,
588.btn-info:hover {
589 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
590 color: #ffffff;
591}
592.btn-primary.active,
593.btn-warning.active,
594.btn-danger.active,
595.btn-success.active,
596.btn-info.active {
597 color: rgba(255, 255, 255, 0.75);
598}
599.btn-primary {
600 background-color: #006dcc;
601 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
602 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
603 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
604 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
605 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
606 background-image: linear-gradient(top, #0088cc, #0044cc);
607 background-repeat: repeat-x;
608 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
609 border-color: #0044cc #0044cc #002a80;
610 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
611 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
612}
613.btn-primary:hover,
614.btn-primary:active,
615.btn-primary.active,
616.btn-primary.disabled,
617.btn-primary[disabled] {
618 background-color: #0044cc;
619}
620.btn-primary:active, .btn-primary.active {
621 background-color: #003399 \9;
622}
623.btn-warning {
624 background-color: #faa732;
625 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
626 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
627 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
628 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
629 background-image: -o-linear-gradient(top, #fbb450, #f89406);
630 background-image: linear-gradient(top, #fbb450, #f89406);
631 background-repeat: repeat-x;
632 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
633 border-color: #f89406 #f89406 #ad6704;
634 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
635 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
636}
637.btn-warning:hover,
638.btn-warning:active,
639.btn-warning.active,
640.btn-warning.disabled,
641.btn-warning[disabled] {
642 background-color: #f89406;
643}
644.btn-warning:active, .btn-warning.active {
645 background-color: #c67605 \9;
646}
647.btn-danger {
648 background-color: #da4f49;
649 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
650 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
651 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
652 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
653 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
654 background-image: linear-gradient(top, #ee5f5b, #bd362f);
655 background-repeat: repeat-x;
656 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
657 border-color: #bd362f #bd362f #802420;
658 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
659 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
660}
661.btn-danger:hover,
662.btn-danger:active,
663.btn-danger.active,
664.btn-danger.disabled,
665.btn-danger[disabled] {
666 background-color: #bd362f;
667}
668.btn-danger:active, .btn-danger.active {
669 background-color: #942a25 \9;
670}
671.btn-success {
672 background-color: #5bb75b;
673 background-image: -moz-linear-gradient(top, #62c462, #51a351);
674 background-image: -ms-linear-gradient(top, #62c462, #51a351);
675 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
676 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
677 background-image: -o-linear-gradient(top, #62c462, #51a351);
678 background-image: linear-gradient(top, #62c462, #51a351);
679 background-repeat: repeat-x;
680 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
681 border-color: #51a351 #51a351 #387038;
682 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
683 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
684}
685.btn-success:hover,
686.btn-success:active,
687.btn-success.active,
688.btn-success.disabled,
689.btn-success[disabled] {
690 background-color: #51a351;
691}
692.btn-success:active, .btn-success.active {
693 background-color: #408140 \9;
694}
695.btn-info {
696 background-color: #49afcd;
697 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
698 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
699 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
700 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
701 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
702 background-image: linear-gradient(top, #5bc0de, #2f96b4);
703 background-repeat: repeat-x;
704 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
705 border-color: #2f96b4 #2f96b4 #1f6377;
706 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
707 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
708}
709.btn-info:hover,
710.btn-info:active,
711.btn-info.active,
712.btn-info.disabled,
713.btn-info[disabled] {
714 background-color: #2f96b4;
715}
716.btn-info:active, .btn-info.active {
717 background-color: #24748c \9;
718}
719button.btn, input[type="submit"].btn {
720 *padding-top: 2px;
721 *padding-bottom: 2px;
722}
723button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530724 padding: 0;
725 border: 0;
726}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530727button.btn.large, input[type="submit"].btn.large {
728 *padding-top: 7px;
729 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530730}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530731button.btn.small, input[type="submit"].btn.small {
732 *padding-top: 3px;
733 *padding-bottom: 3px;
734}
735.btn-group {
736 position: relative;
737 *zoom: 1;
738 *margin-left: .3em;
739}
740.btn-group:before, .btn-group:after {
741 display: table;
742 content: "";
743}
744.btn-group:after {
745 clear: both;
746}
747.btn-group:first-child {
748 *margin-left: 0;
749}
750.btn-group + .btn-group {
751 margin-left: 5px;
752}
753.btn-toolbar {
754 margin-top: 9px;
755 margin-bottom: 9px;
756}
757.btn-toolbar .btn-group {
758 display: inline-block;
759 *display: inline;
760 /* IE7 inline-block hack */
761
762 *zoom: 1;
763}
764.btn-group .btn {
765 position: relative;
766 float: left;
767 margin-left: -1px;
768 -webkit-border-radius: 0;
769 -moz-border-radius: 0;
770 border-radius: 0;
771}
772.btn-group .btn:first-child {
773 margin-left: 0;
774 -webkit-border-top-left-radius: 4px;
775 -moz-border-radius-topleft: 4px;
776 border-top-left-radius: 4px;
777 -webkit-border-bottom-left-radius: 4px;
778 -moz-border-radius-bottomleft: 4px;
779 border-bottom-left-radius: 4px;
780}
781.btn-group .btn:last-child, .btn-group .dropdown-toggle {
782 -webkit-border-top-right-radius: 4px;
783 -moz-border-radius-topright: 4px;
784 border-top-right-radius: 4px;
785 -webkit-border-bottom-right-radius: 4px;
786 -moz-border-radius-bottomright: 4px;
787 border-bottom-right-radius: 4px;
788}
789.btn-group .btn.large:first-child {
790 margin-left: 0;
791 -webkit-border-top-left-radius: 6px;
792 -moz-border-radius-topleft: 6px;
793 border-top-left-radius: 6px;
794 -webkit-border-bottom-left-radius: 6px;
795 -moz-border-radius-bottomleft: 6px;
796 border-bottom-left-radius: 6px;
797}
798.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
799 -webkit-border-top-right-radius: 6px;
800 -moz-border-radius-topright: 6px;
801 border-top-right-radius: 6px;
802 -webkit-border-bottom-right-radius: 6px;
803 -moz-border-radius-bottomright: 6px;
804 border-bottom-right-radius: 6px;
805}
806.btn-group .btn:hover,
807.btn-group .btn:focus,
808.btn-group .btn:active,
809.btn-group .btn.active {
810 z-index: 2;
811}
812.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
813 outline: 0;
814}
815.btn-group .dropdown-toggle {
816 padding-left: 8px;
817 padding-right: 8px;
818 -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);
819 -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);
820 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);
821 *padding-top: 5px;
822 *padding-bottom: 5px;
823}
824.btn-group.open {
825 *z-index: 1000;
826}
827.btn-group.open .dropdown-menu {
828 display: block;
829 margin-top: 1px;
830 -webkit-border-radius: 5px;
831 -moz-border-radius: 5px;
832 border-radius: 5px;
833}
834.btn-group.open .dropdown-toggle {
835 background-image: none;
836 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
837 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
838 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
839}
840.btn .caret {
841 margin-top: 7px;
842 margin-left: 0;
843}
844.btn:hover .caret, .open.btn-group .caret {
845 opacity: 1;
846 filter: alpha(opacity=100);
847}
848.btn-primary .caret,
849.btn-danger .caret,
850.btn-info .caret,
851.btn-success .caret {
852 border-top-color: #ffffff;
853 opacity: 0.75;
854 filter: alpha(opacity=75);
855}
856.btn-small .caret {
857 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530858}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530859
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530860/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530861 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530862 */
863.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530864 margin-left: 0;
865 margin-bottom: 18px;
866 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530867}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530868.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530869 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530870}
871.nav > li > a:hover {
872 text-decoration: none;
873 background-color: #eeeeee;
874}
875.nav-list {
876 padding-left: 14px;
877 padding-right: 14px;
878 margin-bottom: 0;
879}
880.nav-list > li > a, .nav-list .nav-header {
881 display: block;
882 padding: 3px 15px;
883 margin-left: -15px;
884 margin-right: -15px;
885 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
886}
887.nav-list .nav-header {
888 font-size: 11px;
889 font-weight: bold;
890 line-height: 18px;
891 color: #999999;
892 text-transform: uppercase;
893}
894.nav-list > li + .nav-header {
895 margin-top: 9px;
896}
897.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530898 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530899 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
900 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530901}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530902.nav-list [class^="icon-"] {
903 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530904}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530905.nav-tabs, .nav-pills {
906 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530907}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530908.nav-tabs:before,
909.nav-pills:before,
910.nav-tabs:after,
911.nav-pills:after {
912 display: table;
913 content: "";
914}
915.nav-tabs:after, .nav-pills:after {
916 clear: both;
917}
918.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530919 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530920}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530921.nav-tabs > li > a, .nav-pills > li > a {
922 padding-right: 12px;
923 padding-left: 12px;
924 margin-right: 2px;
925 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530926}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530927.nav-tabs {
928 border-bottom: 1px solid #ddd;
929}
930.nav-tabs > li {
931 margin-bottom: -1px;
932}
933.nav-tabs > li > a {
934 padding-top: 9px;
935 padding-bottom: 9px;
936 border: 1px solid transparent;
937 -webkit-border-radius: 4px 4px 0 0;
938 -moz-border-radius: 4px 4px 0 0;
939 border-radius: 4px 4px 0 0;
940}
941.nav-tabs > li > a:hover {
942 border-color: #eeeeee #eeeeee #dddddd;
943}
944.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
945 color: #555555;
946 background-color: #ffffff;
947 border: 1px solid #ddd;
948 border-bottom-color: transparent;
949 cursor: default;
950}
951.nav-pills > li > a {
952 padding-top: 8px;
953 padding-bottom: 8px;
954 margin-top: 2px;
955 margin-bottom: 2px;
956 -webkit-border-radius: 5px;
957 -moz-border-radius: 5px;
958 border-radius: 5px;
959}
960.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530961 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530962 background-color: #0088cc;
963}
964.nav-stacked > li {
965 float: none;
966}
967.nav-stacked > li > a {
968 margin-right: 0;
969}
970.nav-tabs.nav-stacked {
971 border-bottom: 0;
972}
973.nav-tabs.nav-stacked > li > a {
974 border: 1px solid #ddd;
975 -webkit-border-radius: 0;
976 -moz-border-radius: 0;
977 border-radius: 0;
978}
979.nav-tabs.nav-stacked > li:first-child > a {
980 -webkit-border-radius: 4px 4px 0 0;
981 -moz-border-radius: 4px 4px 0 0;
982 border-radius: 4px 4px 0 0;
983}
984.nav-tabs.nav-stacked > li:last-child > a {
985 -webkit-border-radius: 0 0 4px 4px;
986 -moz-border-radius: 0 0 4px 4px;
987 border-radius: 0 0 4px 4px;
988}
989.nav-tabs.nav-stacked > li > a:hover {
990 border-color: #ddd;
991 z-index: 2;
992}
993.nav-pills.nav-stacked > li > a {
994 margin-bottom: 3px;
995}
996.nav-pills.nav-stacked > li:last-child > a {
997 margin-bottom: 1px;
998}
999.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1000 margin-top: 1px;
1001 border-width: 1px;
1002}
1003.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301004 -webkit-border-radius: 4px;
1005 -moz-border-radius: 4px;
1006 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301007}
1008.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1009 border-top-color: #0088cc;
1010 margin-top: 6px;
1011}
1012.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1013 border-top-color: #005580;
1014}
1015.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1016 border-top-color: #333333;
1017}
1018.nav > .dropdown.active > a:hover {
1019 color: #000000;
1020 cursor: pointer;
1021}
1022.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1023 color: #ffffff;
1024 background-color: #999999;
1025 border-color: #999999;
1026}
1027.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1028 border-top-color: #ffffff;
1029 opacity: 1;
1030 filter: alpha(opacity=100);
1031}
1032
1033.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301034 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301035 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301036}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301037.navbar-inner {
1038 padding-left: 20px;
1039 padding-right: 20px;
1040 background-color: #2c2c2c;
1041 background-image: -moz-linear-gradient(top, #333333, #222222);
1042 background-image: -ms-linear-gradient(top, #333333, #222222);
1043 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1044 background-image: -webkit-linear-gradient(top, #333333, #222222);
1045 background-image: -o-linear-gradient(top, #333333, #222222);
1046 background-image: linear-gradient(top, #333333, #222222);
1047 background-repeat: repeat-x;
1048 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1049 -webkit-border-radius: 4px;
1050 -moz-border-radius: 4px;
1051 border-radius: 4px;
1052 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1053 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1054 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1055}
1056.btn-navbar {
1057 display: none;
1058 float: right;
1059 padding: 7px 10px;
1060 margin-left: 5px;
1061 margin-right: 5px;
1062 background-color: #2c2c2c;
1063 background-image: -moz-linear-gradient(top, #333333, #222222);
1064 background-image: -ms-linear-gradient(top, #333333, #222222);
1065 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1066 background-image: -webkit-linear-gradient(top, #333333, #222222);
1067 background-image: -o-linear-gradient(top, #333333, #222222);
1068 background-image: linear-gradient(top, #333333, #222222);
1069 background-repeat: repeat-x;
1070 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1071 border-color: #222222 #222222 #000000;
1072 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1073 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1074 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1075 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1076 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1077}
1078.btn-navbar:hover,
1079.btn-navbar:active,
1080.btn-navbar.active,
1081.btn-navbar.disabled,
1082.btn-navbar[disabled] {
1083 background-color: #222222;
1084}
1085.btn-navbar:active, .btn-navbar.active {
1086 background-color: #080808 \9;
1087}
1088.btn-navbar .icon-bar {
1089 display: block;
1090 width: 18px;
1091 height: 2px;
1092 background-color: #f5f5f5;
1093 -webkit-border-radius: 1px;
1094 -moz-border-radius: 1px;
1095 border-radius: 1px;
1096 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1097 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1098 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1099}
1100.btn-navbar .icon-bar + .icon-bar {
1101 margin-top: 3px;
1102}
1103.nav-collapse.collapse {
1104 height: auto;
1105}
1106.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301107 text-decoration: none;
1108}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301109.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301110 float: left;
1111 display: block;
1112 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301113 font-size: 20px;
1114 font-weight: 200;
1115 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301116 color: #ffffff;
1117}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301118.navbar .navbar-text {
1119 margin-bottom: 0;
1120 line-height: 40px;
1121 color: #999999;
1122}
1123.navbar .navbar-text a:hover {
1124 color: #ffffff;
1125 background-color: transparent;
1126}
1127.navbar .btn, .navbar .btn-group {
1128 margin-top: 5px;
1129}
1130.navbar .btn-group .btn {
1131 margin-top: 0;
1132}
1133.navbar-form {
1134 margin-bottom: 0;
1135 *zoom: 1;
1136}
1137.navbar-form:before, .navbar-form:after {
1138 display: table;
1139 content: "";
1140}
1141.navbar-form:after {
1142 clear: both;
1143}
1144.navbar-form input, .navbar-form select {
1145 display: inline-block;
1146 margin-top: 5px;
1147 margin-bottom: 0;
1148}
1149.navbar-form .radio, .navbar-form .checkbox {
1150 margin-top: 5px;
1151}
1152.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1153 margin-top: 3px;
1154}
1155.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301156 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301157 float: left;
1158 margin-top: 6px;
1159 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301160}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301161.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301162 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301163 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1164 font-size: 13px;
1165 font-weight: normal;
1166 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301167 color: #ffffff;
1168 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301169 background: #666;
1170 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301171 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301172 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1173 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1174 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 +05301175 -webkit-transition: none;
1176 -moz-transition: none;
1177 -ms-transition: none;
1178 -o-transition: none;
1179 transition: none;
1180}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301181.navbar-search .search-query :-moz-placeholder {
1182 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301183}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301184.navbar-search .search-query::-webkit-input-placeholder {
1185 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301186}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301187.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301188 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301189 background-color: #999999;
1190 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301191}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301192.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301193 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301194 color: #333333;
1195 text-shadow: 0 1px 0 #ffffff;
1196 background-color: #ffffff;
1197 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301198 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1199 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1200 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301201 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301202}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301203.navbar-fixed-top {
1204 position: fixed;
1205 top: 0;
1206 right: 0;
1207 left: 0;
1208 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301209}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301210.navbar-fixed-top .navbar-inner {
1211 padding-left: 0;
1212 padding-right: 0;
1213 -webkit-border-radius: 0;
1214 -moz-border-radius: 0;
1215 border-radius: 0;
1216}
1217.navbar .nav {
1218 position: relative;
1219 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301220 display: block;
1221 float: left;
1222 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301223}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301224.navbar .nav.pull-right {
1225 float: right;
1226}
1227.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301228 display: block;
1229 float: left;
1230}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301231.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301232 float: none;
1233 padding: 10px 10px 11px;
1234 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301235 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301236 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301237 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301238}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301239.navbar .nav > li > a:hover {
1240 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301241 color: #ffffff;
1242 text-decoration: none;
1243}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301244.navbar .nav .active > a, .navbar .nav .active > a:hover {
1245 color: #ffffff;
1246 text-decoration: none;
1247 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301248 background-color: rgba(0, 0, 0, 0.5);
1249}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301250.navbar .divider-vertical {
1251 height: 40px;
1252 width: 1px;
1253 margin: 0 9px;
1254 overflow: hidden;
1255 background-color: #222222;
1256 border-right: 1px solid #333333;
1257}
1258.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301259 margin-left: 10px;
1260 margin-right: 0;
1261}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301262.navbar .dropdown-menu {
1263 margin-top: 1px;
1264 -webkit-border-radius: 4px;
1265 -moz-border-radius: 4px;
1266 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301267}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301268.navbar .dropdown-menu:before {
1269 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301270 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301271 border-left: 7px solid transparent;
1272 border-right: 7px solid transparent;
1273 border-bottom: 7px solid #ccc;
1274 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301275 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301276 top: -7px;
1277 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301278}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301279.navbar .dropdown-menu:after {
1280 content: '';
1281 display: inline-block;
1282 border-left: 6px solid transparent;
1283 border-right: 6px solid transparent;
1284 border-bottom: 6px solid #ffffff;
1285 position: absolute;
1286 top: -6px;
1287 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301288}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301289.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1290 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301291}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301292.navbar .nav .active .caret {
1293 opacity: 1;
1294 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301295}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301296.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1297 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301298}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301299.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301300 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301301}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301302.navbar .nav.pull-right .dropdown-menu {
1303 left: auto;
1304 right: 0;
1305}
1306.navbar .nav.pull-right .dropdown-menu:before {
1307 left: auto;
1308 right: 12px;
1309}
1310.navbar .nav.pull-right .dropdown-menu:after {
1311 left: auto;
1312 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301313}
1314
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301315/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301316.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301317 display: block;
1318 float: right;
1319 width: 20px;
1320 margin-bottom: -5px;
1321 margin-top: 10px;
1322 visibility: hidden;
1323}
1324
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301325.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301326 padding: 0px 20px;
1327}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301328
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301329
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301330/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301331 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301332 */
1333.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301334 position: relative;
1335}
1336.dropdown-toggle {
1337 *margin-bottom: -3px;
1338}
1339.dropdown-toggle:active, .open .dropdown-toggle {
1340 outline: 0;
1341}
1342.caret {
1343 display: inline-block;
1344 width: 0;
1345 height: 0;
1346 text-indent: -99999px;
1347 *text-indent: 0;
1348 vertical-align: top;
1349 border-left: 4px solid transparent;
1350 border-right: 4px solid transparent;
1351 border-top: 4px solid #000000;
1352 opacity: 0.3;
1353 filter: alpha(opacity=30);
1354 content: "\2193";
1355}
1356.dropdown .caret {
1357 margin-top: 8px;
1358 margin-left: 2px;
1359}
1360.dropdown:hover .caret, .open.dropdown .caret {
1361 opacity: 1;
1362 filter: alpha(opacity=100);
1363}
1364.dropdown-menu {
1365 position: absolute;
1366 top: 100%;
1367 left: 0;
1368 z-index: 1000;
1369 float: left;
1370 display: none;
1371 min-width: 160px;
1372 max-width: 220px;
1373 _width: 160px;
1374 padding: 4px 0;
1375 margin: 0;
1376 list-style: none;
1377 background-color: #ffffff;
1378 border-color: #ccc;
1379 border-color: rgba(0, 0, 0, 0.2);
1380 border-style: solid;
1381 border-width: 1px;
1382 -webkit-border-radius: 0 0 5px 5px;
1383 -moz-border-radius: 0 0 5px 5px;
1384 border-radius: 0 0 5px 5px;
1385 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1386 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1387 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1388 -webkit-background-clip: padding-box;
1389 -moz-background-clip: padding;
1390 background-clip: padding-box;
1391 *border-right-width: 2px;
1392 *border-bottom-width: 2px;
1393}
1394.dropdown-menu.bottom-up {
1395 top: auto;
1396 bottom: 100%;
1397 margin-bottom: 2px;
1398}
1399.dropdown-menu .divider {
1400 height: 1px;
1401 margin: 5px 1px;
1402 overflow: hidden;
1403 background-color: #e5e5e5;
1404 border-bottom: 1px solid #ffffff;
1405 *width: 100%;
1406 *margin: -5px 0 5px;
1407}
1408.dropdown-menu a {
1409 display: block;
1410 padding: 3px 15px;
1411 clear: both;
1412 font-weight: normal;
1413 line-height: 18px;
1414 color: #555555;
1415 white-space: nowrap;
1416}
1417.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1418 color: #ffffff;
1419 text-decoration: none;
1420 background-color: #0088cc;
1421}
1422.dropdown.open {
1423 *z-index: 1000;
1424}
1425.dropdown.open .dropdown-toggle {
1426 color: #ffffff;
1427 background: #ccc;
1428 background: rgba(0, 0, 0, 0.3);
1429}
1430.dropdown.open .dropdown-menu {
1431 display: block;
1432}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301433
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301434/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301435 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301436 */
1437.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301438 position: absolute;
1439 z-index: 1020;
1440 display: block;
1441 visibility: visible;
1442 padding: 5px;
1443 font-size: 11px;
1444 opacity: 0;
1445 filter: alpha(opacity=0);
1446}
1447.tooltip.in {
1448 opacity: 0.8;
1449 filter: alpha(opacity=80);
1450}
1451.tooltip.top {
1452 margin-top: -2px;
1453}
1454.tooltip.right {
1455 margin-left: 2px;
1456}
1457.tooltip.bottom {
1458 margin-top: 2px;
1459}
1460.tooltip.left {
1461 margin-left: -2px;
1462}
1463.tooltip.top .tooltip-arrow {
1464 bottom: 0;
1465 left: 50%;
1466 margin-left: -5px;
1467 border-left: 5px solid transparent;
1468 border-right: 5px solid transparent;
1469 border-top: 5px solid #000000;
1470}
1471.tooltip.left .tooltip-arrow {
1472 top: 50%;
1473 right: 0;
1474 margin-top: -5px;
1475 border-top: 5px solid transparent;
1476 border-bottom: 5px solid transparent;
1477 border-left: 5px solid #000000;
1478}
1479.tooltip.bottom .tooltip-arrow {
1480 top: 0;
1481 left: 50%;
1482 margin-left: -5px;
1483 border-left: 5px solid transparent;
1484 border-right: 5px solid transparent;
1485 border-bottom: 5px solid #000000;
1486}
1487.tooltip.right .tooltip-arrow {
1488 top: 50%;
1489 left: 0;
1490 margin-top: -5px;
1491 border-top: 5px solid transparent;
1492 border-bottom: 5px solid transparent;
1493 border-right: 5px solid #000000;
1494}
1495.tooltip-inner {
1496 max-width: 200px;
1497 padding: 3px 8px;
1498 color: #ffffff;
1499 text-align: center;
1500 text-decoration: none;
1501 background-color: #000000;
1502 -webkit-border-radius: 4px;
1503 -moz-border-radius: 4px;
1504 border-radius: 4px;
1505}
1506.tooltip-arrow {
1507 position: absolute;
1508 width: 0;
1509 height: 0;
1510}
1511.popover {
1512 position: absolute;
1513 top: 0;
1514 left: 0;
1515 z-index: 1010;
1516 display: none;
1517 padding: 5px;
1518}
1519.popover.top {
1520 margin-top: -5px;
1521}
1522.popover.right {
1523 margin-left: 5px;
1524}
1525.popover.bottom {
1526 margin-top: 5px;
1527}
1528.popover.left {
1529 margin-left: -5px;
1530}
1531.popover.top .arrow {
1532 bottom: 0;
1533 left: 50%;
1534 margin-left: -5px;
1535 border-left: 5px solid transparent;
1536 border-right: 5px solid transparent;
1537 border-top: 5px solid #000000;
1538}
1539.popover.right .arrow {
1540 top: 50%;
1541 left: 0;
1542 margin-top: -5px;
1543 border-top: 5px solid transparent;
1544 border-bottom: 5px solid transparent;
1545 border-right: 5px solid #000000;
1546}
1547.popover.bottom .arrow {
1548 top: 0;
1549 left: 50%;
1550 margin-left: -5px;
1551 border-left: 5px solid transparent;
1552 border-right: 5px solid transparent;
1553 border-bottom: 5px solid #000000;
1554}
1555.popover.left .arrow {
1556 top: 50%;
1557 right: 0;
1558 margin-top: -5px;
1559 border-top: 5px solid transparent;
1560 border-bottom: 5px solid transparent;
1561 border-left: 5px solid #000000;
1562}
1563.popover .arrow {
1564 position: absolute;
1565 width: 0;
1566 height: 0;
1567}
1568.popover-inner {
1569 padding: 3px;
1570 width: 280px;
1571 overflow: hidden;
1572 background: #000000;
1573 background: rgba(0, 0, 0, 0.8);
1574 -webkit-border-radius: 6px;
1575 -moz-border-radius: 6px;
1576 border-radius: 6px;
1577 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1578 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1579 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1580}
1581.popover-title {
1582 padding: 9px 15px;
1583 line-height: 1;
1584 background-color: #f5f5f5;
1585 border-bottom: 1px solid #eee;
1586 -webkit-border-radius: 3px 3px 0 0;
1587 -moz-border-radius: 3px 3px 0 0;
1588 border-radius: 3px 3px 0 0;
1589}
1590.popover-content {
1591 padding: 14px;
1592 background-color: #ffffff;
1593 -webkit-border-radius: 0 0 3px 3px;
1594 -moz-border-radius: 0 0 3px 3px;
1595 border-radius: 0 0 3px 3px;
1596 -webkit-background-clip: padding-box;
1597 -moz-background-clip: padding-box;
1598 background-clip: padding-box;
1599}
1600.popover-content p, .popover-content ul, .popover-content ol {
1601 margin-bottom: 0;
1602}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301603
Rushabh Mehtad0251332012-02-21 17:26:50 +05301604/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301605 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301606 */
1607h1, h2, h3, h4, h5 {
Rushabh Mehta983a1712012-03-21 13:35:34 +05301608 font-family: "Lato", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301609 font-weight: bold;
1610}
1611
1612body {
Rushabh Mehta983a1712012-03-21 13:35:34 +05301613 font-family: "Lato", Helvetica, "Helvetica Neue", sans-serif;
1614 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301615}
1616
1617span, div, td, input, textarea, button, select {
1618 font-family: inherit;
1619}
1620
1621body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05301622 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301623}
1624
Rushabh Mehta983a1712012-03-21 13:35:34 +05301625.small {
1626 font-size: 11.5px;
1627}
1628
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301629.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301630 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301631 text-align: center;
1632}
1633
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301634.module-icons {
1635 background: url(../images/module-icons.png) no-repeat top left;
1636 width:16px;
1637 height:16px;
1638}
1639
1640.module-icons-accounts{ background-position: 0 0; }
1641.module-icons-analysis{ background-position: 0 -66px; }
1642.module-icons-buying{ background-position: 0 -132px; }
1643.module-icons-home{ background-position: 0 -198px; }
1644.module-icons-hr{ background-position: 0 -264px; }
1645.module-icons-people{ background-position: 0 -330px; }
1646.module-icons-production{ background-position: 0 -396px; }
1647.module-icons-projects{ background-position: 0 -462px; }
1648.module-icons-selling{ background-position: 0 -528px; }
1649.module-icons-setup{ background-position: 0 -594px; }
1650.module-icons-stock{ background-position: 0 -660px; }
1651.module-icons-support{ background-position: 0 -726px; }
Anand Doshic3023be2012-02-20 16:31:55 +05301652
Anand Doshidb628762012-02-24 17:56:00 +05301653.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301654 margin: -3px 0px;
1655 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301656 min-width: 20px;
1657 text-align: center;
1658 display: inline-block;
1659 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301660 color: #999999;
1661 background-color: #333131;
1662}
1663
1664.navbar-new-comments:hover,
1665.navbar-new-comments:active,
1666.navbar-new-comments:focus {
1667 color: #fff;
1668}
1669
1670
1671.navbar-new-comments-true {
1672 color: #fff;
1673 background-color: #B00D07;
1674}
1675
1676.navbar-icon-home {
1677 vertical-align: middle;
1678 opacity:0.4;
1679 Filter:alpha(opacity=40); /* For IE8 and earlier */
1680}
1681
1682.navbar-icon-home:hover,
1683.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05301684.navbar-icon-home:active,
1685.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301686 opacity:1;
1687 Filter:alpha(opacity=100); /* For IE8 and earlier */
1688}
1689
1690/*extra size menus for recent*/
1691.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1692 min-width: 160px !important;
1693 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301694}
1695
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301696
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301697/*
1698 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301699 */
1700.layout_wrapper {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301701 padding: 20px;
1702}
1703
1704h1 {
1705 margin-bottom: 15px;
1706}
1707
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301708h2 {
1709 margin-bottom: 11px;
1710}
1711
1712h3 {
1713 margin-bottom: 7px;
1714}
1715
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301716pre {
1717 background-color: #F8F8F8;
1718 border: 1px solid #CCCCCC;
1719 border-radius: 3px 3px 3px 3px;
1720 font-size: 13px;
1721 line-height: 19px;
1722 overflow: auto;
1723 padding: 6px 10px;
1724 margin-bottom: 9px;
1725}
1726
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301727.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1728 min-width: 180px;
1729}
1730
Rushabh Mehta13531b72012-02-20 12:35:23 +05301731.web-head-section {
1732 margin-bottom: 20px
1733}
1734
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301735.web-main-section {
1736 width: 65%;
1737 float: left;
1738 margin-bottom: 20px;
1739}
1740
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301741.web-side-section {
1742 width: 30%;
1743 float: right;
1744 margin-bottom: 20px;
1745 margin-right: 15px;
1746 color: #606060;
1747 overflow-x: hidden;
1748}
1749
1750.web-page-status {
1751 padding: 7px;
1752 color: #777;
1753 clear: both;
1754 text-align: right;
1755}
1756
1757.web-page-status a,
1758.web-page-status a:hover,
1759.web-page-status a:visited {
1760 padding: 2px;
1761 background-color: #777;
1762 color: #FFF;
1763 text-decoration: none;
1764}
1765
1766.web-page-status a:hover {
1767 background-color: #444;
1768}
1769
1770footer {
1771 color: #777;
1772}
1773
1774.web-footer {
1775 color: inherit;
1776 text-align: center;
1777 margin: 10px;
1778 line-height: 1.7;
1779}
1780
1781.web-footer div, .web-footer a {
1782 font-size: 11px;
1783}
1784
1785.web-footer-menu {
1786 margin-bottom: 7px;
1787}
1788footer a, footer a:visited {
1789 color: #777;
1790}
1791
1792footer a:hover {
1793 background-color: #777;
1794 color: #fff;
1795}
1796
1797.web-footer-menu ul {
1798 list-style: none;
1799 margin: 0px;
1800 padding: 0px;
1801}
1802
1803.web-footer-menu ul li {
1804 display: inline;
1805 padding: 2px 15px;
1806 border-right: 1px solid #999;
1807}
1808
1809.web-footer-menu ul li:last-child {
1810 border-right: 0px solid #777 !important;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301811}