blob: ad1304ba1f3751dd9c80c26aafbbb3ae2df9e3a9 [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}
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;
199}
200
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530201.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530202 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530203 padding: 0px;
204}
205
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530206.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530207 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530208 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530209 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530210 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530211 min-height: 600px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530212 -moz-box-shadow: 7px 0px 6px -2px #ddd;
213 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
214 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530215}
216
217.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530218 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530219 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530220 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530221 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530222 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530223 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530224}
225
226/* from bootstrap */
227.container {
228 margin-left: auto;
229 margin-right: auto;
230 zoom: 1;
231}
232.container:before, .container:after {
233 display: table;
234 content: "";
235 zoom: 1;
236}
237.container:after {
238 clear: both;
239}
240
Anand Doshi40ee8d62012-02-24 19:21:47 +0530241.well {
242 min-height: 20px;
243 padding: 19px;
244 margin-bottom: 20px;
245 background-color: #f5f5f5;
246 border: 1px solid #eee;
247 border: 1px solid rgba(0, 0, 0, 0.05);
248 -webkit-border-radius: 4px;
249 -moz-border-radius: 4px;
250 border-radius: 4px;
251 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
252 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
253 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
254}
255
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530256.avatar-small {
257 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530258 width: 24px;
259 height: 20px;
260 vertical-align: middle;
261 overflow: hidden;
262 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530263}
264.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530265 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530266}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530267
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530268/*
269 * lib/css/legacy/messages.css
270 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530271
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530272/* FLOATING MESSAGE */
273
274.btn-img { cursor: pointer; }
275
276div.fetching { color: #888; text-align:right; }
277
278div.notice {
279 postion: absolute;
280 background-color: #000;
281 -moz-border-radius: 5px; -webkit-border-radius: 5px;
282 opacity: 0.6;
283 right: 0;
284 top: 0;
285 margin-top: 8px;
286 z-index: -1;
287 padding: 8px;
288}
289
290/** help **/
291
292.info-box {
293 background-color: #F8F8F8;
294 border: 1px solid #CCCCCC;
295 border-radius: 3px 3px 3px 3px;
296 line-height: 1.6em;
297 overflow: auto;
298 padding: 6px 10px;
299 margin-bottom: 9px;
300}
301
302.help_box, .help-box {
303 background-color:#FFC;
304 font-size: 13px;
305 color: #864;
306 padding: 7px;
307 margin: 11px 0px;
308 border: 1px solid #EEB;
309}
310
311.help_box_big {
312 background-color:#FFC;
313 color: #864;
314 padding: 7px;
315 margin: 7px 0px;
316 border: 1px solid #EEB;
317 text-align: center;
318 font-size: 14px;
319}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530320
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530321/*
322 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530323 */
324/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530325
326div.dialog_wrapper {
327 position: absolute;
328 width: 440px;
329 display: none;
330 z-index: 90;
331 background-color: #FFF;
332 border: 3px solid #222;
333 box-shadow:1px 1px 5px #777;
334 -moz-box-shadow: 1px 1px 5px #777;
335 -webkit-box-shadow: 1px 1px 5px #777;
336
337 border-radius: 5px;
338 -moz-border-radius: 5px;
339 -webkit-border-radius: 5px;
340}
341
342div.dialog_head {
343 height: 22px;
344 padding: 4px;
345 background-color: #222;
346 color: #FFF;
347}
348
349div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530350 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530351 border-radius: 5px;
352 -moz-border-radius: 5px;
353 -webkit-border-radius: 5px;
354}
355
356div.dialog_back {
357 position: fixed;
358 display: none;
359 top: 0px;
360 left: 0px;
361 bottom: 0px;
362 right: 0px;
363 background-color: #EEE;
364 opacity: 0.6;
365 z-index: 50;
366 text-align: center;
367}
368
369div.dialog_message {
370 display: none;
371 position: absolute;
372 width: 250px;
373 font-size: 12px;
374 z-index: 91;
375 background-color:#FFF;
376 padding: 12px;
377 border: 1px solid #444;
378}
379
380div.dialog_row {
381 padding: 8px 8px 0px 8px;
382}
383
384div.dialog_row table {
385 width: 100%;
386}
387
388div.dialog_row table td {
389}
390
391div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
392 width: 80%;
393 font-size: 14px;
394}
395
396div.dialog_row table td textarea {
397 width: 80%;
398 height: 200px;
399 font-size: 12px;
400}
401
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530402
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530403/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530404 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530405 */
406/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530407
408h1,
409h2,
410h3,
411h4,
412h5,
413h6 {
414 margin: 0;
415 font-weight: bold;
416 color: #333333;
417 text-rendering: optimizelegibility;
418 margin-bottom: 0.3em;
419}
420h1 small,
421h2 small,
422h3 small,
423h4 small,
424h5 small,
425h6 small {
426 font-weight: normal;
427 color: #999999;
428}
429h1 {
430 font-size: 30px;
431 line-height: 36px;
432}
433h1 small {
434 font-size: 18px;
435}
436h2 {
437 font-size: 24px;
438 line-height: 36px;
439}
440h2 small {
441 font-size: 18px;
442}
443h3 {
444 line-height: 27px;
445 font-size: 18px;
446}
447h3 small {
448 font-size: 14px;
449}
450h4, h5, h6 {
451 line-height: 18px;
452}
453h4 {
454 font-size: 14px;
455}
456h4 small {
457 font-size: 12px;
458}
459h5 {
460 font-size: 12px;
461}
462h6 {
463 font-size: 11px;
464 color: #999999;
465 text-transform: uppercase;
466}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530467
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530468/*
469 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530470 */
471.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530472 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530473 float: right;
474 font-size: 20px;
475 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530476 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530477 color: #000000;
478 text-shadow: 0 1px 0 #ffffff;
479 opacity: 0.2;
480 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530481}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530482.close:hover {
483 color: #000000;
484 text-decoration: none;
485 opacity: 0.4;
486 filter: alpha(opacity=40);
487 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530488}
489.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530490 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530491 padding: 4px 10px 4px;
492 font-size: 13px;
493 line-height: 18px;
494 color: #333333;
495 text-align: center;
496 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
497 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530498 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
499 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
500 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
501 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
502 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
503 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530504 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530505 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530506 border: 1px solid #ccc;
507 border-bottom-color: #bbb;
508 -webkit-border-radius: 4px;
509 -moz-border-radius: 4px;
510 border-radius: 4px;
511 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
512 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
513 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 +0530514 cursor: pointer;
515 *margin-left: .3em;
516}
517.btn:first-child {
518 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530519}
520.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530521 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530522 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530523 background-color: #e6e6e6;
524 background-position: 0 -15px;
525 -webkit-transition: background-position 0.1s linear;
526 -moz-transition: background-position 0.1s linear;
527 -ms-transition: background-position 0.1s linear;
528 -o-transition: background-position 0.1s linear;
529 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530530}
531.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530532 outline: thin dotted;
533 outline: 5px auto -webkit-focus-ring-color;
534 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530535}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530536.btn.active, .btn:active {
537 background-image: none;
538 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
539 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
540 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
541 background-color: #e6e6e6;
542 background-color: #d9d9d9 \9;
543 color: rgba(0, 0, 0, 0.5);
544 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530545}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530546.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530547 cursor: default;
548 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530549 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530550 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530551 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530552 -webkit-box-shadow: none;
553 -moz-box-shadow: none;
554 box-shadow: none;
555}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530556.btn-large {
557 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530558 font-size: 15px;
559 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530560 -webkit-border-radius: 5px;
561 -moz-border-radius: 5px;
562 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530563}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530564.btn-large .icon {
565 margin-top: 1px;
566}
567.btn-small {
568 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530569 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530570 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530571}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530572.btn-small .icon {
573 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530574}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530575.btn-primary,
576.btn-primary:hover,
577.btn-warning,
578.btn-warning:hover,
579.btn-danger,
580.btn-danger:hover,
581.btn-success,
582.btn-success:hover,
583.btn-info,
584.btn-info:hover {
585 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
586 color: #ffffff;
587}
588.btn-primary.active,
589.btn-warning.active,
590.btn-danger.active,
591.btn-success.active,
592.btn-info.active {
593 color: rgba(255, 255, 255, 0.75);
594}
595.btn-primary {
596 background-color: #006dcc;
597 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
598 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
599 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
600 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
601 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
602 background-image: linear-gradient(top, #0088cc, #0044cc);
603 background-repeat: repeat-x;
604 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
605 border-color: #0044cc #0044cc #002a80;
606 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
607 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
608}
609.btn-primary:hover,
610.btn-primary:active,
611.btn-primary.active,
612.btn-primary.disabled,
613.btn-primary[disabled] {
614 background-color: #0044cc;
615}
616.btn-primary:active, .btn-primary.active {
617 background-color: #003399 \9;
618}
619.btn-warning {
620 background-color: #faa732;
621 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
622 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
623 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
624 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
625 background-image: -o-linear-gradient(top, #fbb450, #f89406);
626 background-image: linear-gradient(top, #fbb450, #f89406);
627 background-repeat: repeat-x;
628 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
629 border-color: #f89406 #f89406 #ad6704;
630 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
631 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
632}
633.btn-warning:hover,
634.btn-warning:active,
635.btn-warning.active,
636.btn-warning.disabled,
637.btn-warning[disabled] {
638 background-color: #f89406;
639}
640.btn-warning:active, .btn-warning.active {
641 background-color: #c67605 \9;
642}
643.btn-danger {
644 background-color: #da4f49;
645 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
646 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
647 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
648 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
649 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
650 background-image: linear-gradient(top, #ee5f5b, #bd362f);
651 background-repeat: repeat-x;
652 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
653 border-color: #bd362f #bd362f #802420;
654 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
655 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
656}
657.btn-danger:hover,
658.btn-danger:active,
659.btn-danger.active,
660.btn-danger.disabled,
661.btn-danger[disabled] {
662 background-color: #bd362f;
663}
664.btn-danger:active, .btn-danger.active {
665 background-color: #942a25 \9;
666}
667.btn-success {
668 background-color: #5bb75b;
669 background-image: -moz-linear-gradient(top, #62c462, #51a351);
670 background-image: -ms-linear-gradient(top, #62c462, #51a351);
671 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
672 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
673 background-image: -o-linear-gradient(top, #62c462, #51a351);
674 background-image: linear-gradient(top, #62c462, #51a351);
675 background-repeat: repeat-x;
676 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
677 border-color: #51a351 #51a351 #387038;
678 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
679 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
680}
681.btn-success:hover,
682.btn-success:active,
683.btn-success.active,
684.btn-success.disabled,
685.btn-success[disabled] {
686 background-color: #51a351;
687}
688.btn-success:active, .btn-success.active {
689 background-color: #408140 \9;
690}
691.btn-info {
692 background-color: #49afcd;
693 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
694 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
695 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
696 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
697 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
698 background-image: linear-gradient(top, #5bc0de, #2f96b4);
699 background-repeat: repeat-x;
700 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
701 border-color: #2f96b4 #2f96b4 #1f6377;
702 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
703 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
704}
705.btn-info:hover,
706.btn-info:active,
707.btn-info.active,
708.btn-info.disabled,
709.btn-info[disabled] {
710 background-color: #2f96b4;
711}
712.btn-info:active, .btn-info.active {
713 background-color: #24748c \9;
714}
715button.btn, input[type="submit"].btn {
716 *padding-top: 2px;
717 *padding-bottom: 2px;
718}
719button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530720 padding: 0;
721 border: 0;
722}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530723button.btn.large, input[type="submit"].btn.large {
724 *padding-top: 7px;
725 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530726}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530727button.btn.small, input[type="submit"].btn.small {
728 *padding-top: 3px;
729 *padding-bottom: 3px;
730}
731.btn-group {
732 position: relative;
733 *zoom: 1;
734 *margin-left: .3em;
735}
736.btn-group:before, .btn-group:after {
737 display: table;
738 content: "";
739}
740.btn-group:after {
741 clear: both;
742}
743.btn-group:first-child {
744 *margin-left: 0;
745}
746.btn-group + .btn-group {
747 margin-left: 5px;
748}
749.btn-toolbar {
750 margin-top: 9px;
751 margin-bottom: 9px;
752}
753.btn-toolbar .btn-group {
754 display: inline-block;
755 *display: inline;
756 /* IE7 inline-block hack */
757
758 *zoom: 1;
759}
760.btn-group .btn {
761 position: relative;
762 float: left;
763 margin-left: -1px;
764 -webkit-border-radius: 0;
765 -moz-border-radius: 0;
766 border-radius: 0;
767}
768.btn-group .btn:first-child {
769 margin-left: 0;
770 -webkit-border-top-left-radius: 4px;
771 -moz-border-radius-topleft: 4px;
772 border-top-left-radius: 4px;
773 -webkit-border-bottom-left-radius: 4px;
774 -moz-border-radius-bottomleft: 4px;
775 border-bottom-left-radius: 4px;
776}
777.btn-group .btn:last-child, .btn-group .dropdown-toggle {
778 -webkit-border-top-right-radius: 4px;
779 -moz-border-radius-topright: 4px;
780 border-top-right-radius: 4px;
781 -webkit-border-bottom-right-radius: 4px;
782 -moz-border-radius-bottomright: 4px;
783 border-bottom-right-radius: 4px;
784}
785.btn-group .btn.large:first-child {
786 margin-left: 0;
787 -webkit-border-top-left-radius: 6px;
788 -moz-border-radius-topleft: 6px;
789 border-top-left-radius: 6px;
790 -webkit-border-bottom-left-radius: 6px;
791 -moz-border-radius-bottomleft: 6px;
792 border-bottom-left-radius: 6px;
793}
794.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
795 -webkit-border-top-right-radius: 6px;
796 -moz-border-radius-topright: 6px;
797 border-top-right-radius: 6px;
798 -webkit-border-bottom-right-radius: 6px;
799 -moz-border-radius-bottomright: 6px;
800 border-bottom-right-radius: 6px;
801}
802.btn-group .btn:hover,
803.btn-group .btn:focus,
804.btn-group .btn:active,
805.btn-group .btn.active {
806 z-index: 2;
807}
808.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
809 outline: 0;
810}
811.btn-group .dropdown-toggle {
812 padding-left: 8px;
813 padding-right: 8px;
814 -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);
815 -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);
816 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);
817 *padding-top: 5px;
818 *padding-bottom: 5px;
819}
820.btn-group.open {
821 *z-index: 1000;
822}
823.btn-group.open .dropdown-menu {
824 display: block;
825 margin-top: 1px;
826 -webkit-border-radius: 5px;
827 -moz-border-radius: 5px;
828 border-radius: 5px;
829}
830.btn-group.open .dropdown-toggle {
831 background-image: none;
832 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
833 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
834 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
835}
836.btn .caret {
837 margin-top: 7px;
838 margin-left: 0;
839}
840.btn:hover .caret, .open.btn-group .caret {
841 opacity: 1;
842 filter: alpha(opacity=100);
843}
844.btn-primary .caret,
845.btn-danger .caret,
846.btn-info .caret,
847.btn-success .caret {
848 border-top-color: #ffffff;
849 opacity: 0.75;
850 filter: alpha(opacity=75);
851}
852.btn-small .caret {
853 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530854}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530855
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530856/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530857 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530858 */
859.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530860 margin-left: 0;
861 margin-bottom: 18px;
862 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530863}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530864.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530865 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530866}
867.nav > li > a:hover {
868 text-decoration: none;
869 background-color: #eeeeee;
870}
871.nav-list {
872 padding-left: 14px;
873 padding-right: 14px;
874 margin-bottom: 0;
875}
876.nav-list > li > a, .nav-list .nav-header {
877 display: block;
878 padding: 3px 15px;
879 margin-left: -15px;
880 margin-right: -15px;
881 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
882}
883.nav-list .nav-header {
884 font-size: 11px;
885 font-weight: bold;
886 line-height: 18px;
887 color: #999999;
888 text-transform: uppercase;
889}
890.nav-list > li + .nav-header {
891 margin-top: 9px;
892}
893.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530894 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530895 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
896 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530897}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530898.nav-list [class^="icon-"] {
899 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530900}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530901.nav-tabs, .nav-pills {
902 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530903}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530904.nav-tabs:before,
905.nav-pills:before,
906.nav-tabs:after,
907.nav-pills:after {
908 display: table;
909 content: "";
910}
911.nav-tabs:after, .nav-pills:after {
912 clear: both;
913}
914.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530915 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530916}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530917.nav-tabs > li > a, .nav-pills > li > a {
918 padding-right: 12px;
919 padding-left: 12px;
920 margin-right: 2px;
921 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530922}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530923.nav-tabs {
924 border-bottom: 1px solid #ddd;
925}
926.nav-tabs > li {
927 margin-bottom: -1px;
928}
929.nav-tabs > li > a {
930 padding-top: 9px;
931 padding-bottom: 9px;
932 border: 1px solid transparent;
933 -webkit-border-radius: 4px 4px 0 0;
934 -moz-border-radius: 4px 4px 0 0;
935 border-radius: 4px 4px 0 0;
936}
937.nav-tabs > li > a:hover {
938 border-color: #eeeeee #eeeeee #dddddd;
939}
940.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
941 color: #555555;
942 background-color: #ffffff;
943 border: 1px solid #ddd;
944 border-bottom-color: transparent;
945 cursor: default;
946}
947.nav-pills > li > a {
948 padding-top: 8px;
949 padding-bottom: 8px;
950 margin-top: 2px;
951 margin-bottom: 2px;
952 -webkit-border-radius: 5px;
953 -moz-border-radius: 5px;
954 border-radius: 5px;
955}
956.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530957 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530958 background-color: #0088cc;
959}
960.nav-stacked > li {
961 float: none;
962}
963.nav-stacked > li > a {
964 margin-right: 0;
965}
966.nav-tabs.nav-stacked {
967 border-bottom: 0;
968}
969.nav-tabs.nav-stacked > li > a {
970 border: 1px solid #ddd;
971 -webkit-border-radius: 0;
972 -moz-border-radius: 0;
973 border-radius: 0;
974}
975.nav-tabs.nav-stacked > li:first-child > a {
976 -webkit-border-radius: 4px 4px 0 0;
977 -moz-border-radius: 4px 4px 0 0;
978 border-radius: 4px 4px 0 0;
979}
980.nav-tabs.nav-stacked > li:last-child > a {
981 -webkit-border-radius: 0 0 4px 4px;
982 -moz-border-radius: 0 0 4px 4px;
983 border-radius: 0 0 4px 4px;
984}
985.nav-tabs.nav-stacked > li > a:hover {
986 border-color: #ddd;
987 z-index: 2;
988}
989.nav-pills.nav-stacked > li > a {
990 margin-bottom: 3px;
991}
992.nav-pills.nav-stacked > li:last-child > a {
993 margin-bottom: 1px;
994}
995.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
996 margin-top: 1px;
997 border-width: 1px;
998}
999.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301000 -webkit-border-radius: 4px;
1001 -moz-border-radius: 4px;
1002 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301003}
1004.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1005 border-top-color: #0088cc;
1006 margin-top: 6px;
1007}
1008.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1009 border-top-color: #005580;
1010}
1011.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1012 border-top-color: #333333;
1013}
1014.nav > .dropdown.active > a:hover {
1015 color: #000000;
1016 cursor: pointer;
1017}
1018.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1019 color: #ffffff;
1020 background-color: #999999;
1021 border-color: #999999;
1022}
1023.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1024 border-top-color: #ffffff;
1025 opacity: 1;
1026 filter: alpha(opacity=100);
1027}
1028
1029.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301030 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301031 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301032}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301033.navbar-inner {
1034 padding-left: 20px;
1035 padding-right: 20px;
1036 background-color: #2c2c2c;
1037 background-image: -moz-linear-gradient(top, #333333, #222222);
1038 background-image: -ms-linear-gradient(top, #333333, #222222);
1039 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1040 background-image: -webkit-linear-gradient(top, #333333, #222222);
1041 background-image: -o-linear-gradient(top, #333333, #222222);
1042 background-image: linear-gradient(top, #333333, #222222);
1043 background-repeat: repeat-x;
1044 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1045 -webkit-border-radius: 4px;
1046 -moz-border-radius: 4px;
1047 border-radius: 4px;
1048 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1049 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1050 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1051}
1052.btn-navbar {
1053 display: none;
1054 float: right;
1055 padding: 7px 10px;
1056 margin-left: 5px;
1057 margin-right: 5px;
1058 background-color: #2c2c2c;
1059 background-image: -moz-linear-gradient(top, #333333, #222222);
1060 background-image: -ms-linear-gradient(top, #333333, #222222);
1061 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1062 background-image: -webkit-linear-gradient(top, #333333, #222222);
1063 background-image: -o-linear-gradient(top, #333333, #222222);
1064 background-image: linear-gradient(top, #333333, #222222);
1065 background-repeat: repeat-x;
1066 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1067 border-color: #222222 #222222 #000000;
1068 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1069 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1070 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1071 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1072 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1073}
1074.btn-navbar:hover,
1075.btn-navbar:active,
1076.btn-navbar.active,
1077.btn-navbar.disabled,
1078.btn-navbar[disabled] {
1079 background-color: #222222;
1080}
1081.btn-navbar:active, .btn-navbar.active {
1082 background-color: #080808 \9;
1083}
1084.btn-navbar .icon-bar {
1085 display: block;
1086 width: 18px;
1087 height: 2px;
1088 background-color: #f5f5f5;
1089 -webkit-border-radius: 1px;
1090 -moz-border-radius: 1px;
1091 border-radius: 1px;
1092 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1093 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1094 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1095}
1096.btn-navbar .icon-bar + .icon-bar {
1097 margin-top: 3px;
1098}
1099.nav-collapse.collapse {
1100 height: auto;
1101}
1102.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301103 text-decoration: none;
1104}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301105.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301106 float: left;
1107 display: block;
1108 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301109 font-size: 20px;
1110 font-weight: 200;
1111 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301112 color: #ffffff;
1113}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301114.navbar .navbar-text {
1115 margin-bottom: 0;
1116 line-height: 40px;
1117 color: #999999;
1118}
1119.navbar .navbar-text a:hover {
1120 color: #ffffff;
1121 background-color: transparent;
1122}
1123.navbar .btn, .navbar .btn-group {
1124 margin-top: 5px;
1125}
1126.navbar .btn-group .btn {
1127 margin-top: 0;
1128}
1129.navbar-form {
1130 margin-bottom: 0;
1131 *zoom: 1;
1132}
1133.navbar-form:before, .navbar-form:after {
1134 display: table;
1135 content: "";
1136}
1137.navbar-form:after {
1138 clear: both;
1139}
1140.navbar-form input, .navbar-form select {
1141 display: inline-block;
1142 margin-top: 5px;
1143 margin-bottom: 0;
1144}
1145.navbar-form .radio, .navbar-form .checkbox {
1146 margin-top: 5px;
1147}
1148.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1149 margin-top: 3px;
1150}
1151.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301152 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301153 float: left;
1154 margin-top: 6px;
1155 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301156}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301157.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301158 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301159 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1160 font-size: 13px;
1161 font-weight: normal;
1162 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301163 color: #ffffff;
1164 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301165 background: #666;
1166 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301167 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301168 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1169 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1170 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 +05301171 -webkit-transition: none;
1172 -moz-transition: none;
1173 -ms-transition: none;
1174 -o-transition: none;
1175 transition: none;
1176}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301177.navbar-search .search-query :-moz-placeholder {
1178 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301179}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301180.navbar-search .search-query::-webkit-input-placeholder {
1181 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301182}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301183.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301184 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301185 background-color: #999999;
1186 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301187}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301188.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301189 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301190 color: #333333;
1191 text-shadow: 0 1px 0 #ffffff;
1192 background-color: #ffffff;
1193 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301194 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1195 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1196 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301197 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301198}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301199.navbar-fixed-top {
1200 position: fixed;
1201 top: 0;
1202 right: 0;
1203 left: 0;
1204 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301205}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301206.navbar-fixed-top .navbar-inner {
1207 padding-left: 0;
1208 padding-right: 0;
1209 -webkit-border-radius: 0;
1210 -moz-border-radius: 0;
1211 border-radius: 0;
1212}
1213.navbar .nav {
1214 position: relative;
1215 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301216 display: block;
1217 float: left;
1218 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301219}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301220.navbar .nav.pull-right {
1221 float: right;
1222}
1223.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301224 display: block;
1225 float: left;
1226}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301227.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301228 float: none;
1229 padding: 10px 10px 11px;
1230 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301231 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301232 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301233 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301234}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301235.navbar .nav > li > a:hover {
1236 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301237 color: #ffffff;
1238 text-decoration: none;
1239}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301240.navbar .nav .active > a, .navbar .nav .active > a:hover {
1241 color: #ffffff;
1242 text-decoration: none;
1243 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301244 background-color: rgba(0, 0, 0, 0.5);
1245}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301246.navbar .divider-vertical {
1247 height: 40px;
1248 width: 1px;
1249 margin: 0 9px;
1250 overflow: hidden;
1251 background-color: #222222;
1252 border-right: 1px solid #333333;
1253}
1254.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301255 margin-left: 10px;
1256 margin-right: 0;
1257}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301258.navbar .dropdown-menu {
1259 margin-top: 1px;
1260 -webkit-border-radius: 4px;
1261 -moz-border-radius: 4px;
1262 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301263}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301264.navbar .dropdown-menu:before {
1265 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301266 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301267 border-left: 7px solid transparent;
1268 border-right: 7px solid transparent;
1269 border-bottom: 7px solid #ccc;
1270 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301271 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301272 top: -7px;
1273 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301274}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301275.navbar .dropdown-menu:after {
1276 content: '';
1277 display: inline-block;
1278 border-left: 6px solid transparent;
1279 border-right: 6px solid transparent;
1280 border-bottom: 6px solid #ffffff;
1281 position: absolute;
1282 top: -6px;
1283 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301284}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301285.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1286 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301287}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301288.navbar .nav .active .caret {
1289 opacity: 1;
1290 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301291}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301292.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1293 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301294}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301295.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301296 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301297}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301298.navbar .nav.pull-right .dropdown-menu {
1299 left: auto;
1300 right: 0;
1301}
1302.navbar .nav.pull-right .dropdown-menu:before {
1303 left: auto;
1304 right: 12px;
1305}
1306.navbar .nav.pull-right .dropdown-menu:after {
1307 left: auto;
1308 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301309}
1310
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301311/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301312.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301313 display: block;
1314 float: right;
1315 width: 20px;
1316 margin-bottom: -5px;
1317 margin-top: 10px;
1318 visibility: hidden;
1319}
1320
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301321.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301322 padding: 0px 20px;
1323}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301324
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301325
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301326/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301327 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301328 */
1329.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301330 position: relative;
1331}
1332.dropdown-toggle {
1333 *margin-bottom: -3px;
1334}
1335.dropdown-toggle:active, .open .dropdown-toggle {
1336 outline: 0;
1337}
1338.caret {
1339 display: inline-block;
1340 width: 0;
1341 height: 0;
1342 text-indent: -99999px;
1343 *text-indent: 0;
1344 vertical-align: top;
1345 border-left: 4px solid transparent;
1346 border-right: 4px solid transparent;
1347 border-top: 4px solid #000000;
1348 opacity: 0.3;
1349 filter: alpha(opacity=30);
1350 content: "\2193";
1351}
1352.dropdown .caret {
1353 margin-top: 8px;
1354 margin-left: 2px;
1355}
1356.dropdown:hover .caret, .open.dropdown .caret {
1357 opacity: 1;
1358 filter: alpha(opacity=100);
1359}
1360.dropdown-menu {
1361 position: absolute;
1362 top: 100%;
1363 left: 0;
1364 z-index: 1000;
1365 float: left;
1366 display: none;
1367 min-width: 160px;
1368 max-width: 220px;
1369 _width: 160px;
1370 padding: 4px 0;
1371 margin: 0;
1372 list-style: none;
1373 background-color: #ffffff;
1374 border-color: #ccc;
1375 border-color: rgba(0, 0, 0, 0.2);
1376 border-style: solid;
1377 border-width: 1px;
1378 -webkit-border-radius: 0 0 5px 5px;
1379 -moz-border-radius: 0 0 5px 5px;
1380 border-radius: 0 0 5px 5px;
1381 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1382 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1383 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1384 -webkit-background-clip: padding-box;
1385 -moz-background-clip: padding;
1386 background-clip: padding-box;
1387 *border-right-width: 2px;
1388 *border-bottom-width: 2px;
1389}
1390.dropdown-menu.bottom-up {
1391 top: auto;
1392 bottom: 100%;
1393 margin-bottom: 2px;
1394}
1395.dropdown-menu .divider {
1396 height: 1px;
1397 margin: 5px 1px;
1398 overflow: hidden;
1399 background-color: #e5e5e5;
1400 border-bottom: 1px solid #ffffff;
1401 *width: 100%;
1402 *margin: -5px 0 5px;
1403}
1404.dropdown-menu a {
1405 display: block;
1406 padding: 3px 15px;
1407 clear: both;
1408 font-weight: normal;
1409 line-height: 18px;
1410 color: #555555;
1411 white-space: nowrap;
1412}
1413.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1414 color: #ffffff;
1415 text-decoration: none;
1416 background-color: #0088cc;
1417}
1418.dropdown.open {
1419 *z-index: 1000;
1420}
1421.dropdown.open .dropdown-toggle {
1422 color: #ffffff;
1423 background: #ccc;
1424 background: rgba(0, 0, 0, 0.3);
1425}
1426.dropdown.open .dropdown-menu {
1427 display: block;
1428}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301429
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301430/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301431 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301432 */
1433.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301434 position: absolute;
1435 z-index: 1020;
1436 display: block;
1437 visibility: visible;
1438 padding: 5px;
1439 font-size: 11px;
1440 opacity: 0;
1441 filter: alpha(opacity=0);
1442}
1443.tooltip.in {
1444 opacity: 0.8;
1445 filter: alpha(opacity=80);
1446}
1447.tooltip.top {
1448 margin-top: -2px;
1449}
1450.tooltip.right {
1451 margin-left: 2px;
1452}
1453.tooltip.bottom {
1454 margin-top: 2px;
1455}
1456.tooltip.left {
1457 margin-left: -2px;
1458}
1459.tooltip.top .tooltip-arrow {
1460 bottom: 0;
1461 left: 50%;
1462 margin-left: -5px;
1463 border-left: 5px solid transparent;
1464 border-right: 5px solid transparent;
1465 border-top: 5px solid #000000;
1466}
1467.tooltip.left .tooltip-arrow {
1468 top: 50%;
1469 right: 0;
1470 margin-top: -5px;
1471 border-top: 5px solid transparent;
1472 border-bottom: 5px solid transparent;
1473 border-left: 5px solid #000000;
1474}
1475.tooltip.bottom .tooltip-arrow {
1476 top: 0;
1477 left: 50%;
1478 margin-left: -5px;
1479 border-left: 5px solid transparent;
1480 border-right: 5px solid transparent;
1481 border-bottom: 5px solid #000000;
1482}
1483.tooltip.right .tooltip-arrow {
1484 top: 50%;
1485 left: 0;
1486 margin-top: -5px;
1487 border-top: 5px solid transparent;
1488 border-bottom: 5px solid transparent;
1489 border-right: 5px solid #000000;
1490}
1491.tooltip-inner {
1492 max-width: 200px;
1493 padding: 3px 8px;
1494 color: #ffffff;
1495 text-align: center;
1496 text-decoration: none;
1497 background-color: #000000;
1498 -webkit-border-radius: 4px;
1499 -moz-border-radius: 4px;
1500 border-radius: 4px;
1501}
1502.tooltip-arrow {
1503 position: absolute;
1504 width: 0;
1505 height: 0;
1506}
1507.popover {
1508 position: absolute;
1509 top: 0;
1510 left: 0;
1511 z-index: 1010;
1512 display: none;
1513 padding: 5px;
1514}
1515.popover.top {
1516 margin-top: -5px;
1517}
1518.popover.right {
1519 margin-left: 5px;
1520}
1521.popover.bottom {
1522 margin-top: 5px;
1523}
1524.popover.left {
1525 margin-left: -5px;
1526}
1527.popover.top .arrow {
1528 bottom: 0;
1529 left: 50%;
1530 margin-left: -5px;
1531 border-left: 5px solid transparent;
1532 border-right: 5px solid transparent;
1533 border-top: 5px solid #000000;
1534}
1535.popover.right .arrow {
1536 top: 50%;
1537 left: 0;
1538 margin-top: -5px;
1539 border-top: 5px solid transparent;
1540 border-bottom: 5px solid transparent;
1541 border-right: 5px solid #000000;
1542}
1543.popover.bottom .arrow {
1544 top: 0;
1545 left: 50%;
1546 margin-left: -5px;
1547 border-left: 5px solid transparent;
1548 border-right: 5px solid transparent;
1549 border-bottom: 5px solid #000000;
1550}
1551.popover.left .arrow {
1552 top: 50%;
1553 right: 0;
1554 margin-top: -5px;
1555 border-top: 5px solid transparent;
1556 border-bottom: 5px solid transparent;
1557 border-left: 5px solid #000000;
1558}
1559.popover .arrow {
1560 position: absolute;
1561 width: 0;
1562 height: 0;
1563}
1564.popover-inner {
1565 padding: 3px;
1566 width: 280px;
1567 overflow: hidden;
1568 background: #000000;
1569 background: rgba(0, 0, 0, 0.8);
1570 -webkit-border-radius: 6px;
1571 -moz-border-radius: 6px;
1572 border-radius: 6px;
1573 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1574 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1575 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1576}
1577.popover-title {
1578 padding: 9px 15px;
1579 line-height: 1;
1580 background-color: #f5f5f5;
1581 border-bottom: 1px solid #eee;
1582 -webkit-border-radius: 3px 3px 0 0;
1583 -moz-border-radius: 3px 3px 0 0;
1584 border-radius: 3px 3px 0 0;
1585}
1586.popover-content {
1587 padding: 14px;
1588 background-color: #ffffff;
1589 -webkit-border-radius: 0 0 3px 3px;
1590 -moz-border-radius: 0 0 3px 3px;
1591 border-radius: 0 0 3px 3px;
1592 -webkit-background-clip: padding-box;
1593 -moz-background-clip: padding-box;
1594 background-clip: padding-box;
1595}
1596.popover-content p, .popover-content ul, .popover-content ol {
1597 margin-bottom: 0;
1598}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301599
Rushabh Mehtad0251332012-02-21 17:26:50 +05301600/*
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301601 * lib/css/ui/fonts.css
1602 */
1603@font-face {
1604 font-family: 'Pontano Sans';
1605 font-style: normal;
1606 font-weight: 800;
1607 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1608}
1609
1610@font-face {
1611 font-family: 'Droid Sans';
1612 font-style: normal;
1613 font-weight: normal;
1614 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1615}
1616
1617@font-face {
1618 font-family: 'PT Sans';
1619 font-style: normal;
1620 font-weight: normal;
1621 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1622}
1623
1624@font-face {
1625 font-family: 'Open Sans';
1626 font-style: normal;
1627 font-weight: 400;
1628 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1629}
1630@font-face {
1631 font-family: 'Lato';
1632 font-style: normal;
1633 font-weight: 400;
1634 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1635}
1636
1637
1638
1639/*
1640 * lib/css/ui/list.css
1641 */
1642.hide {
1643 display: none;
1644}
1645
1646.list-filters {
1647 margin: 7px 0px;
1648}
1649
1650.wnlist .img-load {
1651 display: none;
1652 float: left;
1653 margin-bottom: 8px;
1654}
1655
1656/* list-row */
1657div.list-row {
1658 border-bottom: 1px solid #eee;
1659 padding: 5px 0px;
1660}
1661div.list-row:hover {
1662 background-color: #eef
1663}
1664
1665div.list-row .label {
1666 margin-right: 4px;
1667}
1668
1669div.list-row table {
1670 table-layout: fixed;
1671 border-collapse: collapse;
1672 width: 100%;
1673}
1674
1675div.list-row table td {
1676 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05301677 /*padding-right: 3px;*/
1678 padding: 0px 3px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301679 vertical-align: middle;
1680 height: 24px;
1681 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05301682 word-wrap: break-word;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301683}
1684
1685div.paging-button {
1686 text-align: center;
1687 padding: 11px 0px;
1688}
1689
1690div.show_filters {
1691 display: none;
1692}
1693
1694div.filter_list {
1695 padding: 13px;
1696}
1697
1698div.show_filters.well {
1699 margin-top: 11px;
1700 margin-bottom: 11px;
1701}
1702
1703div.filter_list .run_btn {
1704 text-align: right;
1705}
1706
1707div.filter_list .add_filter {
1708 margin: 3px 0px;
1709}
1710
1711div.list_filter {
1712 margin: 7px 0px;
1713}
1714
1715div.list_filter input, div.list_filter select {
1716 width: 130px;
1717 margin-right: 7px;
1718}
1719
1720/* bar */
1721
1722span.bar-outer {
1723 display: inline-block;
1724 margin: 0px 7px;
1725 margin-top: 3px;
1726 background-color: #fff;
1727 border: 1px solid #aaa;
1728 height: 10px;
1729}
1730
1731span.bar-inner {
1732 display: inline-block;
1733 background-color: #bdf;
1734 height: 100%;
1735 margin-bottom: 2px;
1736 float: left;
1737}
1738span.bar-complete {
1739 background-color: #009900;
1740}
1741span.bar-empty {
1742 background-color: #990000;
1743}
1744
1745
1746/* stats */
1747
1748div.stat-wrapper {
1749 margin-bottom: 19px;
1750}
1751
1752div.stat-grid {
1753 border: 2px solid #bbb;
1754 background-color: white;
1755 border-radius: 5px;
1756 -moz-border-radius: 5px;
1757 -webkit-border-radius: 5px;
1758 overflow: hidden;
1759}
1760
1761div.stat-label {
1762 position: relative;
1763 padding: 3px;
1764 text-align: center;
1765}
1766div.stat-label, div.stat-label a {
1767 z-index: 5;
1768}
1769
1770div.stat-item {
1771 position: relative;
1772 border-bottom: 1px solid #ddd;
1773}
1774div.stat-item:last-child {
1775 border-bottom: 0px solid #ddd;
1776}
1777
1778div.stat-bar {
1779 position: absolute;
1780 left: 0px;
1781 background-color: #def;
1782 height: 100%;
1783 z-index: 0;
1784}
1785
1786
1787
1788
1789
1790/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301791 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301792 */
1793h1, h2, h3, h4, h5 {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301794 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301795 font-weight: bold;
1796}
1797
1798body {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301799 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05301800 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301801}
1802
1803span, div, td, input, textarea, button, select {
1804 font-family: inherit;
1805}
1806
1807body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05301808 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301809}
1810
Rushabh Mehta983a1712012-03-21 13:35:34 +05301811.small {
1812 font-size: 11.5px;
1813}
1814
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301815.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301816 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301817 text-align: center;
1818}
1819
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301820.module-icons {
1821 background: url(../images/module-icons.png) no-repeat top left;
1822 width:16px;
1823 height:16px;
1824}
1825
1826.module-icons-accounts{ background-position: 0 0; }
1827.module-icons-analysis{ background-position: 0 -66px; }
1828.module-icons-buying{ background-position: 0 -132px; }
1829.module-icons-home{ background-position: 0 -198px; }
1830.module-icons-hr{ background-position: 0 -264px; }
1831.module-icons-people{ background-position: 0 -330px; }
1832.module-icons-production{ background-position: 0 -396px; }
1833.module-icons-projects{ background-position: 0 -462px; }
1834.module-icons-selling{ background-position: 0 -528px; }
1835.module-icons-setup{ background-position: 0 -594px; }
1836.module-icons-stock{ background-position: 0 -660px; }
1837.module-icons-support{ background-position: 0 -726px; }
Anand Doshic3023be2012-02-20 16:31:55 +05301838
Anand Doshidb628762012-02-24 17:56:00 +05301839.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301840 margin: -3px 0px;
1841 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301842 min-width: 20px;
1843 text-align: center;
1844 display: inline-block;
1845 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301846 color: #999999;
1847 background-color: #333131;
1848}
1849
1850.navbar-new-comments:hover,
1851.navbar-new-comments:active,
1852.navbar-new-comments:focus {
1853 color: #fff;
1854}
1855
1856
1857.navbar-new-comments-true {
1858 color: #fff;
1859 background-color: #B00D07;
1860}
1861
1862.navbar-icon-home {
1863 vertical-align: middle;
1864 opacity:0.4;
1865 Filter:alpha(opacity=40); /* For IE8 and earlier */
1866}
1867
1868.navbar-icon-home:hover,
1869.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05301870.navbar-icon-home:active,
1871.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301872 opacity:1;
1873 Filter:alpha(opacity=100); /* For IE8 and earlier */
1874}
1875
1876/*extra size menus for recent*/
1877.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1878 min-width: 160px !important;
1879 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301880}
1881
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301882
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301883/*
1884 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301885 */
1886.layout_wrapper {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301887 padding: 20px;
1888}
1889
1890h1 {
1891 margin-bottom: 15px;
1892}
1893
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301894h2 {
1895 margin-bottom: 11px;
1896}
1897
1898h3 {
1899 margin-bottom: 7px;
1900}
1901
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301902p, li {
1903 line-height: 1.6em;
1904}
1905
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301906pre {
1907 background-color: #F8F8F8;
1908 border: 1px solid #CCCCCC;
1909 border-radius: 3px 3px 3px 3px;
1910 font-size: 13px;
1911 line-height: 19px;
1912 overflow: auto;
1913 padding: 6px 10px;
1914 margin-bottom: 9px;
1915}
1916
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301917.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1918 min-width: 180px;
1919}
1920
Rushabh Mehta13531b72012-02-20 12:35:23 +05301921.web-head-section {
1922 margin-bottom: 20px
1923}
1924
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301925.web-main-section {
1926 width: 65%;
1927 float: left;
1928 margin-bottom: 20px;
1929}
1930
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301931.web-side-section {
1932 width: 30%;
1933 float: right;
1934 margin-bottom: 20px;
1935 margin-right: 15px;
1936 color: #606060;
1937 overflow-x: hidden;
1938}
1939
1940.web-page-status {
1941 padding: 7px;
1942 color: #777;
1943 clear: both;
1944 text-align: right;
1945}
1946
1947.web-page-status a,
1948.web-page-status a:hover,
1949.web-page-status a:visited {
1950 padding: 2px;
1951 background-color: #777;
1952 color: #FFF;
1953 text-decoration: none;
1954}
1955
1956.web-page-status a:hover {
1957 background-color: #444;
1958}
1959
1960footer {
1961 color: #777;
1962}
1963
1964.web-footer {
1965 color: inherit;
1966 text-align: center;
1967 margin: 10px;
1968 line-height: 1.7;
1969}
1970
1971.web-footer div, .web-footer a {
1972 font-size: 11px;
1973}
1974
1975.web-footer-menu {
1976 margin-bottom: 7px;
1977}
1978footer a, footer a:visited {
1979 color: #777;
1980}
1981
1982footer a:hover {
1983 background-color: #777;
1984 color: #fff;
1985}
1986
1987.web-footer-menu ul {
1988 list-style: none;
1989 margin: 0px;
1990 padding: 0px;
1991}
1992
1993.web-footer-menu ul li {
1994 display: inline;
1995 padding: 2px 15px;
1996 border-right: 1px solid #999;
1997}
1998
1999.web-footer-menu ul li:last-child {
2000 border-right: 0px solid #777 !important;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302001}