blob: c1f10d7917d7a4ecf802d1baddb3d70b793c00b1 [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 Mehta850c9282012-04-13 19:04:55 +0530206.layout-wrapper-appframe {
207 padding: 0px;
208}
209
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530210.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530211 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530212 padding: 0px;
213}
214
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530215.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530216 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530217 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530218 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530219 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530220 min-height: 600px;
Rushabh Mehtac2a08182012-04-12 10:18:45 +0530221 -moz-box-shadow: 2px 0px 1px #ddd;
222 -webkit-box-shadow: 2px 0px 1px #ddd;
223 box-shadow: 2px 0px 1px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530224}
225
226.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530227 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530228 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530229 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530230 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530231 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530232 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530233}
234
235/* from bootstrap */
236.container {
237 margin-left: auto;
238 margin-right: auto;
239 zoom: 1;
240}
241.container:before, .container:after {
242 display: table;
243 content: "";
244 zoom: 1;
245}
246.container:after {
247 clear: both;
248}
249
Anand Doshi40ee8d62012-02-24 19:21:47 +0530250.well {
251 min-height: 20px;
252 padding: 19px;
253 margin-bottom: 20px;
254 background-color: #f5f5f5;
255 border: 1px solid #eee;
256 border: 1px solid rgba(0, 0, 0, 0.05);
257 -webkit-border-radius: 4px;
258 -moz-border-radius: 4px;
259 border-radius: 4px;
260 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
261 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
262 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
263}
264
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530265.avatar-small {
266 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530267 width: 24px;
268 height: 20px;
269 vertical-align: middle;
270 overflow: hidden;
271 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530272}
273.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530274 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530275}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530276
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530277/*
278 * lib/css/legacy/messages.css
279 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530280
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530281/* FLOATING MESSAGE */
282
283.btn-img { cursor: pointer; }
284
285div.fetching { color: #888; text-align:right; }
286
287div.notice {
288 postion: absolute;
289 background-color: #000;
290 -moz-border-radius: 5px; -webkit-border-radius: 5px;
291 opacity: 0.6;
292 right: 0;
293 top: 0;
294 margin-top: 8px;
295 z-index: -1;
296 padding: 8px;
297}
298
299/** help **/
300
301.info-box {
302 background-color: #F8F8F8;
303 border: 1px solid #CCCCCC;
304 border-radius: 3px 3px 3px 3px;
305 line-height: 1.6em;
306 overflow: auto;
307 padding: 6px 10px;
308 margin-bottom: 9px;
309}
310
311.help_box, .help-box {
312 background-color:#FFC;
313 font-size: 13px;
314 color: #864;
315 padding: 7px;
316 margin: 11px 0px;
317 border: 1px solid #EEB;
318}
319
320.help_box_big {
321 background-color:#FFC;
322 color: #864;
323 padding: 7px;
324 margin: 7px 0px;
325 border: 1px solid #EEB;
326 text-align: center;
327 font-size: 14px;
328}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530329
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530330/*
331 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530332 */
333/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530334
335div.dialog_wrapper {
336 position: absolute;
337 width: 440px;
338 display: none;
339 z-index: 90;
340 background-color: #FFF;
Rushabh Mehta49086492012-04-11 18:02:23 +0530341 box-shadow:1px 1px 8px #444;
342 -moz-box-shadow: 1px 1px 8px #444;
343 -webkit-box-shadow: 1px 1px 8px #444;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530344
345 border-radius: 5px;
346 -moz-border-radius: 5px;
Rushabh Mehta49086492012-04-11 18:02:23 +0530347 -webkit-border-radius: 5px;
348
349 overflow: hidden;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530350}
351
352div.dialog_head {
353 height: 22px;
354 padding: 4px;
355 background-color: #222;
356 color: #FFF;
357}
358
359div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530360 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530361 border-radius: 5px;
362 -moz-border-radius: 5px;
363 -webkit-border-radius: 5px;
364}
365
366div.dialog_back {
367 position: fixed;
368 display: none;
369 top: 0px;
370 left: 0px;
371 bottom: 0px;
372 right: 0px;
Rushabh Mehta49086492012-04-11 18:02:23 +0530373 background-color: #aaa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530374 opacity: 0.6;
375 z-index: 50;
376 text-align: center;
377}
378
379div.dialog_message {
380 display: none;
381 position: absolute;
382 width: 250px;
383 font-size: 12px;
384 z-index: 91;
385 background-color:#FFF;
386 padding: 12px;
387 border: 1px solid #444;
388}
389
390div.dialog_row {
391 padding: 8px 8px 0px 8px;
392}
393
394div.dialog_row table {
395 width: 100%;
396}
397
398div.dialog_row table td {
399}
400
401div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
402 width: 80%;
403 font-size: 14px;
404}
405
406div.dialog_row table td textarea {
407 width: 80%;
408 height: 200px;
409 font-size: 12px;
410}
411
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530412
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530413/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530414 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530415 */
416/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530417
418h1,
419h2,
420h3,
421h4,
422h5,
423h6 {
424 margin: 0;
425 font-weight: bold;
426 color: #333333;
427 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530428}
429h1 small,
430h2 small,
431h3 small,
432h4 small,
433h5 small,
434h6 small {
435 font-weight: normal;
436 color: #999999;
437}
438h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530439 font-size: 280%;
440 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530441}
442h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530443 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530444}
445h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530446 font-size: 200%;
447 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530448}
449h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530450 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530451}
452h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530453 font-size: 210%;
454 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530455}
456h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530457 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530458}
459h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530460 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530461}
462h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530463 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530464}
465h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530466 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530467}
468h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530469 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530470}
471h6 {
472 font-size: 11px;
473 color: #999999;
474 text-transform: uppercase;
475}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530476
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530477/*
478 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530479 */
480.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530481 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530482 float: right;
483 font-size: 20px;
484 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530485 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530486 color: #000000;
487 text-shadow: 0 1px 0 #ffffff;
488 opacity: 0.2;
489 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530490}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530491.close:hover {
492 color: #000000;
493 text-decoration: none;
494 opacity: 0.4;
495 filter: alpha(opacity=40);
496 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530497}
498.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530499 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530500 padding: 4px 10px 4px;
501 font-size: 13px;
502 line-height: 18px;
503 color: #333333;
504 text-align: center;
505 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
506 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530507 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
508 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
509 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
510 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
511 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
512 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530513 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530514 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530515 border: 1px solid #ccc;
516 border-bottom-color: #bbb;
517 -webkit-border-radius: 4px;
518 -moz-border-radius: 4px;
519 border-radius: 4px;
520 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
521 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
522 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 +0530523 cursor: pointer;
524 *margin-left: .3em;
525}
526.btn:first-child {
527 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530528}
529.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530530 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530531 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530532 background-color: #e6e6e6;
533 background-position: 0 -15px;
534 -webkit-transition: background-position 0.1s linear;
535 -moz-transition: background-position 0.1s linear;
536 -ms-transition: background-position 0.1s linear;
537 -o-transition: background-position 0.1s linear;
538 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530539}
540.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530541 outline: thin dotted;
542 outline: 5px auto -webkit-focus-ring-color;
543 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530544}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530545.btn.active, .btn:active {
546 background-image: none;
547 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
548 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
549 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
550 background-color: #e6e6e6;
551 background-color: #d9d9d9 \9;
552 color: rgba(0, 0, 0, 0.5);
553 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530554}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530555.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530556 cursor: default;
557 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530558 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530559 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530560 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530561 -webkit-box-shadow: none;
562 -moz-box-shadow: none;
563 box-shadow: none;
564}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530565.btn-large {
566 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530567 font-size: 15px;
568 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530569 -webkit-border-radius: 5px;
570 -moz-border-radius: 5px;
571 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530572}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530573.btn-large .icon {
574 margin-top: 1px;
575}
576.btn-small {
577 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530578 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530579 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530580}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530581.btn-small .icon {
582 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530583}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530584.btn-primary,
585.btn-primary:hover,
586.btn-warning,
587.btn-warning:hover,
588.btn-danger,
589.btn-danger:hover,
590.btn-success,
591.btn-success:hover,
592.btn-info,
593.btn-info:hover {
594 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
595 color: #ffffff;
596}
597.btn-primary.active,
598.btn-warning.active,
599.btn-danger.active,
600.btn-success.active,
601.btn-info.active {
602 color: rgba(255, 255, 255, 0.75);
603}
604.btn-primary {
605 background-color: #006dcc;
606 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
607 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
608 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
609 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
610 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
611 background-image: linear-gradient(top, #0088cc, #0044cc);
612 background-repeat: repeat-x;
613 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
614 border-color: #0044cc #0044cc #002a80;
615 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
616 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
617}
618.btn-primary:hover,
619.btn-primary:active,
620.btn-primary.active,
621.btn-primary.disabled,
622.btn-primary[disabled] {
623 background-color: #0044cc;
624}
625.btn-primary:active, .btn-primary.active {
626 background-color: #003399 \9;
627}
628.btn-warning {
629 background-color: #faa732;
630 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
631 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
632 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
633 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
634 background-image: -o-linear-gradient(top, #fbb450, #f89406);
635 background-image: linear-gradient(top, #fbb450, #f89406);
636 background-repeat: repeat-x;
637 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
638 border-color: #f89406 #f89406 #ad6704;
639 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
640 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
641}
642.btn-warning:hover,
643.btn-warning:active,
644.btn-warning.active,
645.btn-warning.disabled,
646.btn-warning[disabled] {
647 background-color: #f89406;
648}
649.btn-warning:active, .btn-warning.active {
650 background-color: #c67605 \9;
651}
652.btn-danger {
653 background-color: #da4f49;
654 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
655 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
656 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
657 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
658 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
659 background-image: linear-gradient(top, #ee5f5b, #bd362f);
660 background-repeat: repeat-x;
661 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
662 border-color: #bd362f #bd362f #802420;
663 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
664 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
665}
666.btn-danger:hover,
667.btn-danger:active,
668.btn-danger.active,
669.btn-danger.disabled,
670.btn-danger[disabled] {
671 background-color: #bd362f;
672}
673.btn-danger:active, .btn-danger.active {
674 background-color: #942a25 \9;
675}
676.btn-success {
677 background-color: #5bb75b;
678 background-image: -moz-linear-gradient(top, #62c462, #51a351);
679 background-image: -ms-linear-gradient(top, #62c462, #51a351);
680 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
681 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
682 background-image: -o-linear-gradient(top, #62c462, #51a351);
683 background-image: linear-gradient(top, #62c462, #51a351);
684 background-repeat: repeat-x;
685 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
686 border-color: #51a351 #51a351 #387038;
687 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
688 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
689}
690.btn-success:hover,
691.btn-success:active,
692.btn-success.active,
693.btn-success.disabled,
694.btn-success[disabled] {
695 background-color: #51a351;
696}
697.btn-success:active, .btn-success.active {
698 background-color: #408140 \9;
699}
700.btn-info {
701 background-color: #49afcd;
702 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
703 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
704 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
705 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
706 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
707 background-image: linear-gradient(top, #5bc0de, #2f96b4);
708 background-repeat: repeat-x;
709 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
710 border-color: #2f96b4 #2f96b4 #1f6377;
711 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
712 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
713}
714.btn-info:hover,
715.btn-info:active,
716.btn-info.active,
717.btn-info.disabled,
718.btn-info[disabled] {
719 background-color: #2f96b4;
720}
721.btn-info:active, .btn-info.active {
722 background-color: #24748c \9;
723}
724button.btn, input[type="submit"].btn {
725 *padding-top: 2px;
726 *padding-bottom: 2px;
727}
728button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530729 padding: 0;
730 border: 0;
731}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530732button.btn.large, input[type="submit"].btn.large {
733 *padding-top: 7px;
734 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530735}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530736button.btn.small, input[type="submit"].btn.small {
737 *padding-top: 3px;
738 *padding-bottom: 3px;
739}
740.btn-group {
741 position: relative;
742 *zoom: 1;
743 *margin-left: .3em;
744}
745.btn-group:before, .btn-group:after {
746 display: table;
747 content: "";
748}
749.btn-group:after {
750 clear: both;
751}
752.btn-group:first-child {
753 *margin-left: 0;
754}
755.btn-group + .btn-group {
756 margin-left: 5px;
757}
758.btn-toolbar {
759 margin-top: 9px;
760 margin-bottom: 9px;
761}
762.btn-toolbar .btn-group {
763 display: inline-block;
764 *display: inline;
765 /* IE7 inline-block hack */
766
767 *zoom: 1;
768}
769.btn-group .btn {
770 position: relative;
771 float: left;
772 margin-left: -1px;
773 -webkit-border-radius: 0;
774 -moz-border-radius: 0;
775 border-radius: 0;
776}
777.btn-group .btn:first-child {
778 margin-left: 0;
779 -webkit-border-top-left-radius: 4px;
780 -moz-border-radius-topleft: 4px;
781 border-top-left-radius: 4px;
782 -webkit-border-bottom-left-radius: 4px;
783 -moz-border-radius-bottomleft: 4px;
784 border-bottom-left-radius: 4px;
785}
786.btn-group .btn:last-child, .btn-group .dropdown-toggle {
787 -webkit-border-top-right-radius: 4px;
788 -moz-border-radius-topright: 4px;
789 border-top-right-radius: 4px;
790 -webkit-border-bottom-right-radius: 4px;
791 -moz-border-radius-bottomright: 4px;
792 border-bottom-right-radius: 4px;
793}
794.btn-group .btn.large:first-child {
795 margin-left: 0;
796 -webkit-border-top-left-radius: 6px;
797 -moz-border-radius-topleft: 6px;
798 border-top-left-radius: 6px;
799 -webkit-border-bottom-left-radius: 6px;
800 -moz-border-radius-bottomleft: 6px;
801 border-bottom-left-radius: 6px;
802}
803.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
804 -webkit-border-top-right-radius: 6px;
805 -moz-border-radius-topright: 6px;
806 border-top-right-radius: 6px;
807 -webkit-border-bottom-right-radius: 6px;
808 -moz-border-radius-bottomright: 6px;
809 border-bottom-right-radius: 6px;
810}
811.btn-group .btn:hover,
812.btn-group .btn:focus,
813.btn-group .btn:active,
814.btn-group .btn.active {
815 z-index: 2;
816}
817.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
818 outline: 0;
819}
820.btn-group .dropdown-toggle {
821 padding-left: 8px;
822 padding-right: 8px;
823 -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);
824 -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);
825 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);
826 *padding-top: 5px;
827 *padding-bottom: 5px;
828}
829.btn-group.open {
830 *z-index: 1000;
831}
832.btn-group.open .dropdown-menu {
833 display: block;
834 margin-top: 1px;
835 -webkit-border-radius: 5px;
836 -moz-border-radius: 5px;
837 border-radius: 5px;
838}
839.btn-group.open .dropdown-toggle {
840 background-image: none;
841 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
842 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
843 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
844}
845.btn .caret {
846 margin-top: 7px;
847 margin-left: 0;
848}
849.btn:hover .caret, .open.btn-group .caret {
850 opacity: 1;
851 filter: alpha(opacity=100);
852}
853.btn-primary .caret,
854.btn-danger .caret,
855.btn-info .caret,
856.btn-success .caret {
857 border-top-color: #ffffff;
858 opacity: 0.75;
859 filter: alpha(opacity=75);
860}
861.btn-small .caret {
862 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530863}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530864
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530865/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530866 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530867 */
868.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530869 margin-left: 0;
870 margin-bottom: 18px;
871 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530872}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530873.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530874 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530875}
876.nav > li > a:hover {
877 text-decoration: none;
878 background-color: #eeeeee;
879}
880.nav-list {
881 padding-left: 14px;
882 padding-right: 14px;
883 margin-bottom: 0;
884}
885.nav-list > li > a, .nav-list .nav-header {
886 display: block;
887 padding: 3px 15px;
888 margin-left: -15px;
889 margin-right: -15px;
890 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
891}
892.nav-list .nav-header {
893 font-size: 11px;
894 font-weight: bold;
895 line-height: 18px;
896 color: #999999;
897 text-transform: uppercase;
898}
899.nav-list > li + .nav-header {
900 margin-top: 9px;
901}
902.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530903 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530904 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
905 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530906}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530907.nav-list [class^="icon-"] {
908 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530909}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530910.nav-tabs, .nav-pills {
911 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530912}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530913.nav-tabs:before,
914.nav-pills:before,
915.nav-tabs:after,
916.nav-pills:after {
917 display: table;
918 content: "";
919}
920.nav-tabs:after, .nav-pills:after {
921 clear: both;
922}
923.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530924 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530925}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530926.nav-tabs > li > a, .nav-pills > li > a {
927 padding-right: 12px;
928 padding-left: 12px;
929 margin-right: 2px;
930 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530931}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530932.nav-tabs {
933 border-bottom: 1px solid #ddd;
934}
935.nav-tabs > li {
936 margin-bottom: -1px;
937}
938.nav-tabs > li > a {
939 padding-top: 9px;
940 padding-bottom: 9px;
941 border: 1px solid transparent;
942 -webkit-border-radius: 4px 4px 0 0;
943 -moz-border-radius: 4px 4px 0 0;
944 border-radius: 4px 4px 0 0;
945}
946.nav-tabs > li > a:hover {
947 border-color: #eeeeee #eeeeee #dddddd;
948}
949.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
950 color: #555555;
951 background-color: #ffffff;
952 border: 1px solid #ddd;
953 border-bottom-color: transparent;
954 cursor: default;
955}
956.nav-pills > li > a {
957 padding-top: 8px;
958 padding-bottom: 8px;
959 margin-top: 2px;
960 margin-bottom: 2px;
961 -webkit-border-radius: 5px;
962 -moz-border-radius: 5px;
963 border-radius: 5px;
964}
965.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530966 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530967 background-color: #0088cc;
968}
969.nav-stacked > li {
970 float: none;
971}
972.nav-stacked > li > a {
973 margin-right: 0;
974}
975.nav-tabs.nav-stacked {
976 border-bottom: 0;
977}
978.nav-tabs.nav-stacked > li > a {
979 border: 1px solid #ddd;
980 -webkit-border-radius: 0;
981 -moz-border-radius: 0;
982 border-radius: 0;
983}
984.nav-tabs.nav-stacked > li:first-child > a {
985 -webkit-border-radius: 4px 4px 0 0;
986 -moz-border-radius: 4px 4px 0 0;
987 border-radius: 4px 4px 0 0;
988}
989.nav-tabs.nav-stacked > li:last-child > a {
990 -webkit-border-radius: 0 0 4px 4px;
991 -moz-border-radius: 0 0 4px 4px;
992 border-radius: 0 0 4px 4px;
993}
994.nav-tabs.nav-stacked > li > a:hover {
995 border-color: #ddd;
996 z-index: 2;
997}
998.nav-pills.nav-stacked > li > a {
999 margin-bottom: 3px;
1000}
1001.nav-pills.nav-stacked > li:last-child > a {
1002 margin-bottom: 1px;
1003}
1004.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
1005 margin-top: 1px;
1006 border-width: 1px;
1007}
1008.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301009 -webkit-border-radius: 4px;
1010 -moz-border-radius: 4px;
1011 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301012}
1013.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1014 border-top-color: #0088cc;
1015 margin-top: 6px;
1016}
1017.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1018 border-top-color: #005580;
1019}
1020.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1021 border-top-color: #333333;
1022}
1023.nav > .dropdown.active > a:hover {
1024 color: #000000;
1025 cursor: pointer;
1026}
1027.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1028 color: #ffffff;
1029 background-color: #999999;
1030 border-color: #999999;
1031}
1032.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1033 border-top-color: #ffffff;
1034 opacity: 1;
1035 filter: alpha(opacity=100);
1036}
1037
1038.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301039 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301040 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301041}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301042.navbar-inner {
1043 padding-left: 20px;
1044 padding-right: 20px;
1045 background-color: #2c2c2c;
1046 background-image: -moz-linear-gradient(top, #333333, #222222);
1047 background-image: -ms-linear-gradient(top, #333333, #222222);
1048 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1049 background-image: -webkit-linear-gradient(top, #333333, #222222);
1050 background-image: -o-linear-gradient(top, #333333, #222222);
1051 background-image: linear-gradient(top, #333333, #222222);
1052 background-repeat: repeat-x;
1053 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1054 -webkit-border-radius: 4px;
1055 -moz-border-radius: 4px;
1056 border-radius: 4px;
1057 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1058 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1059 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1060}
1061.btn-navbar {
1062 display: none;
1063 float: right;
1064 padding: 7px 10px;
1065 margin-left: 5px;
1066 margin-right: 5px;
1067 background-color: #2c2c2c;
1068 background-image: -moz-linear-gradient(top, #333333, #222222);
1069 background-image: -ms-linear-gradient(top, #333333, #222222);
1070 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1071 background-image: -webkit-linear-gradient(top, #333333, #222222);
1072 background-image: -o-linear-gradient(top, #333333, #222222);
1073 background-image: linear-gradient(top, #333333, #222222);
1074 background-repeat: repeat-x;
1075 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1076 border-color: #222222 #222222 #000000;
1077 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1078 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1079 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1080 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1081 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1082}
1083.btn-navbar:hover,
1084.btn-navbar:active,
1085.btn-navbar.active,
1086.btn-navbar.disabled,
1087.btn-navbar[disabled] {
1088 background-color: #222222;
1089}
1090.btn-navbar:active, .btn-navbar.active {
1091 background-color: #080808 \9;
1092}
1093.btn-navbar .icon-bar {
1094 display: block;
1095 width: 18px;
1096 height: 2px;
1097 background-color: #f5f5f5;
1098 -webkit-border-radius: 1px;
1099 -moz-border-radius: 1px;
1100 border-radius: 1px;
1101 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1102 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1103 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1104}
1105.btn-navbar .icon-bar + .icon-bar {
1106 margin-top: 3px;
1107}
1108.nav-collapse.collapse {
1109 height: auto;
1110}
1111.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301112 text-decoration: none;
1113}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301114.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301115 float: left;
1116 display: block;
1117 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301118 font-size: 20px;
1119 font-weight: 200;
1120 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301121 color: #ffffff;
1122}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301123.navbar .navbar-text {
1124 margin-bottom: 0;
1125 line-height: 40px;
1126 color: #999999;
1127}
1128.navbar .navbar-text a:hover {
1129 color: #ffffff;
1130 background-color: transparent;
1131}
1132.navbar .btn, .navbar .btn-group {
1133 margin-top: 5px;
1134}
1135.navbar .btn-group .btn {
1136 margin-top: 0;
1137}
1138.navbar-form {
1139 margin-bottom: 0;
1140 *zoom: 1;
1141}
1142.navbar-form:before, .navbar-form:after {
1143 display: table;
1144 content: "";
1145}
1146.navbar-form:after {
1147 clear: both;
1148}
1149.navbar-form input, .navbar-form select {
1150 display: inline-block;
1151 margin-top: 5px;
1152 margin-bottom: 0;
1153}
1154.navbar-form .radio, .navbar-form .checkbox {
1155 margin-top: 5px;
1156}
1157.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1158 margin-top: 3px;
1159}
1160.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301161 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301162 float: left;
1163 margin-top: 6px;
1164 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301165}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301166.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301167 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301168 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1169 font-size: 13px;
1170 font-weight: normal;
1171 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301172 color: #ffffff;
1173 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301174 background: #666;
1175 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301176 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301177 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1178 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1179 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 +05301180 -webkit-transition: none;
1181 -moz-transition: none;
1182 -ms-transition: none;
1183 -o-transition: none;
1184 transition: none;
1185}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301186.navbar-search .search-query :-moz-placeholder {
1187 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301188}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301189.navbar-search .search-query::-webkit-input-placeholder {
1190 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301191}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301192.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301193 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301194 background-color: #999999;
1195 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301196}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301197.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301198 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301199 color: #333333;
1200 text-shadow: 0 1px 0 #ffffff;
1201 background-color: #ffffff;
1202 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301203 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1204 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1205 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301206 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301207}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301208.navbar-fixed-top {
1209 position: fixed;
1210 top: 0;
1211 right: 0;
1212 left: 0;
1213 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301214}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301215.navbar-fixed-top .navbar-inner {
1216 padding-left: 0;
1217 padding-right: 0;
1218 -webkit-border-radius: 0;
1219 -moz-border-radius: 0;
1220 border-radius: 0;
1221}
1222.navbar .nav {
1223 position: relative;
1224 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301225 display: block;
1226 float: left;
1227 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301228}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301229.navbar .nav.pull-right {
1230 float: right;
1231}
1232.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301233 display: block;
1234 float: left;
1235}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301236.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301237 float: none;
1238 padding: 10px 10px 11px;
1239 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301240 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301241 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301242 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301243}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301244.navbar .nav > li > a:hover {
1245 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301246 color: #ffffff;
1247 text-decoration: none;
1248}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301249.navbar .nav .active > a, .navbar .nav .active > a:hover {
1250 color: #ffffff;
1251 text-decoration: none;
1252 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301253 background-color: rgba(0, 0, 0, 0.5);
1254}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301255.navbar .divider-vertical {
1256 height: 40px;
1257 width: 1px;
1258 margin: 0 9px;
1259 overflow: hidden;
1260 background-color: #222222;
1261 border-right: 1px solid #333333;
1262}
1263.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301264 margin-left: 10px;
1265 margin-right: 0;
1266}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301267.navbar .dropdown-menu {
1268 margin-top: 1px;
1269 -webkit-border-radius: 4px;
1270 -moz-border-radius: 4px;
1271 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301272}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301273.navbar .dropdown-menu:before {
1274 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301275 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301276 border-left: 7px solid transparent;
1277 border-right: 7px solid transparent;
1278 border-bottom: 7px solid #ccc;
1279 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301280 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301281 top: -7px;
1282 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301283}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301284.navbar .dropdown-menu:after {
1285 content: '';
1286 display: inline-block;
1287 border-left: 6px solid transparent;
1288 border-right: 6px solid transparent;
1289 border-bottom: 6px solid #ffffff;
1290 position: absolute;
1291 top: -6px;
1292 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301293}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301294.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1295 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301296}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301297.navbar .nav .active .caret {
1298 opacity: 1;
1299 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301300}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301301.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1302 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301303}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301304.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301305 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301306}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301307.navbar .nav.pull-right .dropdown-menu {
1308 left: auto;
1309 right: 0;
1310}
1311.navbar .nav.pull-right .dropdown-menu:before {
1312 left: auto;
1313 right: 12px;
1314}
1315.navbar .nav.pull-right .dropdown-menu:after {
1316 left: auto;
1317 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301318}
1319
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301320/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301321.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301322 display: block;
1323 float: right;
1324 width: 20px;
1325 margin-bottom: -5px;
1326 margin-top: 10px;
1327 visibility: hidden;
1328}
1329
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301330.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301331 padding: 0px 20px;
1332}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301333
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301334
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301335/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301336 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301337 */
1338.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301339 position: relative;
1340}
1341.dropdown-toggle {
1342 *margin-bottom: -3px;
1343}
1344.dropdown-toggle:active, .open .dropdown-toggle {
1345 outline: 0;
1346}
1347.caret {
1348 display: inline-block;
1349 width: 0;
1350 height: 0;
1351 text-indent: -99999px;
1352 *text-indent: 0;
1353 vertical-align: top;
1354 border-left: 4px solid transparent;
1355 border-right: 4px solid transparent;
1356 border-top: 4px solid #000000;
1357 opacity: 0.3;
1358 filter: alpha(opacity=30);
1359 content: "\2193";
1360}
1361.dropdown .caret {
1362 margin-top: 8px;
1363 margin-left: 2px;
1364}
1365.dropdown:hover .caret, .open.dropdown .caret {
1366 opacity: 1;
1367 filter: alpha(opacity=100);
1368}
1369.dropdown-menu {
1370 position: absolute;
1371 top: 100%;
1372 left: 0;
1373 z-index: 1000;
1374 float: left;
1375 display: none;
1376 min-width: 160px;
1377 max-width: 220px;
1378 _width: 160px;
1379 padding: 4px 0;
1380 margin: 0;
1381 list-style: none;
1382 background-color: #ffffff;
1383 border-color: #ccc;
1384 border-color: rgba(0, 0, 0, 0.2);
1385 border-style: solid;
1386 border-width: 1px;
1387 -webkit-border-radius: 0 0 5px 5px;
1388 -moz-border-radius: 0 0 5px 5px;
1389 border-radius: 0 0 5px 5px;
1390 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1391 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1392 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1393 -webkit-background-clip: padding-box;
1394 -moz-background-clip: padding;
1395 background-clip: padding-box;
1396 *border-right-width: 2px;
1397 *border-bottom-width: 2px;
1398}
1399.dropdown-menu.bottom-up {
1400 top: auto;
1401 bottom: 100%;
1402 margin-bottom: 2px;
1403}
1404.dropdown-menu .divider {
1405 height: 1px;
1406 margin: 5px 1px;
1407 overflow: hidden;
1408 background-color: #e5e5e5;
1409 border-bottom: 1px solid #ffffff;
1410 *width: 100%;
1411 *margin: -5px 0 5px;
1412}
1413.dropdown-menu a {
1414 display: block;
1415 padding: 3px 15px;
1416 clear: both;
1417 font-weight: normal;
1418 line-height: 18px;
1419 color: #555555;
1420 white-space: nowrap;
1421}
1422.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1423 color: #ffffff;
1424 text-decoration: none;
1425 background-color: #0088cc;
1426}
1427.dropdown.open {
1428 *z-index: 1000;
1429}
1430.dropdown.open .dropdown-toggle {
1431 color: #ffffff;
1432 background: #ccc;
1433 background: rgba(0, 0, 0, 0.3);
1434}
1435.dropdown.open .dropdown-menu {
1436 display: block;
1437}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301438
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301439/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301440 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301441 */
1442.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301443 position: absolute;
1444 z-index: 1020;
1445 display: block;
1446 visibility: visible;
1447 padding: 5px;
1448 font-size: 11px;
1449 opacity: 0;
1450 filter: alpha(opacity=0);
1451}
1452.tooltip.in {
1453 opacity: 0.8;
1454 filter: alpha(opacity=80);
1455}
1456.tooltip.top {
1457 margin-top: -2px;
1458}
1459.tooltip.right {
1460 margin-left: 2px;
1461}
1462.tooltip.bottom {
1463 margin-top: 2px;
1464}
1465.tooltip.left {
1466 margin-left: -2px;
1467}
1468.tooltip.top .tooltip-arrow {
1469 bottom: 0;
1470 left: 50%;
1471 margin-left: -5px;
1472 border-left: 5px solid transparent;
1473 border-right: 5px solid transparent;
1474 border-top: 5px solid #000000;
1475}
1476.tooltip.left .tooltip-arrow {
1477 top: 50%;
1478 right: 0;
1479 margin-top: -5px;
1480 border-top: 5px solid transparent;
1481 border-bottom: 5px solid transparent;
1482 border-left: 5px solid #000000;
1483}
1484.tooltip.bottom .tooltip-arrow {
1485 top: 0;
1486 left: 50%;
1487 margin-left: -5px;
1488 border-left: 5px solid transparent;
1489 border-right: 5px solid transparent;
1490 border-bottom: 5px solid #000000;
1491}
1492.tooltip.right .tooltip-arrow {
1493 top: 50%;
1494 left: 0;
1495 margin-top: -5px;
1496 border-top: 5px solid transparent;
1497 border-bottom: 5px solid transparent;
1498 border-right: 5px solid #000000;
1499}
1500.tooltip-inner {
1501 max-width: 200px;
1502 padding: 3px 8px;
1503 color: #ffffff;
1504 text-align: center;
1505 text-decoration: none;
1506 background-color: #000000;
1507 -webkit-border-radius: 4px;
1508 -moz-border-radius: 4px;
1509 border-radius: 4px;
1510}
1511.tooltip-arrow {
1512 position: absolute;
1513 width: 0;
1514 height: 0;
1515}
1516.popover {
1517 position: absolute;
1518 top: 0;
1519 left: 0;
1520 z-index: 1010;
1521 display: none;
1522 padding: 5px;
1523}
1524.popover.top {
1525 margin-top: -5px;
1526}
1527.popover.right {
1528 margin-left: 5px;
1529}
1530.popover.bottom {
1531 margin-top: 5px;
1532}
1533.popover.left {
1534 margin-left: -5px;
1535}
1536.popover.top .arrow {
1537 bottom: 0;
1538 left: 50%;
1539 margin-left: -5px;
1540 border-left: 5px solid transparent;
1541 border-right: 5px solid transparent;
1542 border-top: 5px solid #000000;
1543}
1544.popover.right .arrow {
1545 top: 50%;
1546 left: 0;
1547 margin-top: -5px;
1548 border-top: 5px solid transparent;
1549 border-bottom: 5px solid transparent;
1550 border-right: 5px solid #000000;
1551}
1552.popover.bottom .arrow {
1553 top: 0;
1554 left: 50%;
1555 margin-left: -5px;
1556 border-left: 5px solid transparent;
1557 border-right: 5px solid transparent;
1558 border-bottom: 5px solid #000000;
1559}
1560.popover.left .arrow {
1561 top: 50%;
1562 right: 0;
1563 margin-top: -5px;
1564 border-top: 5px solid transparent;
1565 border-bottom: 5px solid transparent;
1566 border-left: 5px solid #000000;
1567}
1568.popover .arrow {
1569 position: absolute;
1570 width: 0;
1571 height: 0;
1572}
1573.popover-inner {
1574 padding: 3px;
1575 width: 280px;
1576 overflow: hidden;
1577 background: #000000;
1578 background: rgba(0, 0, 0, 0.8);
1579 -webkit-border-radius: 6px;
1580 -moz-border-radius: 6px;
1581 border-radius: 6px;
1582 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1583 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1584 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1585}
1586.popover-title {
1587 padding: 9px 15px;
1588 line-height: 1;
1589 background-color: #f5f5f5;
1590 border-bottom: 1px solid #eee;
1591 -webkit-border-radius: 3px 3px 0 0;
1592 -moz-border-radius: 3px 3px 0 0;
1593 border-radius: 3px 3px 0 0;
1594}
1595.popover-content {
1596 padding: 14px;
1597 background-color: #ffffff;
1598 -webkit-border-radius: 0 0 3px 3px;
1599 -moz-border-radius: 0 0 3px 3px;
1600 border-radius: 0 0 3px 3px;
1601 -webkit-background-clip: padding-box;
1602 -moz-background-clip: padding-box;
1603 background-clip: padding-box;
1604}
1605.popover-content p, .popover-content ul, .popover-content ol {
1606 margin-bottom: 0;
1607}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301608
Rushabh Mehtad0251332012-02-21 17:26:50 +05301609/*
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301610 * lib/css/ui/fonts.css
1611 */
1612@font-face {
1613 font-family: 'Pontano Sans';
1614 font-style: normal;
1615 font-weight: 800;
1616 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1617}
1618
1619@font-face {
1620 font-family: 'Droid Sans';
1621 font-style: normal;
1622 font-weight: normal;
1623 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1624}
1625
1626@font-face {
1627 font-family: 'PT Sans';
1628 font-style: normal;
1629 font-weight: normal;
1630 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1631}
1632
1633@font-face {
1634 font-family: 'Open Sans';
1635 font-style: normal;
1636 font-weight: 400;
1637 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1638}
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301639
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301640@font-face {
1641 font-family: 'Lato';
1642 font-style: normal;
1643 font-weight: 400;
1644 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1645}
1646
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301647@font-face {
1648 font-family: 'Cabin';
1649 font-style: normal;
1650 font-weight: 400;
1651 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
1652}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301653
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +05301654@font-face {
1655 font-family: 'Pacifico';
1656 font-style: normal;
1657 font-weight: normal;
1658 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('../lib/css/fonts/pacifico.woff') format('woff');
1659}
1660
1661
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301662
1663/*
1664 * lib/css/ui/list.css
1665 */
1666.hide {
1667 display: none;
1668}
1669
1670.list-filters {
1671 margin: 7px 0px;
1672}
1673
1674.wnlist .img-load {
1675 display: none;
1676 float: left;
1677 margin-bottom: 8px;
1678}
1679
1680/* list-row */
1681div.list-row {
1682 border-bottom: 1px solid #eee;
1683 padding: 5px 0px;
1684}
1685div.list-row:hover {
1686 background-color: #eef
1687}
1688
1689div.list-row .label {
1690 margin-right: 4px;
1691}
1692
1693div.list-row table {
1694 table-layout: fixed;
1695 border-collapse: collapse;
1696 width: 100%;
1697}
1698
1699div.list-row table td {
1700 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05301701 /*padding-right: 3px;*/
1702 padding: 0px 3px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301703 vertical-align: middle;
1704 height: 24px;
1705 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05301706 word-wrap: break-word;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301707}
1708
1709div.paging-button {
1710 text-align: center;
1711 padding: 11px 0px;
1712}
1713
1714div.show_filters {
1715 display: none;
1716}
1717
1718div.filter_list {
1719 padding: 13px;
1720}
1721
1722div.show_filters.well {
1723 margin-top: 11px;
1724 margin-bottom: 11px;
1725}
1726
1727div.filter_list .run_btn {
1728 text-align: right;
1729}
1730
1731div.filter_list .add_filter {
1732 margin: 3px 0px;
1733}
1734
1735div.list_filter {
1736 margin: 7px 0px;
1737}
1738
1739div.list_filter input, div.list_filter select {
1740 width: 130px;
1741 margin-right: 7px;
1742}
1743
1744/* bar */
1745
1746span.bar-outer {
1747 display: inline-block;
1748 margin: 0px 7px;
1749 margin-top: 3px;
1750 background-color: #fff;
1751 border: 1px solid #aaa;
1752 height: 10px;
1753}
1754
1755span.bar-inner {
1756 display: inline-block;
1757 background-color: #bdf;
1758 height: 100%;
1759 margin-bottom: 2px;
1760 float: left;
1761}
1762span.bar-complete {
1763 background-color: #009900;
1764}
1765span.bar-empty {
1766 background-color: #990000;
1767}
1768
1769
1770/* stats */
1771
1772div.stat-wrapper {
1773 margin-bottom: 19px;
1774}
1775
1776div.stat-grid {
1777 border: 2px solid #bbb;
1778 background-color: white;
1779 border-radius: 5px;
1780 -moz-border-radius: 5px;
1781 -webkit-border-radius: 5px;
1782 overflow: hidden;
1783}
1784
1785div.stat-label {
1786 position: relative;
1787 padding: 3px;
1788 text-align: center;
1789}
1790div.stat-label, div.stat-label a {
1791 z-index: 5;
1792}
1793
1794div.stat-item {
1795 position: relative;
1796 border-bottom: 1px solid #ddd;
1797}
1798div.stat-item:last-child {
1799 border-bottom: 0px solid #ddd;
1800}
1801
1802div.stat-bar {
1803 position: absolute;
1804 left: 0px;
1805 background-color: #def;
1806 height: 100%;
1807 z-index: 0;
1808}
1809
1810
1811
1812
1813
1814/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301815 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301816 */
1817h1, h2, h3, h4, h5 {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301818 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301819 font-weight: normal;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301820 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301821}
1822
1823body {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301824 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05301825 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301826}
1827
1828span, div, td, input, textarea, button, select {
1829 font-family: inherit;
1830}
1831
1832body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05301833 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301834 color: #616161;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301835}
1836
Rushabh Mehta983a1712012-03-21 13:35:34 +05301837.small {
1838 font-size: 11.5px;
1839}
1840
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301841.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301842 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301843 text-align: center;
1844}
1845
Anand Doshidb628762012-02-24 17:56:00 +05301846.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301847 margin: -3px 0px;
1848 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301849 min-width: 20px;
1850 text-align: center;
1851 display: inline-block;
1852 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301853 color: #999999;
1854 background-color: #333131;
1855}
1856
1857.navbar-new-comments:hover,
1858.navbar-new-comments:active,
1859.navbar-new-comments:focus {
1860 color: #fff;
1861}
1862
1863
1864.navbar-new-comments-true {
1865 color: #fff;
1866 background-color: #B00D07;
1867}
1868
1869.navbar-icon-home {
1870 vertical-align: middle;
1871 opacity:0.4;
1872 Filter:alpha(opacity=40); /* For IE8 and earlier */
1873}
1874
1875.navbar-icon-home:hover,
1876.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05301877.navbar-icon-home:active,
1878.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301879 opacity:1;
1880 Filter:alpha(opacity=100); /* For IE8 and earlier */
1881}
1882
1883/*extra size menus for recent*/
1884.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1885 min-width: 160px !important;
1886 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301887}
1888
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301889
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301890/*
1891 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301892 */
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301893div#body_div, header .container, .content, #opened-page-selector, footer {
1894 width: 900px;
1895}
1896
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301897.layout_wrapper {
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301898 padding: 27px;
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301899}
1900
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301901p, li {
1902 line-height: 1.6em;
1903}
1904
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301905pre {
1906 background-color: #F8F8F8;
1907 border: 1px solid #CCCCCC;
1908 border-radius: 3px 3px 3px 3px;
1909 font-size: 13px;
1910 line-height: 19px;
1911 overflow: auto;
1912 padding: 6px 10px;
1913 margin-bottom: 9px;
1914}
1915
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301916.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1917 min-width: 180px;
1918}
1919
Rushabh Mehta13531b72012-02-20 12:35:23 +05301920.web-head-section {
1921 margin-bottom: 20px
1922}
1923
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301924.web-main-section {
1925 width: 65%;
1926 float: left;
1927 margin-bottom: 20px;
1928}
1929
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301930.web-side-section {
1931 width: 30%;
1932 float: right;
1933 margin-bottom: 20px;
1934 margin-right: 15px;
1935 color: #606060;
1936 overflow-x: hidden;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301937 font-size: 90%;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301938}
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}
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302002
2003/* slide view */
2004
2005.next-slide {
2006 margin: 0px -27px 100px -27px;
2007 background: #ffffff; /* Old browsers */
2008 background: -moz-linear-gradient(top, #eeeeee 0%, #fff 100%); /* FF3.6+ */
2009 background: -webkit-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Chrome10+,Safari5.1+ */
2010 background: -o-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Opera 11.10+ */
2011 background: -ms-linear-gradient(top, #eeeeee 0%, #fff 100%); /* IE10+ */
2012 background: linear-gradient(top, #eeeeee 0%, #fff 100%); /* W3C */
2013 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#fff',GradientType=0 ); /* IE6-9 */
2014 height: 36px;
2015}
2016
2017.slide-shadow {
2018 background: #eeeeee; /* Old browsers */
2019 background: -moz-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* FF3.6+ */
2020 background: -webkit-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
2021 background: -o-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Opera 11.10+ */
2022 background: -ms-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* IE10+ */
2023 background: linear-gradient(top, #bababa 0%,#eeeeee 100%); /* W3C */
2024 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bababa', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
2025 height: 3px;
2026 margin: 100px -27px 0px -27px;
2027 border-top: 1px solid #bababa;
2028}
2029
2030.two-column {
2031 width: 40%;
2032 float: left;
2033 padding: 5%;
2034}
2035
2036.clear {
2037 clear: both;
2038}
2039
2040/* */