blob: ee59bd29208eea5b5b6722e16ae8b67d4c08a2ba [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 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530112 margin-bottom: 3px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530113 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}
127
128.background-fade-in {
129 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
130 -moz-transition: background 1s ease-in;
131 -o-transition: background 1s ease-in;
132 transition: background 1s ease-in;
133}
134
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530135footer {
Rushabh Mehtab6f80882012-03-23 14:19:49 +0530136 width: 900px;
137 margin: auto;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530138}
139header .container {
140 width: 900px;
141 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530142}
143
Rushabh Mehta2438de42012-03-15 16:43:46 +0530144@media (max-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530145 div#body_div, header .container, .content, #opened-page-selector, footer {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530146 width: 900px;
147 }
148}
149
150@media (min-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530151 div#body_div, header .container, .content, #opened-page-selector, footer {
152 width: 1100px;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530153 }
154}
155
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530156div.no_script {
157 display: none;
158}
159
160div.loading_div {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530161 background-color: #FFFFCC;
162 z-index: 1999;
163 right: 5px;
164 width: 90px;
165 display: none;
166 text-align: center;
167 padding: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530168 border: 1px solid #FF4;
169}
170
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530171div.std-footer {
172 margin: 13px 0px;
173 border-top: 1px solid #AAA;
174 padding: 13px;
175}
176
177div.std-footer-item {
178 margin: 0px 13px 13px 0px;
179}
180
181.shadow {
182 -moz-box-shadow: 0px 2px 2px #888;
183 -webkit-box-shadow: 0px 2px 2px #888;
184 box-shadow: 0px 2px 2px #888;
185}
186
187.round {
188 -webkit-border-radius: 5px;
189 -moz-border-radius: 5px;
190 border-radius: 5px;
191}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530192
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530193.layout_wrapper, .layout-wrapper {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530194 -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
195 -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
196 box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530197 background-color: #fff;
198 padding: 15px;
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530199 -webkit-border-radius: 5px;
200 -moz-border-radius: 5px;
201 border-radius: 5px;
202 margin-bottom: 30px;
203 overflow: hidden;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530204}
205
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530206.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530207 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530208 padding: 0px;
209}
210
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530211.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530212 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530213 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530214 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530215 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530216 min-height: 600px;
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +0530217 -moz-box-shadow: 4px 0px 3px #ddd;
218 -webkit-box-shadow: 4px 0px 3px #ddd;
219 box-shadow: 4px 0px 3px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530220}
221
222.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530223 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530224 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530225 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530226 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530227 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530228 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530229}
230
231/* from bootstrap */
232.container {
233 margin-left: auto;
234 margin-right: auto;
235 zoom: 1;
236}
237.container:before, .container:after {
238 display: table;
239 content: "";
240 zoom: 1;
241}
242.container:after {
243 clear: both;
244}
245
Anand Doshi40ee8d62012-02-24 19:21:47 +0530246.well {
247 min-height: 20px;
248 padding: 19px;
249 margin-bottom: 20px;
250 background-color: #f5f5f5;
251 border: 1px solid #eee;
252 border: 1px solid rgba(0, 0, 0, 0.05);
253 -webkit-border-radius: 4px;
254 -moz-border-radius: 4px;
255 border-radius: 4px;
256 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
257 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
258 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
259}
260
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530261.avatar-small {
262 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530263 width: 24px;
264 height: 20px;
265 vertical-align: middle;
266 overflow: hidden;
267 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530268}
269.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530270 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530271}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530272
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530273/*
274 * lib/css/legacy/messages.css
275 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530276
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530277/* FLOATING MESSAGE */
278
279.btn-img { cursor: pointer; }
280
281div.fetching { color: #888; text-align:right; }
282
283div.notice {
284 postion: absolute;
285 background-color: #000;
286 -moz-border-radius: 5px; -webkit-border-radius: 5px;
287 opacity: 0.6;
288 right: 0;
289 top: 0;
290 margin-top: 8px;
291 z-index: -1;
292 padding: 8px;
293}
294
295/** help **/
296
297.info-box {
298 background-color: #F8F8F8;
299 border: 1px solid #CCCCCC;
300 border-radius: 3px 3px 3px 3px;
301 line-height: 1.6em;
302 overflow: auto;
303 padding: 6px 10px;
304 margin-bottom: 9px;
305}
306
307.help_box, .help-box {
308 background-color:#FFC;
309 font-size: 13px;
310 color: #864;
311 padding: 7px;
312 margin: 11px 0px;
313 border: 1px solid #EEB;
314}
315
316.help_box_big {
317 background-color:#FFC;
318 color: #864;
319 padding: 7px;
320 margin: 7px 0px;
321 border: 1px solid #EEB;
322 text-align: center;
323 font-size: 14px;
324}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530325
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530326/*
327 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530328 */
329/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530330
331div.dialog_wrapper {
332 position: absolute;
333 width: 440px;
334 display: none;
335 z-index: 90;
336 background-color: #FFF;
337 border: 3px solid #222;
338 box-shadow:1px 1px 5px #777;
339 -moz-box-shadow: 1px 1px 5px #777;
340 -webkit-box-shadow: 1px 1px 5px #777;
341
342 border-radius: 5px;
343 -moz-border-radius: 5px;
344 -webkit-border-radius: 5px;
345}
346
347div.dialog_head {
348 height: 22px;
349 padding: 4px;
350 background-color: #222;
351 color: #FFF;
352}
353
354div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530355 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530356 border-radius: 5px;
357 -moz-border-radius: 5px;
358 -webkit-border-radius: 5px;
359}
360
361div.dialog_back {
362 position: fixed;
363 display: none;
364 top: 0px;
365 left: 0px;
366 bottom: 0px;
367 right: 0px;
368 background-color: #EEE;
369 opacity: 0.6;
370 z-index: 50;
371 text-align: center;
372}
373
374div.dialog_message {
375 display: none;
376 position: absolute;
377 width: 250px;
378 font-size: 12px;
379 z-index: 91;
380 background-color:#FFF;
381 padding: 12px;
382 border: 1px solid #444;
383}
384
385div.dialog_row {
386 padding: 8px 8px 0px 8px;
387}
388
389div.dialog_row table {
390 width: 100%;
391}
392
393div.dialog_row table td {
394}
395
396div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
397 width: 80%;
398 font-size: 14px;
399}
400
401div.dialog_row table td textarea {
402 width: 80%;
403 height: 200px;
404 font-size: 12px;
405}
406
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530407
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530408/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530409 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530410 */
411/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530412
413h1,
414h2,
415h3,
416h4,
417h5,
418h6 {
419 margin: 0;
420 font-weight: bold;
421 color: #333333;
422 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530423}
424h1 small,
425h2 small,
426h3 small,
427h4 small,
428h5 small,
429h6 small {
430 font-weight: normal;
431 color: #999999;
432}
433h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530434 font-size: 280%;
435 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530436}
437h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530438 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530439}
440h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530441 font-size: 200%;
442 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530443}
444h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530445 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530446}
447h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530448 font-size: 210%;
449 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530450}
451h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530452 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530453}
454h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530455 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530456}
457h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530458 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530459}
460h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530461 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530462}
463h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530464 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530465}
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 Mehtab6f80882012-03-23 14:19:49 +05301605 * lib/css/ui/fonts.css
1606 */
1607@font-face {
1608 font-family: 'Pontano Sans';
1609 font-style: normal;
1610 font-weight: 800;
1611 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1612}
1613
1614@font-face {
1615 font-family: 'Droid Sans';
1616 font-style: normal;
1617 font-weight: normal;
1618 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1619}
1620
1621@font-face {
1622 font-family: 'PT Sans';
1623 font-style: normal;
1624 font-weight: normal;
1625 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1626}
1627
1628@font-face {
1629 font-family: 'Open Sans';
1630 font-style: normal;
1631 font-weight: 400;
1632 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1633}
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301634
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301635@font-face {
1636 font-family: 'Lato';
1637 font-style: normal;
1638 font-weight: 400;
1639 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1640}
1641
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301642@font-face {
1643 font-family: 'Cabin';
1644 font-style: normal;
1645 font-weight: 400;
1646 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
1647}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301648
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +05301649@font-face {
1650 font-family: 'Pacifico';
1651 font-style: normal;
1652 font-weight: normal;
1653 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('../lib/css/fonts/pacifico.woff') format('woff');
1654}
1655
1656
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301657
1658/*
1659 * lib/css/ui/list.css
1660 */
1661.hide {
1662 display: none;
1663}
1664
1665.list-filters {
1666 margin: 7px 0px;
1667}
1668
1669.wnlist .img-load {
1670 display: none;
1671 float: left;
1672 margin-bottom: 8px;
1673}
1674
1675/* list-row */
1676div.list-row {
1677 border-bottom: 1px solid #eee;
1678 padding: 5px 0px;
1679}
1680div.list-row:hover {
1681 background-color: #eef
1682}
1683
1684div.list-row .label {
1685 margin-right: 4px;
1686}
1687
1688div.list-row table {
1689 table-layout: fixed;
1690 border-collapse: collapse;
1691 width: 100%;
1692}
1693
1694div.list-row table td {
1695 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05301696 /*padding-right: 3px;*/
1697 padding: 0px 3px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301698 vertical-align: middle;
1699 height: 24px;
1700 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05301701 word-wrap: break-word;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301702}
1703
1704div.paging-button {
1705 text-align: center;
1706 padding: 11px 0px;
1707}
1708
1709div.show_filters {
1710 display: none;
1711}
1712
1713div.filter_list {
1714 padding: 13px;
1715}
1716
1717div.show_filters.well {
1718 margin-top: 11px;
1719 margin-bottom: 11px;
1720}
1721
1722div.filter_list .run_btn {
1723 text-align: right;
1724}
1725
1726div.filter_list .add_filter {
1727 margin: 3px 0px;
1728}
1729
1730div.list_filter {
1731 margin: 7px 0px;
1732}
1733
1734div.list_filter input, div.list_filter select {
1735 width: 130px;
1736 margin-right: 7px;
1737}
1738
1739/* bar */
1740
1741span.bar-outer {
1742 display: inline-block;
1743 margin: 0px 7px;
1744 margin-top: 3px;
1745 background-color: #fff;
1746 border: 1px solid #aaa;
1747 height: 10px;
1748}
1749
1750span.bar-inner {
1751 display: inline-block;
1752 background-color: #bdf;
1753 height: 100%;
1754 margin-bottom: 2px;
1755 float: left;
1756}
1757span.bar-complete {
1758 background-color: #009900;
1759}
1760span.bar-empty {
1761 background-color: #990000;
1762}
1763
1764
1765/* stats */
1766
1767div.stat-wrapper {
1768 margin-bottom: 19px;
1769}
1770
1771div.stat-grid {
1772 border: 2px solid #bbb;
1773 background-color: white;
1774 border-radius: 5px;
1775 -moz-border-radius: 5px;
1776 -webkit-border-radius: 5px;
1777 overflow: hidden;
1778}
1779
1780div.stat-label {
1781 position: relative;
1782 padding: 3px;
1783 text-align: center;
1784}
1785div.stat-label, div.stat-label a {
1786 z-index: 5;
1787}
1788
1789div.stat-item {
1790 position: relative;
1791 border-bottom: 1px solid #ddd;
1792}
1793div.stat-item:last-child {
1794 border-bottom: 0px solid #ddd;
1795}
1796
1797div.stat-bar {
1798 position: absolute;
1799 left: 0px;
1800 background-color: #def;
1801 height: 100%;
1802 z-index: 0;
1803}
1804
1805
1806
1807
1808
1809/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301810 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301811 */
1812h1, h2, h3, h4, h5 {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301813 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301814 font-weight: normal;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301815 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301816}
1817
1818body {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301819 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05301820 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301821}
1822
1823span, div, td, input, textarea, button, select {
1824 font-family: inherit;
1825}
1826
1827body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05301828 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301829 color: #616161;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301830}
1831
Rushabh Mehta983a1712012-03-21 13:35:34 +05301832.small {
1833 font-size: 11.5px;
1834}
1835
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301836.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301837 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301838 text-align: center;
1839}
1840
Anand Doshidb628762012-02-24 17:56:00 +05301841.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301842 margin: -3px 0px;
1843 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301844 min-width: 20px;
1845 text-align: center;
1846 display: inline-block;
1847 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301848 color: #999999;
1849 background-color: #333131;
1850}
1851
1852.navbar-new-comments:hover,
1853.navbar-new-comments:active,
1854.navbar-new-comments:focus {
1855 color: #fff;
1856}
1857
1858
1859.navbar-new-comments-true {
1860 color: #fff;
1861 background-color: #B00D07;
1862}
1863
1864.navbar-icon-home {
1865 vertical-align: middle;
1866 opacity:0.4;
1867 Filter:alpha(opacity=40); /* For IE8 and earlier */
1868}
1869
1870.navbar-icon-home:hover,
1871.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05301872.navbar-icon-home:active,
1873.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301874 opacity:1;
1875 Filter:alpha(opacity=100); /* For IE8 and earlier */
1876}
1877
1878/*extra size menus for recent*/
1879.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1880 min-width: 160px !important;
1881 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301882}
1883
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301884
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301885/*
1886 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301887 */
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301888div#body_div, header .container, .content, #opened-page-selector, footer {
1889 width: 900px;
1890}
1891
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301892.layout_wrapper {
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301893 padding: 27px;
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301894}
1895
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301896p, li {
1897 line-height: 1.6em;
1898}
1899
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301900pre {
1901 background-color: #F8F8F8;
1902 border: 1px solid #CCCCCC;
1903 border-radius: 3px 3px 3px 3px;
1904 font-size: 13px;
1905 line-height: 19px;
1906 overflow: auto;
1907 padding: 6px 10px;
1908 margin-bottom: 9px;
1909}
1910
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301911.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1912 min-width: 180px;
1913}
1914
Rushabh Mehta13531b72012-02-20 12:35:23 +05301915.web-head-section {
1916 margin-bottom: 20px
1917}
1918
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301919.web-main-section {
1920 width: 65%;
1921 float: left;
1922 margin-bottom: 20px;
1923}
1924
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301925.web-side-section {
1926 width: 30%;
1927 float: right;
1928 margin-bottom: 20px;
1929 margin-right: 15px;
1930 color: #606060;
1931 overflow-x: hidden;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301932 font-size: 90%;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301933}
1934
1935.web-page-status {
1936 padding: 7px;
1937 color: #777;
1938 clear: both;
1939 text-align: right;
1940}
1941
1942.web-page-status a,
1943.web-page-status a:hover,
1944.web-page-status a:visited {
1945 padding: 2px;
1946 background-color: #777;
1947 color: #FFF;
1948 text-decoration: none;
1949}
1950
1951.web-page-status a:hover {
1952 background-color: #444;
1953}
1954
1955footer {
1956 color: #777;
1957}
1958
1959.web-footer {
1960 color: inherit;
1961 text-align: center;
1962 margin: 10px;
1963 line-height: 1.7;
1964}
1965
1966.web-footer div, .web-footer a {
1967 font-size: 11px;
1968}
1969
1970.web-footer-menu {
1971 margin-bottom: 7px;
1972}
1973footer a, footer a:visited {
1974 color: #777;
1975}
1976
1977footer a:hover {
1978 background-color: #777;
1979 color: #fff;
1980}
1981
1982.web-footer-menu ul {
1983 list-style: none;
1984 margin: 0px;
1985 padding: 0px;
1986}
1987
1988.web-footer-menu ul li {
1989 display: inline;
1990 padding: 2px 15px;
1991 border-right: 1px solid #999;
1992}
1993
1994.web-footer-menu ul li:last-child {
1995 border-right: 0px solid #777 !important;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301996}
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301997
1998/* slide view */
1999
2000.next-slide {
2001 margin: 0px -27px 100px -27px;
2002 background: #ffffff; /* Old browsers */
2003 background: -moz-linear-gradient(top, #eeeeee 0%, #fff 100%); /* FF3.6+ */
2004 background: -webkit-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Chrome10+,Safari5.1+ */
2005 background: -o-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Opera 11.10+ */
2006 background: -ms-linear-gradient(top, #eeeeee 0%, #fff 100%); /* IE10+ */
2007 background: linear-gradient(top, #eeeeee 0%, #fff 100%); /* W3C */
2008 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#fff',GradientType=0 ); /* IE6-9 */
2009 height: 36px;
2010}
2011
2012.slide-shadow {
2013 background: #eeeeee; /* Old browsers */
2014 background: -moz-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* FF3.6+ */
2015 background: -webkit-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
2016 background: -o-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Opera 11.10+ */
2017 background: -ms-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* IE10+ */
2018 background: linear-gradient(top, #bababa 0%,#eeeeee 100%); /* W3C */
2019 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bababa', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
2020 height: 3px;
2021 margin: 100px -27px 0px -27px;
2022 border-top: 1px solid #bababa;
2023}
2024
2025.two-column {
2026 width: 40%;
2027 float: left;
2028 padding: 5%;
2029}
2030
2031.clear {
2032 clear: both;
2033}
2034
2035/* */