blob: 14ea65bebb1fccc6b4a10c7d7e601ef9225ea45d [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 {
Rushabh Mehta0f0b1f52012-04-11 17:26:03 +0530172 margin: 13px -15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530173 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;
Rushabh Mehta49086492012-04-11 18:02:23 +0530337 box-shadow:1px 1px 8px #444;
338 -moz-box-shadow: 1px 1px 8px #444;
339 -webkit-box-shadow: 1px 1px 8px #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530340
341 border-radius: 5px;
342 -moz-border-radius: 5px;
Rushabh Mehta49086492012-04-11 18:02:23 +0530343 -webkit-border-radius: 5px;
344
345 overflow: hidden;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530346}
347
348div.dialog_head {
349 height: 22px;
350 padding: 4px;
351 background-color: #222;
352 color: #FFF;
353}
354
355div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530356 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530357 border-radius: 5px;
358 -moz-border-radius: 5px;
359 -webkit-border-radius: 5px;
360}
361
362div.dialog_back {
363 position: fixed;
364 display: none;
365 top: 0px;
366 left: 0px;
367 bottom: 0px;
368 right: 0px;
Rushabh Mehta49086492012-04-11 18:02:23 +0530369 background-color: #aaa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530370 opacity: 0.6;
371 z-index: 50;
372 text-align: center;
373}
374
375div.dialog_message {
376 display: none;
377 position: absolute;
378 width: 250px;
379 font-size: 12px;
380 z-index: 91;
381 background-color:#FFF;
382 padding: 12px;
383 border: 1px solid #444;
384}
385
386div.dialog_row {
387 padding: 8px 8px 0px 8px;
388}
389
390div.dialog_row table {
391 width: 100%;
392}
393
394div.dialog_row table td {
395}
396
397div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
398 width: 80%;
399 font-size: 14px;
400}
401
402div.dialog_row table td textarea {
403 width: 80%;
404 height: 200px;
405 font-size: 12px;
406}
407
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530408
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530409/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530410 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530411 */
412/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530413
414h1,
415h2,
416h3,
417h4,
418h5,
419h6 {
420 margin: 0;
421 font-weight: bold;
422 color: #333333;
423 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530424}
425h1 small,
426h2 small,
427h3 small,
428h4 small,
429h5 small,
430h6 small {
431 font-weight: normal;
432 color: #999999;
433}
434h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530435 font-size: 280%;
436 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530437}
438h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530439 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530440}
441h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530442 font-size: 200%;
443 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530444}
445h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530446 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530447}
448h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530449 font-size: 210%;
450 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530451}
452h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530453 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530454}
455h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530456 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530457}
458h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530459 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530460}
461h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530462 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530463}
464h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530465 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530466}
467h6 {
468 font-size: 11px;
469 color: #999999;
470 text-transform: uppercase;
471}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530472
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530473/*
474 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530475 */
476.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530477 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530478 float: right;
479 font-size: 20px;
480 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530481 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530482 color: #000000;
483 text-shadow: 0 1px 0 #ffffff;
484 opacity: 0.2;
485 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530486}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530487.close:hover {
488 color: #000000;
489 text-decoration: none;
490 opacity: 0.4;
491 filter: alpha(opacity=40);
492 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530493}
494.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530495 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530496 padding: 4px 10px 4px;
497 font-size: 13px;
498 line-height: 18px;
499 color: #333333;
500 text-align: center;
501 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
502 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530503 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
504 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
505 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
506 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
507 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
508 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530509 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530510 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530511 border: 1px solid #ccc;
512 border-bottom-color: #bbb;
513 -webkit-border-radius: 4px;
514 -moz-border-radius: 4px;
515 border-radius: 4px;
516 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
517 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
518 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 +0530519 cursor: pointer;
520 *margin-left: .3em;
521}
522.btn:first-child {
523 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530524}
525.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530526 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530527 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530528 background-color: #e6e6e6;
529 background-position: 0 -15px;
530 -webkit-transition: background-position 0.1s linear;
531 -moz-transition: background-position 0.1s linear;
532 -ms-transition: background-position 0.1s linear;
533 -o-transition: background-position 0.1s linear;
534 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530535}
536.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530537 outline: thin dotted;
538 outline: 5px auto -webkit-focus-ring-color;
539 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530540}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530541.btn.active, .btn:active {
542 background-image: none;
543 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
544 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
545 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
546 background-color: #e6e6e6;
547 background-color: #d9d9d9 \9;
548 color: rgba(0, 0, 0, 0.5);
549 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530550}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530551.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530552 cursor: default;
553 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530554 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530555 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530556 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530557 -webkit-box-shadow: none;
558 -moz-box-shadow: none;
559 box-shadow: none;
560}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530561.btn-large {
562 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530563 font-size: 15px;
564 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530565 -webkit-border-radius: 5px;
566 -moz-border-radius: 5px;
567 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530568}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530569.btn-large .icon {
570 margin-top: 1px;
571}
572.btn-small {
573 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530574 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530575 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530576}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530577.btn-small .icon {
578 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530579}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530580.btn-primary,
581.btn-primary:hover,
582.btn-warning,
583.btn-warning:hover,
584.btn-danger,
585.btn-danger:hover,
586.btn-success,
587.btn-success:hover,
588.btn-info,
589.btn-info:hover {
590 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
591 color: #ffffff;
592}
593.btn-primary.active,
594.btn-warning.active,
595.btn-danger.active,
596.btn-success.active,
597.btn-info.active {
598 color: rgba(255, 255, 255, 0.75);
599}
600.btn-primary {
601 background-color: #006dcc;
602 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
603 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
604 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
605 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
606 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
607 background-image: linear-gradient(top, #0088cc, #0044cc);
608 background-repeat: repeat-x;
609 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
610 border-color: #0044cc #0044cc #002a80;
611 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
612 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
613}
614.btn-primary:hover,
615.btn-primary:active,
616.btn-primary.active,
617.btn-primary.disabled,
618.btn-primary[disabled] {
619 background-color: #0044cc;
620}
621.btn-primary:active, .btn-primary.active {
622 background-color: #003399 \9;
623}
624.btn-warning {
625 background-color: #faa732;
626 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
627 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
628 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
629 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
630 background-image: -o-linear-gradient(top, #fbb450, #f89406);
631 background-image: linear-gradient(top, #fbb450, #f89406);
632 background-repeat: repeat-x;
633 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
634 border-color: #f89406 #f89406 #ad6704;
635 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
636 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
637}
638.btn-warning:hover,
639.btn-warning:active,
640.btn-warning.active,
641.btn-warning.disabled,
642.btn-warning[disabled] {
643 background-color: #f89406;
644}
645.btn-warning:active, .btn-warning.active {
646 background-color: #c67605 \9;
647}
648.btn-danger {
649 background-color: #da4f49;
650 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
651 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
652 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
653 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
654 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
655 background-image: linear-gradient(top, #ee5f5b, #bd362f);
656 background-repeat: repeat-x;
657 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
658 border-color: #bd362f #bd362f #802420;
659 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
660 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
661}
662.btn-danger:hover,
663.btn-danger:active,
664.btn-danger.active,
665.btn-danger.disabled,
666.btn-danger[disabled] {
667 background-color: #bd362f;
668}
669.btn-danger:active, .btn-danger.active {
670 background-color: #942a25 \9;
671}
672.btn-success {
673 background-color: #5bb75b;
674 background-image: -moz-linear-gradient(top, #62c462, #51a351);
675 background-image: -ms-linear-gradient(top, #62c462, #51a351);
676 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
677 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
678 background-image: -o-linear-gradient(top, #62c462, #51a351);
679 background-image: linear-gradient(top, #62c462, #51a351);
680 background-repeat: repeat-x;
681 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
682 border-color: #51a351 #51a351 #387038;
683 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
684 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
685}
686.btn-success:hover,
687.btn-success:active,
688.btn-success.active,
689.btn-success.disabled,
690.btn-success[disabled] {
691 background-color: #51a351;
692}
693.btn-success:active, .btn-success.active {
694 background-color: #408140 \9;
695}
696.btn-info {
697 background-color: #49afcd;
698 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
699 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
700 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
701 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
702 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
703 background-image: linear-gradient(top, #5bc0de, #2f96b4);
704 background-repeat: repeat-x;
705 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
706 border-color: #2f96b4 #2f96b4 #1f6377;
707 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
708 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
709}
710.btn-info:hover,
711.btn-info:active,
712.btn-info.active,
713.btn-info.disabled,
714.btn-info[disabled] {
715 background-color: #2f96b4;
716}
717.btn-info:active, .btn-info.active {
718 background-color: #24748c \9;
719}
720button.btn, input[type="submit"].btn {
721 *padding-top: 2px;
722 *padding-bottom: 2px;
723}
724button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530725 padding: 0;
726 border: 0;
727}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530728button.btn.large, input[type="submit"].btn.large {
729 *padding-top: 7px;
730 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530731}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530732button.btn.small, input[type="submit"].btn.small {
733 *padding-top: 3px;
734 *padding-bottom: 3px;
735}
736.btn-group {
737 position: relative;
738 *zoom: 1;
739 *margin-left: .3em;
740}
741.btn-group:before, .btn-group:after {
742 display: table;
743 content: "";
744}
745.btn-group:after {
746 clear: both;
747}
748.btn-group:first-child {
749 *margin-left: 0;
750}
751.btn-group + .btn-group {
752 margin-left: 5px;
753}
754.btn-toolbar {
755 margin-top: 9px;
756 margin-bottom: 9px;
757}
758.btn-toolbar .btn-group {
759 display: inline-block;
760 *display: inline;
761 /* IE7 inline-block hack */
762
763 *zoom: 1;
764}
765.btn-group .btn {
766 position: relative;
767 float: left;
768 margin-left: -1px;
769 -webkit-border-radius: 0;
770 -moz-border-radius: 0;
771 border-radius: 0;
772}
773.btn-group .btn:first-child {
774 margin-left: 0;
775 -webkit-border-top-left-radius: 4px;
776 -moz-border-radius-topleft: 4px;
777 border-top-left-radius: 4px;
778 -webkit-border-bottom-left-radius: 4px;
779 -moz-border-radius-bottomleft: 4px;
780 border-bottom-left-radius: 4px;
781}
782.btn-group .btn:last-child, .btn-group .dropdown-toggle {
783 -webkit-border-top-right-radius: 4px;
784 -moz-border-radius-topright: 4px;
785 border-top-right-radius: 4px;
786 -webkit-border-bottom-right-radius: 4px;
787 -moz-border-radius-bottomright: 4px;
788 border-bottom-right-radius: 4px;
789}
790.btn-group .btn.large:first-child {
791 margin-left: 0;
792 -webkit-border-top-left-radius: 6px;
793 -moz-border-radius-topleft: 6px;
794 border-top-left-radius: 6px;
795 -webkit-border-bottom-left-radius: 6px;
796 -moz-border-radius-bottomleft: 6px;
797 border-bottom-left-radius: 6px;
798}
799.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
800 -webkit-border-top-right-radius: 6px;
801 -moz-border-radius-topright: 6px;
802 border-top-right-radius: 6px;
803 -webkit-border-bottom-right-radius: 6px;
804 -moz-border-radius-bottomright: 6px;
805 border-bottom-right-radius: 6px;
806}
807.btn-group .btn:hover,
808.btn-group .btn:focus,
809.btn-group .btn:active,
810.btn-group .btn.active {
811 z-index: 2;
812}
813.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
814 outline: 0;
815}
816.btn-group .dropdown-toggle {
817 padding-left: 8px;
818 padding-right: 8px;
819 -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);
820 -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);
821 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);
822 *padding-top: 5px;
823 *padding-bottom: 5px;
824}
825.btn-group.open {
826 *z-index: 1000;
827}
828.btn-group.open .dropdown-menu {
829 display: block;
830 margin-top: 1px;
831 -webkit-border-radius: 5px;
832 -moz-border-radius: 5px;
833 border-radius: 5px;
834}
835.btn-group.open .dropdown-toggle {
836 background-image: none;
837 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
838 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
839 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
840}
841.btn .caret {
842 margin-top: 7px;
843 margin-left: 0;
844}
845.btn:hover .caret, .open.btn-group .caret {
846 opacity: 1;
847 filter: alpha(opacity=100);
848}
849.btn-primary .caret,
850.btn-danger .caret,
851.btn-info .caret,
852.btn-success .caret {
853 border-top-color: #ffffff;
854 opacity: 0.75;
855 filter: alpha(opacity=75);
856}
857.btn-small .caret {
858 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530859}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530860
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530861/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530862 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530863 */
864.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530865 margin-left: 0;
866 margin-bottom: 18px;
867 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530868}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530869.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530870 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530871}
872.nav > li > a:hover {
873 text-decoration: none;
874 background-color: #eeeeee;
875}
876.nav-list {
877 padding-left: 14px;
878 padding-right: 14px;
879 margin-bottom: 0;
880}
881.nav-list > li > a, .nav-list .nav-header {
882 display: block;
883 padding: 3px 15px;
884 margin-left: -15px;
885 margin-right: -15px;
886 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
887}
888.nav-list .nav-header {
889 font-size: 11px;
890 font-weight: bold;
891 line-height: 18px;
892 color: #999999;
893 text-transform: uppercase;
894}
895.nav-list > li + .nav-header {
896 margin-top: 9px;
897}
898.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530899 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530900 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
901 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530902}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530903.nav-list [class^="icon-"] {
904 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530905}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530906.nav-tabs, .nav-pills {
907 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530908}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530909.nav-tabs:before,
910.nav-pills:before,
911.nav-tabs:after,
912.nav-pills:after {
913 display: table;
914 content: "";
915}
916.nav-tabs:after, .nav-pills:after {
917 clear: both;
918}
919.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530920 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530921}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530922.nav-tabs > li > a, .nav-pills > li > a {
923 padding-right: 12px;
924 padding-left: 12px;
925 margin-right: 2px;
926 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530927}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530928.nav-tabs {
929 border-bottom: 1px solid #ddd;
930}
931.nav-tabs > li {
932 margin-bottom: -1px;
933}
934.nav-tabs > li > a {
935 padding-top: 9px;
936 padding-bottom: 9px;
937 border: 1px solid transparent;
938 -webkit-border-radius: 4px 4px 0 0;
939 -moz-border-radius: 4px 4px 0 0;
940 border-radius: 4px 4px 0 0;
941}
942.nav-tabs > li > a:hover {
943 border-color: #eeeeee #eeeeee #dddddd;
944}
945.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
946 color: #555555;
947 background-color: #ffffff;
948 border: 1px solid #ddd;
949 border-bottom-color: transparent;
950 cursor: default;
951}
952.nav-pills > li > a {
953 padding-top: 8px;
954 padding-bottom: 8px;
955 margin-top: 2px;
956 margin-bottom: 2px;
957 -webkit-border-radius: 5px;
958 -moz-border-radius: 5px;
959 border-radius: 5px;
960}
961.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530962 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530963 background-color: #0088cc;
964}
965.nav-stacked > li {
966 float: none;
967}
968.nav-stacked > li > a {
969 margin-right: 0;
970}
971.nav-tabs.nav-stacked {
972 border-bottom: 0;
973}
974.nav-tabs.nav-stacked > li > a {
975 border: 1px solid #ddd;
976 -webkit-border-radius: 0;
977 -moz-border-radius: 0;
978 border-radius: 0;
979}
980.nav-tabs.nav-stacked > li:first-child > a {
981 -webkit-border-radius: 4px 4px 0 0;
982 -moz-border-radius: 4px 4px 0 0;
983 border-radius: 4px 4px 0 0;
984}
985.nav-tabs.nav-stacked > li:last-child > a {
986 -webkit-border-radius: 0 0 4px 4px;
987 -moz-border-radius: 0 0 4px 4px;
988 border-radius: 0 0 4px 4px;
989}
990.nav-tabs.nav-stacked > li > a:hover {
991 border-color: #ddd;
992 z-index: 2;
993}
994.nav-pills.nav-stacked > li > a {
995 margin-bottom: 3px;
996}
997.nav-pills.nav-stacked > li:last-child > a {
998 margin-bottom: 1px;
999}
1000.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1001 margin-top: 1px;
1002 border-width: 1px;
1003}
1004.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301005 -webkit-border-radius: 4px;
1006 -moz-border-radius: 4px;
1007 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301008}
1009.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1010 border-top-color: #0088cc;
1011 margin-top: 6px;
1012}
1013.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1014 border-top-color: #005580;
1015}
1016.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1017 border-top-color: #333333;
1018}
1019.nav > .dropdown.active > a:hover {
1020 color: #000000;
1021 cursor: pointer;
1022}
1023.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1024 color: #ffffff;
1025 background-color: #999999;
1026 border-color: #999999;
1027}
1028.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1029 border-top-color: #ffffff;
1030 opacity: 1;
1031 filter: alpha(opacity=100);
1032}
1033
1034.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301035 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301036 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301037}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301038.navbar-inner {
1039 padding-left: 20px;
1040 padding-right: 20px;
1041 background-color: #2c2c2c;
1042 background-image: -moz-linear-gradient(top, #333333, #222222);
1043 background-image: -ms-linear-gradient(top, #333333, #222222);
1044 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1045 background-image: -webkit-linear-gradient(top, #333333, #222222);
1046 background-image: -o-linear-gradient(top, #333333, #222222);
1047 background-image: linear-gradient(top, #333333, #222222);
1048 background-repeat: repeat-x;
1049 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1050 -webkit-border-radius: 4px;
1051 -moz-border-radius: 4px;
1052 border-radius: 4px;
1053 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1054 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1055 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1056}
1057.btn-navbar {
1058 display: none;
1059 float: right;
1060 padding: 7px 10px;
1061 margin-left: 5px;
1062 margin-right: 5px;
1063 background-color: #2c2c2c;
1064 background-image: -moz-linear-gradient(top, #333333, #222222);
1065 background-image: -ms-linear-gradient(top, #333333, #222222);
1066 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1067 background-image: -webkit-linear-gradient(top, #333333, #222222);
1068 background-image: -o-linear-gradient(top, #333333, #222222);
1069 background-image: linear-gradient(top, #333333, #222222);
1070 background-repeat: repeat-x;
1071 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1072 border-color: #222222 #222222 #000000;
1073 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1074 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1075 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1076 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1077 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1078}
1079.btn-navbar:hover,
1080.btn-navbar:active,
1081.btn-navbar.active,
1082.btn-navbar.disabled,
1083.btn-navbar[disabled] {
1084 background-color: #222222;
1085}
1086.btn-navbar:active, .btn-navbar.active {
1087 background-color: #080808 \9;
1088}
1089.btn-navbar .icon-bar {
1090 display: block;
1091 width: 18px;
1092 height: 2px;
1093 background-color: #f5f5f5;
1094 -webkit-border-radius: 1px;
1095 -moz-border-radius: 1px;
1096 border-radius: 1px;
1097 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1098 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1099 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1100}
1101.btn-navbar .icon-bar + .icon-bar {
1102 margin-top: 3px;
1103}
1104.nav-collapse.collapse {
1105 height: auto;
1106}
1107.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301108 text-decoration: none;
1109}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301110.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301111 float: left;
1112 display: block;
1113 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301114 font-size: 20px;
1115 font-weight: 200;
1116 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301117 color: #ffffff;
1118}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301119.navbar .navbar-text {
1120 margin-bottom: 0;
1121 line-height: 40px;
1122 color: #999999;
1123}
1124.navbar .navbar-text a:hover {
1125 color: #ffffff;
1126 background-color: transparent;
1127}
1128.navbar .btn, .navbar .btn-group {
1129 margin-top: 5px;
1130}
1131.navbar .btn-group .btn {
1132 margin-top: 0;
1133}
1134.navbar-form {
1135 margin-bottom: 0;
1136 *zoom: 1;
1137}
1138.navbar-form:before, .navbar-form:after {
1139 display: table;
1140 content: "";
1141}
1142.navbar-form:after {
1143 clear: both;
1144}
1145.navbar-form input, .navbar-form select {
1146 display: inline-block;
1147 margin-top: 5px;
1148 margin-bottom: 0;
1149}
1150.navbar-form .radio, .navbar-form .checkbox {
1151 margin-top: 5px;
1152}
1153.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1154 margin-top: 3px;
1155}
1156.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301157 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301158 float: left;
1159 margin-top: 6px;
1160 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301161}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301162.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301163 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301164 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1165 font-size: 13px;
1166 font-weight: normal;
1167 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301168 color: #ffffff;
1169 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301170 background: #666;
1171 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301172 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301173 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1174 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1175 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 +05301176 -webkit-transition: none;
1177 -moz-transition: none;
1178 -ms-transition: none;
1179 -o-transition: none;
1180 transition: none;
1181}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301182.navbar-search .search-query :-moz-placeholder {
1183 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301184}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301185.navbar-search .search-query::-webkit-input-placeholder {
1186 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301187}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301188.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301189 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301190 background-color: #999999;
1191 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301192}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301193.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301194 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301195 color: #333333;
1196 text-shadow: 0 1px 0 #ffffff;
1197 background-color: #ffffff;
1198 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301199 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1200 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1201 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301202 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301203}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301204.navbar-fixed-top {
1205 position: fixed;
1206 top: 0;
1207 right: 0;
1208 left: 0;
1209 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301210}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301211.navbar-fixed-top .navbar-inner {
1212 padding-left: 0;
1213 padding-right: 0;
1214 -webkit-border-radius: 0;
1215 -moz-border-radius: 0;
1216 border-radius: 0;
1217}
1218.navbar .nav {
1219 position: relative;
1220 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301221 display: block;
1222 float: left;
1223 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301224}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301225.navbar .nav.pull-right {
1226 float: right;
1227}
1228.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301229 display: block;
1230 float: left;
1231}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301232.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301233 float: none;
1234 padding: 10px 10px 11px;
1235 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301236 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301237 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301238 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301239}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301240.navbar .nav > li > a:hover {
1241 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301242 color: #ffffff;
1243 text-decoration: none;
1244}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301245.navbar .nav .active > a, .navbar .nav .active > a:hover {
1246 color: #ffffff;
1247 text-decoration: none;
1248 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301249 background-color: rgba(0, 0, 0, 0.5);
1250}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301251.navbar .divider-vertical {
1252 height: 40px;
1253 width: 1px;
1254 margin: 0 9px;
1255 overflow: hidden;
1256 background-color: #222222;
1257 border-right: 1px solid #333333;
1258}
1259.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301260 margin-left: 10px;
1261 margin-right: 0;
1262}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301263.navbar .dropdown-menu {
1264 margin-top: 1px;
1265 -webkit-border-radius: 4px;
1266 -moz-border-radius: 4px;
1267 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301268}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301269.navbar .dropdown-menu:before {
1270 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301271 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301272 border-left: 7px solid transparent;
1273 border-right: 7px solid transparent;
1274 border-bottom: 7px solid #ccc;
1275 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301276 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301277 top: -7px;
1278 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301279}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301280.navbar .dropdown-menu:after {
1281 content: '';
1282 display: inline-block;
1283 border-left: 6px solid transparent;
1284 border-right: 6px solid transparent;
1285 border-bottom: 6px solid #ffffff;
1286 position: absolute;
1287 top: -6px;
1288 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301289}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301290.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1291 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301292}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301293.navbar .nav .active .caret {
1294 opacity: 1;
1295 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301296}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301297.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1298 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301299}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301300.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301301 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301302}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301303.navbar .nav.pull-right .dropdown-menu {
1304 left: auto;
1305 right: 0;
1306}
1307.navbar .nav.pull-right .dropdown-menu:before {
1308 left: auto;
1309 right: 12px;
1310}
1311.navbar .nav.pull-right .dropdown-menu:after {
1312 left: auto;
1313 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301314}
1315
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301316/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301317.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301318 display: block;
1319 float: right;
1320 width: 20px;
1321 margin-bottom: -5px;
1322 margin-top: 10px;
1323 visibility: hidden;
1324}
1325
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301326.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301327 padding: 0px 20px;
1328}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301329
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301330
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301331/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301332 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301333 */
1334.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301335 position: relative;
1336}
1337.dropdown-toggle {
1338 *margin-bottom: -3px;
1339}
1340.dropdown-toggle:active, .open .dropdown-toggle {
1341 outline: 0;
1342}
1343.caret {
1344 display: inline-block;
1345 width: 0;
1346 height: 0;
1347 text-indent: -99999px;
1348 *text-indent: 0;
1349 vertical-align: top;
1350 border-left: 4px solid transparent;
1351 border-right: 4px solid transparent;
1352 border-top: 4px solid #000000;
1353 opacity: 0.3;
1354 filter: alpha(opacity=30);
1355 content: "\2193";
1356}
1357.dropdown .caret {
1358 margin-top: 8px;
1359 margin-left: 2px;
1360}
1361.dropdown:hover .caret, .open.dropdown .caret {
1362 opacity: 1;
1363 filter: alpha(opacity=100);
1364}
1365.dropdown-menu {
1366 position: absolute;
1367 top: 100%;
1368 left: 0;
1369 z-index: 1000;
1370 float: left;
1371 display: none;
1372 min-width: 160px;
1373 max-width: 220px;
1374 _width: 160px;
1375 padding: 4px 0;
1376 margin: 0;
1377 list-style: none;
1378 background-color: #ffffff;
1379 border-color: #ccc;
1380 border-color: rgba(0, 0, 0, 0.2);
1381 border-style: solid;
1382 border-width: 1px;
1383 -webkit-border-radius: 0 0 5px 5px;
1384 -moz-border-radius: 0 0 5px 5px;
1385 border-radius: 0 0 5px 5px;
1386 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1387 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1388 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1389 -webkit-background-clip: padding-box;
1390 -moz-background-clip: padding;
1391 background-clip: padding-box;
1392 *border-right-width: 2px;
1393 *border-bottom-width: 2px;
1394}
1395.dropdown-menu.bottom-up {
1396 top: auto;
1397 bottom: 100%;
1398 margin-bottom: 2px;
1399}
1400.dropdown-menu .divider {
1401 height: 1px;
1402 margin: 5px 1px;
1403 overflow: hidden;
1404 background-color: #e5e5e5;
1405 border-bottom: 1px solid #ffffff;
1406 *width: 100%;
1407 *margin: -5px 0 5px;
1408}
1409.dropdown-menu a {
1410 display: block;
1411 padding: 3px 15px;
1412 clear: both;
1413 font-weight: normal;
1414 line-height: 18px;
1415 color: #555555;
1416 white-space: nowrap;
1417}
1418.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1419 color: #ffffff;
1420 text-decoration: none;
1421 background-color: #0088cc;
1422}
1423.dropdown.open {
1424 *z-index: 1000;
1425}
1426.dropdown.open .dropdown-toggle {
1427 color: #ffffff;
1428 background: #ccc;
1429 background: rgba(0, 0, 0, 0.3);
1430}
1431.dropdown.open .dropdown-menu {
1432 display: block;
1433}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301434
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301435/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301436 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301437 */
1438.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301439 position: absolute;
1440 z-index: 1020;
1441 display: block;
1442 visibility: visible;
1443 padding: 5px;
1444 font-size: 11px;
1445 opacity: 0;
1446 filter: alpha(opacity=0);
1447}
1448.tooltip.in {
1449 opacity: 0.8;
1450 filter: alpha(opacity=80);
1451}
1452.tooltip.top {
1453 margin-top: -2px;
1454}
1455.tooltip.right {
1456 margin-left: 2px;
1457}
1458.tooltip.bottom {
1459 margin-top: 2px;
1460}
1461.tooltip.left {
1462 margin-left: -2px;
1463}
1464.tooltip.top .tooltip-arrow {
1465 bottom: 0;
1466 left: 50%;
1467 margin-left: -5px;
1468 border-left: 5px solid transparent;
1469 border-right: 5px solid transparent;
1470 border-top: 5px solid #000000;
1471}
1472.tooltip.left .tooltip-arrow {
1473 top: 50%;
1474 right: 0;
1475 margin-top: -5px;
1476 border-top: 5px solid transparent;
1477 border-bottom: 5px solid transparent;
1478 border-left: 5px solid #000000;
1479}
1480.tooltip.bottom .tooltip-arrow {
1481 top: 0;
1482 left: 50%;
1483 margin-left: -5px;
1484 border-left: 5px solid transparent;
1485 border-right: 5px solid transparent;
1486 border-bottom: 5px solid #000000;
1487}
1488.tooltip.right .tooltip-arrow {
1489 top: 50%;
1490 left: 0;
1491 margin-top: -5px;
1492 border-top: 5px solid transparent;
1493 border-bottom: 5px solid transparent;
1494 border-right: 5px solid #000000;
1495}
1496.tooltip-inner {
1497 max-width: 200px;
1498 padding: 3px 8px;
1499 color: #ffffff;
1500 text-align: center;
1501 text-decoration: none;
1502 background-color: #000000;
1503 -webkit-border-radius: 4px;
1504 -moz-border-radius: 4px;
1505 border-radius: 4px;
1506}
1507.tooltip-arrow {
1508 position: absolute;
1509 width: 0;
1510 height: 0;
1511}
1512.popover {
1513 position: absolute;
1514 top: 0;
1515 left: 0;
1516 z-index: 1010;
1517 display: none;
1518 padding: 5px;
1519}
1520.popover.top {
1521 margin-top: -5px;
1522}
1523.popover.right {
1524 margin-left: 5px;
1525}
1526.popover.bottom {
1527 margin-top: 5px;
1528}
1529.popover.left {
1530 margin-left: -5px;
1531}
1532.popover.top .arrow {
1533 bottom: 0;
1534 left: 50%;
1535 margin-left: -5px;
1536 border-left: 5px solid transparent;
1537 border-right: 5px solid transparent;
1538 border-top: 5px solid #000000;
1539}
1540.popover.right .arrow {
1541 top: 50%;
1542 left: 0;
1543 margin-top: -5px;
1544 border-top: 5px solid transparent;
1545 border-bottom: 5px solid transparent;
1546 border-right: 5px solid #000000;
1547}
1548.popover.bottom .arrow {
1549 top: 0;
1550 left: 50%;
1551 margin-left: -5px;
1552 border-left: 5px solid transparent;
1553 border-right: 5px solid transparent;
1554 border-bottom: 5px solid #000000;
1555}
1556.popover.left .arrow {
1557 top: 50%;
1558 right: 0;
1559 margin-top: -5px;
1560 border-top: 5px solid transparent;
1561 border-bottom: 5px solid transparent;
1562 border-left: 5px solid #000000;
1563}
1564.popover .arrow {
1565 position: absolute;
1566 width: 0;
1567 height: 0;
1568}
1569.popover-inner {
1570 padding: 3px;
1571 width: 280px;
1572 overflow: hidden;
1573 background: #000000;
1574 background: rgba(0, 0, 0, 0.8);
1575 -webkit-border-radius: 6px;
1576 -moz-border-radius: 6px;
1577 border-radius: 6px;
1578 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1579 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1580 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1581}
1582.popover-title {
1583 padding: 9px 15px;
1584 line-height: 1;
1585 background-color: #f5f5f5;
1586 border-bottom: 1px solid #eee;
1587 -webkit-border-radius: 3px 3px 0 0;
1588 -moz-border-radius: 3px 3px 0 0;
1589 border-radius: 3px 3px 0 0;
1590}
1591.popover-content {
1592 padding: 14px;
1593 background-color: #ffffff;
1594 -webkit-border-radius: 0 0 3px 3px;
1595 -moz-border-radius: 0 0 3px 3px;
1596 border-radius: 0 0 3px 3px;
1597 -webkit-background-clip: padding-box;
1598 -moz-background-clip: padding-box;
1599 background-clip: padding-box;
1600}
1601.popover-content p, .popover-content ul, .popover-content ol {
1602 margin-bottom: 0;
1603}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301604
Rushabh Mehtad0251332012-02-21 17:26:50 +05301605/*
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301606 * lib/css/ui/fonts.css
1607 */
1608@font-face {
1609 font-family: 'Pontano Sans';
1610 font-style: normal;
1611 font-weight: 800;
1612 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1613}
1614
1615@font-face {
1616 font-family: 'Droid Sans';
1617 font-style: normal;
1618 font-weight: normal;
1619 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1620}
1621
1622@font-face {
1623 font-family: 'PT Sans';
1624 font-style: normal;
1625 font-weight: normal;
1626 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1627}
1628
1629@font-face {
1630 font-family: 'Open Sans';
1631 font-style: normal;
1632 font-weight: 400;
1633 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1634}
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301635
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301636@font-face {
1637 font-family: 'Lato';
1638 font-style: normal;
1639 font-weight: 400;
1640 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1641}
1642
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301643@font-face {
1644 font-family: 'Cabin';
1645 font-style: normal;
1646 font-weight: 400;
1647 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
1648}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301649
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +05301650@font-face {
1651 font-family: 'Pacifico';
1652 font-style: normal;
1653 font-weight: normal;
1654 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('../lib/css/fonts/pacifico.woff') format('woff');
1655}
1656
1657
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301658
1659/*
1660 * lib/css/ui/list.css
1661 */
1662.hide {
1663 display: none;
1664}
1665
1666.list-filters {
1667 margin: 7px 0px;
1668}
1669
1670.wnlist .img-load {
1671 display: none;
1672 float: left;
1673 margin-bottom: 8px;
1674}
1675
1676/* list-row */
1677div.list-row {
1678 border-bottom: 1px solid #eee;
1679 padding: 5px 0px;
1680}
1681div.list-row:hover {
1682 background-color: #eef
1683}
1684
1685div.list-row .label {
1686 margin-right: 4px;
1687}
1688
1689div.list-row table {
1690 table-layout: fixed;
1691 border-collapse: collapse;
1692 width: 100%;
1693}
1694
1695div.list-row table td {
1696 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05301697 /*padding-right: 3px;*/
1698 padding: 0px 3px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301699 vertical-align: middle;
1700 height: 24px;
1701 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05301702 word-wrap: break-word;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301703}
1704
1705div.paging-button {
1706 text-align: center;
1707 padding: 11px 0px;
1708}
1709
1710div.show_filters {
1711 display: none;
1712}
1713
1714div.filter_list {
1715 padding: 13px;
1716}
1717
1718div.show_filters.well {
1719 margin-top: 11px;
1720 margin-bottom: 11px;
1721}
1722
1723div.filter_list .run_btn {
1724 text-align: right;
1725}
1726
1727div.filter_list .add_filter {
1728 margin: 3px 0px;
1729}
1730
1731div.list_filter {
1732 margin: 7px 0px;
1733}
1734
1735div.list_filter input, div.list_filter select {
1736 width: 130px;
1737 margin-right: 7px;
1738}
1739
1740/* bar */
1741
1742span.bar-outer {
1743 display: inline-block;
1744 margin: 0px 7px;
1745 margin-top: 3px;
1746 background-color: #fff;
1747 border: 1px solid #aaa;
1748 height: 10px;
1749}
1750
1751span.bar-inner {
1752 display: inline-block;
1753 background-color: #bdf;
1754 height: 100%;
1755 margin-bottom: 2px;
1756 float: left;
1757}
1758span.bar-complete {
1759 background-color: #009900;
1760}
1761span.bar-empty {
1762 background-color: #990000;
1763}
1764
1765
1766/* stats */
1767
1768div.stat-wrapper {
1769 margin-bottom: 19px;
1770}
1771
1772div.stat-grid {
1773 border: 2px solid #bbb;
1774 background-color: white;
1775 border-radius: 5px;
1776 -moz-border-radius: 5px;
1777 -webkit-border-radius: 5px;
1778 overflow: hidden;
1779}
1780
1781div.stat-label {
1782 position: relative;
1783 padding: 3px;
1784 text-align: center;
1785}
1786div.stat-label, div.stat-label a {
1787 z-index: 5;
1788}
1789
1790div.stat-item {
1791 position: relative;
1792 border-bottom: 1px solid #ddd;
1793}
1794div.stat-item:last-child {
1795 border-bottom: 0px solid #ddd;
1796}
1797
1798div.stat-bar {
1799 position: absolute;
1800 left: 0px;
1801 background-color: #def;
1802 height: 100%;
1803 z-index: 0;
1804}
1805
1806
1807
1808
1809
1810/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301811 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301812 */
1813h1, h2, h3, h4, h5 {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301814 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301815 font-weight: normal;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301816 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301817}
1818
1819body {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301820 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05301821 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301822}
1823
1824span, div, td, input, textarea, button, select {
1825 font-family: inherit;
1826}
1827
1828body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05301829 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301830 color: #616161;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301831}
1832
Rushabh Mehta983a1712012-03-21 13:35:34 +05301833.small {
1834 font-size: 11.5px;
1835}
1836
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301837.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301838 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301839 text-align: center;
1840}
1841
Anand Doshidb628762012-02-24 17:56:00 +05301842.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301843 margin: -3px 0px;
1844 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301845 min-width: 20px;
1846 text-align: center;
1847 display: inline-block;
1848 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301849 color: #999999;
1850 background-color: #333131;
1851}
1852
1853.navbar-new-comments:hover,
1854.navbar-new-comments:active,
1855.navbar-new-comments:focus {
1856 color: #fff;
1857}
1858
1859
1860.navbar-new-comments-true {
1861 color: #fff;
1862 background-color: #B00D07;
1863}
1864
1865.navbar-icon-home {
1866 vertical-align: middle;
1867 opacity:0.4;
1868 Filter:alpha(opacity=40); /* For IE8 and earlier */
1869}
1870
1871.navbar-icon-home:hover,
1872.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05301873.navbar-icon-home:active,
1874.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301875 opacity:1;
1876 Filter:alpha(opacity=100); /* For IE8 and earlier */
1877}
1878
1879/*extra size menus for recent*/
1880.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1881 min-width: 160px !important;
1882 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301883}
1884
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301885
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301886/*
1887 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301888 */
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301889div#body_div, header .container, .content, #opened-page-selector, footer {
1890 width: 900px;
1891}
1892
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301893.layout_wrapper {
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301894 padding: 27px;
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301895}
1896
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301897p, li {
1898 line-height: 1.6em;
1899}
1900
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301901pre {
1902 background-color: #F8F8F8;
1903 border: 1px solid #CCCCCC;
1904 border-radius: 3px 3px 3px 3px;
1905 font-size: 13px;
1906 line-height: 19px;
1907 overflow: auto;
1908 padding: 6px 10px;
1909 margin-bottom: 9px;
1910}
1911
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301912.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1913 min-width: 180px;
1914}
1915
Rushabh Mehta13531b72012-02-20 12:35:23 +05301916.web-head-section {
1917 margin-bottom: 20px
1918}
1919
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301920.web-main-section {
1921 width: 65%;
1922 float: left;
1923 margin-bottom: 20px;
1924}
1925
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301926.web-side-section {
1927 width: 30%;
1928 float: right;
1929 margin-bottom: 20px;
1930 margin-right: 15px;
1931 color: #606060;
1932 overflow-x: hidden;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301933 font-size: 90%;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301934}
1935
1936.web-page-status {
1937 padding: 7px;
1938 color: #777;
1939 clear: both;
1940 text-align: right;
1941}
1942
1943.web-page-status a,
1944.web-page-status a:hover,
1945.web-page-status a:visited {
1946 padding: 2px;
1947 background-color: #777;
1948 color: #FFF;
1949 text-decoration: none;
1950}
1951
1952.web-page-status a:hover {
1953 background-color: #444;
1954}
1955
1956footer {
1957 color: #777;
1958}
1959
1960.web-footer {
1961 color: inherit;
1962 text-align: center;
1963 margin: 10px;
1964 line-height: 1.7;
1965}
1966
1967.web-footer div, .web-footer a {
1968 font-size: 11px;
1969}
1970
1971.web-footer-menu {
1972 margin-bottom: 7px;
1973}
1974footer a, footer a:visited {
1975 color: #777;
1976}
1977
1978footer a:hover {
1979 background-color: #777;
1980 color: #fff;
1981}
1982
1983.web-footer-menu ul {
1984 list-style: none;
1985 margin: 0px;
1986 padding: 0px;
1987}
1988
1989.web-footer-menu ul li {
1990 display: inline;
1991 padding: 2px 15px;
1992 border-right: 1px solid #999;
1993}
1994
1995.web-footer-menu ul li:last-child {
1996 border-right: 0px solid #777 !important;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301997}
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301998
1999/* slide view */
2000
2001.next-slide {
2002 margin: 0px -27px 100px -27px;
2003 background: #ffffff; /* Old browsers */
2004 background: -moz-linear-gradient(top, #eeeeee 0%, #fff 100%); /* FF3.6+ */
2005 background: -webkit-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Chrome10+,Safari5.1+ */
2006 background: -o-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Opera 11.10+ */
2007 background: -ms-linear-gradient(top, #eeeeee 0%, #fff 100%); /* IE10+ */
2008 background: linear-gradient(top, #eeeeee 0%, #fff 100%); /* W3C */
2009 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#fff',GradientType=0 ); /* IE6-9 */
2010 height: 36px;
2011}
2012
2013.slide-shadow {
2014 background: #eeeeee; /* Old browsers */
2015 background: -moz-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* FF3.6+ */
2016 background: -webkit-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
2017 background: -o-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Opera 11.10+ */
2018 background: -ms-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* IE10+ */
2019 background: linear-gradient(top, #bababa 0%,#eeeeee 100%); /* W3C */
2020 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bababa', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
2021 height: 3px;
2022 margin: 100px -27px 0px -27px;
2023 border-top: 1px solid #bababa;
2024}
2025
2026.two-column {
2027 width: 40%;
2028 float: left;
2029 padding: 5%;
2030}
2031
2032.clear {
2033 clear: both;
2034}
2035
2036/* */