blob: 64e5566c6e3ec81937af6c19baa262e4fd618f39 [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
3 * lib/css/legacy/body.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5html {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05306 margin: 0px;
7 padding: 0px;
8}
9
10body {
11 margin: 0px;
12 padding: 0px;
13 font-family: Arial, Helvetica, Sans;
Rushabh Mehta983a1712012-03-21 13:35:34 +053014 font-size: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053015 color: #000;
Rushabh Mehta3f29b852012-02-20 15:40:29 +053016 background-color: #e2e2e2;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053017}
18
Rushabh Mehtaafaac602012-02-14 11:44:13 +053019pre { margin: 0px; padding: 0px; }
20
21button { margin: 2px; margin-left: 0px; }
22
23label {
24 padding-top: 15px;
25 color: #404040;
26}
27
28select, input, textarea {
Rushabh Mehtab9878d02012-03-12 16:12:09 +053029 border: 1px solid #ccc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053030 -moz-border-radius: 4px;
31 -webkit-border-radius: 4px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053032 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053033 padding: 4px;
Rushabh Mehtab9878d02012-03-12 16:12:09 +053034 color: #444;
35 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
36 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
37 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
Rushabh Mehtaafaac602012-02-14 11:44:13 +053038}
39
40textarea {
41 font-family: inherit;
42 height: 120px;
43 width: 90%;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +053044 font-size: inherit;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053045 white-space: normal;
46}
47
48table { padding: 0px; border-collapse: 'collapse'}
49
50td {
51 padding:0px;
52 margin: 0px;
53 vertical-align: top;
54}
55
56p {
57 margin: 0px 0px 9px 0px;
58 line-height: 1.5em;
59}
60
61li {
62 line-height: 1.5em;
63}
64
Rushabh Mehtaaa848be2012-02-17 12:06:33 +053065hr {
66 margin: 18px 0;
67 border: 0;
68 border-top: 1px solid #e5e5e5;
69 border-bottom: 1px solid #ffffff;
70}
71
Rushabh Mehtad0251332012-02-21 17:26:50 +053072/* links */
73
Rushabh Mehtaafaac602012-02-14 11:44:13 +053074a:active { outline:none; }
75
Rushabh Mehtad0251332012-02-21 17:26:50 +053076a {
77 color: #0088cc;
78 text-decoration: none;
79}
80a:hover {
81 color: #005580;
82 text-decoration: underline;
83}
84
85.link_type {
86 padding:2px;
87 color: #0088cc;
88 cursor: pointer;
89}
90
91.link_type:hover {
92 color: #005580;
93 text-decoration: underline;
94}
95
Rushabh Mehtaafaac602012-02-14 11:44:13 +053096:focus { -moz-outline-style:none; }
97
98table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
99table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
100
101div.fix_ff_cursor { overflow: auto; }
102
103/* --- Layout --- */
104
105div.comment { color: #444; }
106
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530107.small {
108 font-size: 11px;
109}
110
111.help {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530112 margin-bottom: 3px;
Rushabh Mehtaa665c1f2012-03-21 11:47:58 +0530113 color: #888;
114}
115
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530116div#body_div {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530117 display: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530118 padding-right: 7px;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530119 width: 900px;
120 margin: auto;
121 margin-top: 56px;
122}
123
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530124.content {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530125 width: 900px;
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530126}
127
128.background-fade-in {
129 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
130 -moz-transition: background 1s ease-in;
131 -o-transition: background 1s ease-in;
132 transition: background 1s ease-in;
133}
134
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530135footer {
Rushabh Mehtab6f80882012-03-23 14:19:49 +0530136 width: 900px;
137 margin: auto;
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530138}
139header .container {
140 width: 900px;
141 margin: auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530142}
143
Rushabh Mehta2438de42012-03-15 16:43:46 +0530144@media (max-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530145 div#body_div, header .container, .content, #opened-page-selector, footer {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530146 width: 900px;
147 }
148}
149
150@media (min-width: 1200px) {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530151 div#body_div, header .container, .content, #opened-page-selector, footer {
152 width: 1100px;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530153 }
154}
155
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530156div.no_script {
157 display: none;
158}
159
160div.loading_div {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530161 background-color: #FFFFCC;
162 z-index: 1999;
163 right: 5px;
164 width: 90px;
165 display: none;
166 text-align: center;
167 padding: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530168 border: 1px solid #FF4;
169}
170
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530171div.std-footer {
172 margin: 13px 0px;
173 border-top: 1px solid #AAA;
174 padding: 13px;
175}
176
177div.std-footer-item {
178 margin: 0px 13px 13px 0px;
179}
180
181.shadow {
182 -moz-box-shadow: 0px 2px 2px #888;
183 -webkit-box-shadow: 0px 2px 2px #888;
184 box-shadow: 0px 2px 2px #888;
185}
186
187.round {
188 -webkit-border-radius: 5px;
189 -moz-border-radius: 5px;
190 border-radius: 5px;
191}
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530192
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530193.layout_wrapper, .layout-wrapper {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530194 -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
195 -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
196 box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530197 background-color: #fff;
198 padding: 15px;
199}
200
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530201.layout-wrapper-background {
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530202 background-color: #fafafa !important;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530203 padding: 0px;
204}
205
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530206.layout-main-section {
Anand Doshi40ee8d62012-02-24 19:21:47 +0530207 width: 71%;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530208 float: left;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530209 padding: 15px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530210 background-color: #FFF;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530211 min-height: 600px;
Rushabh Mehtafdea9662012-02-27 18:03:54 +0530212 -moz-box-shadow: 7px 0px 6px -2px #ddd;
213 -webkit-box-shadow: 7px 0px 6px -2px #ddd;
214 box-shadow: 7px 0px 6px -2px #ddd;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530215}
216
217.layout-side-section {
Rushabh Mehtac5471dd2012-02-22 12:07:42 +0530218 width: 22%;
Anand Doshi40ee8d62012-02-24 19:21:47 +0530219 /*float: right;*/
Rushabh Mehtad48417c2012-03-19 18:42:13 +0530220 color: #606060;
Rushabh Mehta3f29b852012-02-20 15:40:29 +0530221 overflow-x: hidden;
Rushabh Mehta09a897a2012-02-20 18:30:52 +0530222 padding: 15px;
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530223 min-height: 600px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530224}
225
226/* from bootstrap */
227.container {
228 margin-left: auto;
229 margin-right: auto;
230 zoom: 1;
231}
232.container:before, .container:after {
233 display: table;
234 content: "";
235 zoom: 1;
236}
237.container:after {
238 clear: both;
239}
240
Anand Doshi40ee8d62012-02-24 19:21:47 +0530241.well {
242 min-height: 20px;
243 padding: 19px;
244 margin-bottom: 20px;
245 background-color: #f5f5f5;
246 border: 1px solid #eee;
247 border: 1px solid rgba(0, 0, 0, 0.05);
248 -webkit-border-radius: 4px;
249 -moz-border-radius: 4px;
250 border-radius: 4px;
251 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
252 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
253 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
254}
255
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530256.avatar-small {
257 display: inline-block;
Rushabh Mehta2438de42012-03-15 16:43:46 +0530258 width: 24px;
259 height: 20px;
260 vertical-align: middle;
261 overflow: hidden;
262 margin: 0px 3px;
Rushabh Mehtadf33cb32012-03-01 13:44:09 +0530263}
264.avatar-small img {
Rushabh Mehta2438de42012-03-15 16:43:46 +0530265 width: 24px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530266}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530267
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530268/*
269 * lib/css/legacy/messages.css
270 */
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530271
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530272/* FLOATING MESSAGE */
273
274.btn-img { cursor: pointer; }
275
276div.fetching { color: #888; text-align:right; }
277
278div.notice {
279 postion: absolute;
280 background-color: #000;
281 -moz-border-radius: 5px; -webkit-border-radius: 5px;
282 opacity: 0.6;
283 right: 0;
284 top: 0;
285 margin-top: 8px;
286 z-index: -1;
287 padding: 8px;
288}
289
290/** help **/
291
292.info-box {
293 background-color: #F8F8F8;
294 border: 1px solid #CCCCCC;
295 border-radius: 3px 3px 3px 3px;
296 line-height: 1.6em;
297 overflow: auto;
298 padding: 6px 10px;
299 margin-bottom: 9px;
300}
301
302.help_box, .help-box {
303 background-color:#FFC;
304 font-size: 13px;
305 color: #864;
306 padding: 7px;
307 margin: 11px 0px;
308 border: 1px solid #EEB;
309}
310
311.help_box_big {
312 background-color:#FFC;
313 color: #864;
314 padding: 7px;
315 margin: 7px 0px;
316 border: 1px solid #EEB;
317 text-align: center;
318 font-size: 14px;
319}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530320
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530321/*
322 * lib/css/legacy/dialog.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530323 */
324/***** Dialogs *******/
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530325
326div.dialog_wrapper {
327 position: absolute;
328 width: 440px;
329 display: none;
330 z-index: 90;
331 background-color: #FFF;
332 border: 3px solid #222;
333 box-shadow:1px 1px 5px #777;
334 -moz-box-shadow: 1px 1px 5px #777;
335 -webkit-box-shadow: 1px 1px 5px #777;
336
337 border-radius: 5px;
338 -moz-border-radius: 5px;
339 -webkit-border-radius: 5px;
340}
341
342div.dialog_head {
343 height: 22px;
344 padding: 4px;
345 background-color: #222;
346 color: #FFF;
347}
348
349div.dialog_body {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +0530350 padding: 8px 8px 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530351 border-radius: 5px;
352 -moz-border-radius: 5px;
353 -webkit-border-radius: 5px;
354}
355
356div.dialog_back {
357 position: fixed;
358 display: none;
359 top: 0px;
360 left: 0px;
361 bottom: 0px;
362 right: 0px;
363 background-color: #EEE;
364 opacity: 0.6;
365 z-index: 50;
366 text-align: center;
367}
368
369div.dialog_message {
370 display: none;
371 position: absolute;
372 width: 250px;
373 font-size: 12px;
374 z-index: 91;
375 background-color:#FFF;
376 padding: 12px;
377 border: 1px solid #444;
378}
379
380div.dialog_row {
381 padding: 8px 8px 0px 8px;
382}
383
384div.dialog_row table {
385 width: 100%;
386}
387
388div.dialog_row table td {
389}
390
391div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
392 width: 80%;
393 font-size: 14px;
394}
395
396div.dialog_row table td textarea {
397 width: 80%;
398 height: 200px;
399 font-size: 12px;
400}
401
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530402
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530403/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530404 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530405 */
406/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530407
408h1,
409h2,
410h3,
411h4,
412h5,
413h6 {
414 margin: 0;
415 font-weight: bold;
416 color: #333333;
417 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530418}
419h1 small,
420h2 small,
421h3 small,
422h4 small,
423h5 small,
424h6 small {
425 font-weight: normal;
426 color: #999999;
427}
428h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530429 font-size: 280%;
430 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530431}
432h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530433 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530434}
435h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530436 font-size: 200%;
437 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530438}
439h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530440 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530441}
442h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530443 font-size: 210%;
444 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530445}
446h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530447 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530448}
449h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530450 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530451}
452h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530453 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530454}
455h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530456 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530457}
458h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +0530459 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530460}
461h6 {
462 font-size: 11px;
463 color: #999999;
464 text-transform: uppercase;
465}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530466
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530467/*
468 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530469 */
470.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +0530471 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530472 float: right;
473 font-size: 20px;
474 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530475 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530476 color: #000000;
477 text-shadow: 0 1px 0 #ffffff;
478 opacity: 0.2;
479 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530480}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530481.close:hover {
482 color: #000000;
483 text-decoration: none;
484 opacity: 0.4;
485 filter: alpha(opacity=40);
486 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530487}
488.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530489 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530490 padding: 4px 10px 4px;
491 font-size: 13px;
492 line-height: 18px;
493 color: #333333;
494 text-align: center;
495 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
496 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530497 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
498 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
499 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
500 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
501 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
502 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530503 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530504 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530505 border: 1px solid #ccc;
506 border-bottom-color: #bbb;
507 -webkit-border-radius: 4px;
508 -moz-border-radius: 4px;
509 border-radius: 4px;
510 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
511 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
512 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 +0530513 cursor: pointer;
514 *margin-left: .3em;
515}
516.btn:first-child {
517 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530518}
519.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530520 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530521 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530522 background-color: #e6e6e6;
523 background-position: 0 -15px;
524 -webkit-transition: background-position 0.1s linear;
525 -moz-transition: background-position 0.1s linear;
526 -ms-transition: background-position 0.1s linear;
527 -o-transition: background-position 0.1s linear;
528 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530529}
530.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530531 outline: thin dotted;
532 outline: 5px auto -webkit-focus-ring-color;
533 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530534}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530535.btn.active, .btn:active {
536 background-image: none;
537 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
538 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
539 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
540 background-color: #e6e6e6;
541 background-color: #d9d9d9 \9;
542 color: rgba(0, 0, 0, 0.5);
543 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530544}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530545.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530546 cursor: default;
547 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530548 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530549 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530550 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530551 -webkit-box-shadow: none;
552 -moz-box-shadow: none;
553 box-shadow: none;
554}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530555.btn-large {
556 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530557 font-size: 15px;
558 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530559 -webkit-border-radius: 5px;
560 -moz-border-radius: 5px;
561 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530562}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530563.btn-large .icon {
564 margin-top: 1px;
565}
566.btn-small {
567 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530568 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530569 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530570}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530571.btn-small .icon {
572 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530573}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530574.btn-primary,
575.btn-primary:hover,
576.btn-warning,
577.btn-warning:hover,
578.btn-danger,
579.btn-danger:hover,
580.btn-success,
581.btn-success:hover,
582.btn-info,
583.btn-info:hover {
584 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
585 color: #ffffff;
586}
587.btn-primary.active,
588.btn-warning.active,
589.btn-danger.active,
590.btn-success.active,
591.btn-info.active {
592 color: rgba(255, 255, 255, 0.75);
593}
594.btn-primary {
595 background-color: #006dcc;
596 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
597 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
598 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
599 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
600 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
601 background-image: linear-gradient(top, #0088cc, #0044cc);
602 background-repeat: repeat-x;
603 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
604 border-color: #0044cc #0044cc #002a80;
605 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
606 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
607}
608.btn-primary:hover,
609.btn-primary:active,
610.btn-primary.active,
611.btn-primary.disabled,
612.btn-primary[disabled] {
613 background-color: #0044cc;
614}
615.btn-primary:active, .btn-primary.active {
616 background-color: #003399 \9;
617}
618.btn-warning {
619 background-color: #faa732;
620 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
621 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
622 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
623 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
624 background-image: -o-linear-gradient(top, #fbb450, #f89406);
625 background-image: linear-gradient(top, #fbb450, #f89406);
626 background-repeat: repeat-x;
627 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
628 border-color: #f89406 #f89406 #ad6704;
629 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
630 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
631}
632.btn-warning:hover,
633.btn-warning:active,
634.btn-warning.active,
635.btn-warning.disabled,
636.btn-warning[disabled] {
637 background-color: #f89406;
638}
639.btn-warning:active, .btn-warning.active {
640 background-color: #c67605 \9;
641}
642.btn-danger {
643 background-color: #da4f49;
644 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
645 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
646 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
647 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
648 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
649 background-image: linear-gradient(top, #ee5f5b, #bd362f);
650 background-repeat: repeat-x;
651 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
652 border-color: #bd362f #bd362f #802420;
653 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
654 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
655}
656.btn-danger:hover,
657.btn-danger:active,
658.btn-danger.active,
659.btn-danger.disabled,
660.btn-danger[disabled] {
661 background-color: #bd362f;
662}
663.btn-danger:active, .btn-danger.active {
664 background-color: #942a25 \9;
665}
666.btn-success {
667 background-color: #5bb75b;
668 background-image: -moz-linear-gradient(top, #62c462, #51a351);
669 background-image: -ms-linear-gradient(top, #62c462, #51a351);
670 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
671 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
672 background-image: -o-linear-gradient(top, #62c462, #51a351);
673 background-image: linear-gradient(top, #62c462, #51a351);
674 background-repeat: repeat-x;
675 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
676 border-color: #51a351 #51a351 #387038;
677 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
678 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
679}
680.btn-success:hover,
681.btn-success:active,
682.btn-success.active,
683.btn-success.disabled,
684.btn-success[disabled] {
685 background-color: #51a351;
686}
687.btn-success:active, .btn-success.active {
688 background-color: #408140 \9;
689}
690.btn-info {
691 background-color: #49afcd;
692 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
693 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
694 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
695 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
696 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
697 background-image: linear-gradient(top, #5bc0de, #2f96b4);
698 background-repeat: repeat-x;
699 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
700 border-color: #2f96b4 #2f96b4 #1f6377;
701 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
702 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
703}
704.btn-info:hover,
705.btn-info:active,
706.btn-info.active,
707.btn-info.disabled,
708.btn-info[disabled] {
709 background-color: #2f96b4;
710}
711.btn-info:active, .btn-info.active {
712 background-color: #24748c \9;
713}
714button.btn, input[type="submit"].btn {
715 *padding-top: 2px;
716 *padding-bottom: 2px;
717}
718button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530719 padding: 0;
720 border: 0;
721}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530722button.btn.large, input[type="submit"].btn.large {
723 *padding-top: 7px;
724 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530725}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530726button.btn.small, input[type="submit"].btn.small {
727 *padding-top: 3px;
728 *padding-bottom: 3px;
729}
730.btn-group {
731 position: relative;
732 *zoom: 1;
733 *margin-left: .3em;
734}
735.btn-group:before, .btn-group:after {
736 display: table;
737 content: "";
738}
739.btn-group:after {
740 clear: both;
741}
742.btn-group:first-child {
743 *margin-left: 0;
744}
745.btn-group + .btn-group {
746 margin-left: 5px;
747}
748.btn-toolbar {
749 margin-top: 9px;
750 margin-bottom: 9px;
751}
752.btn-toolbar .btn-group {
753 display: inline-block;
754 *display: inline;
755 /* IE7 inline-block hack */
756
757 *zoom: 1;
758}
759.btn-group .btn {
760 position: relative;
761 float: left;
762 margin-left: -1px;
763 -webkit-border-radius: 0;
764 -moz-border-radius: 0;
765 border-radius: 0;
766}
767.btn-group .btn:first-child {
768 margin-left: 0;
769 -webkit-border-top-left-radius: 4px;
770 -moz-border-radius-topleft: 4px;
771 border-top-left-radius: 4px;
772 -webkit-border-bottom-left-radius: 4px;
773 -moz-border-radius-bottomleft: 4px;
774 border-bottom-left-radius: 4px;
775}
776.btn-group .btn:last-child, .btn-group .dropdown-toggle {
777 -webkit-border-top-right-radius: 4px;
778 -moz-border-radius-topright: 4px;
779 border-top-right-radius: 4px;
780 -webkit-border-bottom-right-radius: 4px;
781 -moz-border-radius-bottomright: 4px;
782 border-bottom-right-radius: 4px;
783}
784.btn-group .btn.large:first-child {
785 margin-left: 0;
786 -webkit-border-top-left-radius: 6px;
787 -moz-border-radius-topleft: 6px;
788 border-top-left-radius: 6px;
789 -webkit-border-bottom-left-radius: 6px;
790 -moz-border-radius-bottomleft: 6px;
791 border-bottom-left-radius: 6px;
792}
793.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
794 -webkit-border-top-right-radius: 6px;
795 -moz-border-radius-topright: 6px;
796 border-top-right-radius: 6px;
797 -webkit-border-bottom-right-radius: 6px;
798 -moz-border-radius-bottomright: 6px;
799 border-bottom-right-radius: 6px;
800}
801.btn-group .btn:hover,
802.btn-group .btn:focus,
803.btn-group .btn:active,
804.btn-group .btn.active {
805 z-index: 2;
806}
807.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
808 outline: 0;
809}
810.btn-group .dropdown-toggle {
811 padding-left: 8px;
812 padding-right: 8px;
813 -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);
814 -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);
815 box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
816 *padding-top: 5px;
817 *padding-bottom: 5px;
818}
819.btn-group.open {
820 *z-index: 1000;
821}
822.btn-group.open .dropdown-menu {
823 display: block;
824 margin-top: 1px;
825 -webkit-border-radius: 5px;
826 -moz-border-radius: 5px;
827 border-radius: 5px;
828}
829.btn-group.open .dropdown-toggle {
830 background-image: none;
831 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
832 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
833 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
834}
835.btn .caret {
836 margin-top: 7px;
837 margin-left: 0;
838}
839.btn:hover .caret, .open.btn-group .caret {
840 opacity: 1;
841 filter: alpha(opacity=100);
842}
843.btn-primary .caret,
844.btn-danger .caret,
845.btn-info .caret,
846.btn-success .caret {
847 border-top-color: #ffffff;
848 opacity: 0.75;
849 filter: alpha(opacity=75);
850}
851.btn-small .caret {
852 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530853}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530854
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530855/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530856 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530857 */
858.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530859 margin-left: 0;
860 margin-bottom: 18px;
861 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530862}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530863.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530864 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530865}
866.nav > li > a:hover {
867 text-decoration: none;
868 background-color: #eeeeee;
869}
870.nav-list {
871 padding-left: 14px;
872 padding-right: 14px;
873 margin-bottom: 0;
874}
875.nav-list > li > a, .nav-list .nav-header {
876 display: block;
877 padding: 3px 15px;
878 margin-left: -15px;
879 margin-right: -15px;
880 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
881}
882.nav-list .nav-header {
883 font-size: 11px;
884 font-weight: bold;
885 line-height: 18px;
886 color: #999999;
887 text-transform: uppercase;
888}
889.nav-list > li + .nav-header {
890 margin-top: 9px;
891}
892.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530893 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530894 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
895 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530896}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530897.nav-list [class^="icon-"] {
898 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530899}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530900.nav-tabs, .nav-pills {
901 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530902}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530903.nav-tabs:before,
904.nav-pills:before,
905.nav-tabs:after,
906.nav-pills:after {
907 display: table;
908 content: "";
909}
910.nav-tabs:after, .nav-pills:after {
911 clear: both;
912}
913.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530914 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530915}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530916.nav-tabs > li > a, .nav-pills > li > a {
917 padding-right: 12px;
918 padding-left: 12px;
919 margin-right: 2px;
920 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530921}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530922.nav-tabs {
923 border-bottom: 1px solid #ddd;
924}
925.nav-tabs > li {
926 margin-bottom: -1px;
927}
928.nav-tabs > li > a {
929 padding-top: 9px;
930 padding-bottom: 9px;
931 border: 1px solid transparent;
932 -webkit-border-radius: 4px 4px 0 0;
933 -moz-border-radius: 4px 4px 0 0;
934 border-radius: 4px 4px 0 0;
935}
936.nav-tabs > li > a:hover {
937 border-color: #eeeeee #eeeeee #dddddd;
938}
939.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
940 color: #555555;
941 background-color: #ffffff;
942 border: 1px solid #ddd;
943 border-bottom-color: transparent;
944 cursor: default;
945}
946.nav-pills > li > a {
947 padding-top: 8px;
948 padding-bottom: 8px;
949 margin-top: 2px;
950 margin-bottom: 2px;
951 -webkit-border-radius: 5px;
952 -moz-border-radius: 5px;
953 border-radius: 5px;
954}
955.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530956 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530957 background-color: #0088cc;
958}
959.nav-stacked > li {
960 float: none;
961}
962.nav-stacked > li > a {
963 margin-right: 0;
964}
965.nav-tabs.nav-stacked {
966 border-bottom: 0;
967}
968.nav-tabs.nav-stacked > li > a {
969 border: 1px solid #ddd;
970 -webkit-border-radius: 0;
971 -moz-border-radius: 0;
972 border-radius: 0;
973}
974.nav-tabs.nav-stacked > li:first-child > a {
975 -webkit-border-radius: 4px 4px 0 0;
976 -moz-border-radius: 4px 4px 0 0;
977 border-radius: 4px 4px 0 0;
978}
979.nav-tabs.nav-stacked > li:last-child > a {
980 -webkit-border-radius: 0 0 4px 4px;
981 -moz-border-radius: 0 0 4px 4px;
982 border-radius: 0 0 4px 4px;
983}
984.nav-tabs.nav-stacked > li > a:hover {
985 border-color: #ddd;
986 z-index: 2;
987}
988.nav-pills.nav-stacked > li > a {
989 margin-bottom: 3px;
990}
991.nav-pills.nav-stacked > li:last-child > a {
992 margin-bottom: 1px;
993}
994.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
995 margin-top: 1px;
996 border-width: 1px;
997}
998.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530999 -webkit-border-radius: 4px;
1000 -moz-border-radius: 4px;
1001 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +05301002}
1003.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
1004 border-top-color: #0088cc;
1005 margin-top: 6px;
1006}
1007.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
1008 border-top-color: #005580;
1009}
1010.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
1011 border-top-color: #333333;
1012}
1013.nav > .dropdown.active > a:hover {
1014 color: #000000;
1015 cursor: pointer;
1016}
1017.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
1018 color: #ffffff;
1019 background-color: #999999;
1020 border-color: #999999;
1021}
1022.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
1023 border-top-color: #ffffff;
1024 opacity: 1;
1025 filter: alpha(opacity=100);
1026}
1027
1028.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301029 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301030 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301031}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301032.navbar-inner {
1033 padding-left: 20px;
1034 padding-right: 20px;
1035 background-color: #2c2c2c;
1036 background-image: -moz-linear-gradient(top, #333333, #222222);
1037 background-image: -ms-linear-gradient(top, #333333, #222222);
1038 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1039 background-image: -webkit-linear-gradient(top, #333333, #222222);
1040 background-image: -o-linear-gradient(top, #333333, #222222);
1041 background-image: linear-gradient(top, #333333, #222222);
1042 background-repeat: repeat-x;
1043 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1044 -webkit-border-radius: 4px;
1045 -moz-border-radius: 4px;
1046 border-radius: 4px;
1047 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1048 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1049 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1050}
1051.btn-navbar {
1052 display: none;
1053 float: right;
1054 padding: 7px 10px;
1055 margin-left: 5px;
1056 margin-right: 5px;
1057 background-color: #2c2c2c;
1058 background-image: -moz-linear-gradient(top, #333333, #222222);
1059 background-image: -ms-linear-gradient(top, #333333, #222222);
1060 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
1061 background-image: -webkit-linear-gradient(top, #333333, #222222);
1062 background-image: -o-linear-gradient(top, #333333, #222222);
1063 background-image: linear-gradient(top, #333333, #222222);
1064 background-repeat: repeat-x;
1065 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1066 border-color: #222222 #222222 #000000;
1067 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1068 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1069 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1070 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1071 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
1072}
1073.btn-navbar:hover,
1074.btn-navbar:active,
1075.btn-navbar.active,
1076.btn-navbar.disabled,
1077.btn-navbar[disabled] {
1078 background-color: #222222;
1079}
1080.btn-navbar:active, .btn-navbar.active {
1081 background-color: #080808 \9;
1082}
1083.btn-navbar .icon-bar {
1084 display: block;
1085 width: 18px;
1086 height: 2px;
1087 background-color: #f5f5f5;
1088 -webkit-border-radius: 1px;
1089 -moz-border-radius: 1px;
1090 border-radius: 1px;
1091 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1092 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1093 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
1094}
1095.btn-navbar .icon-bar + .icon-bar {
1096 margin-top: 3px;
1097}
1098.nav-collapse.collapse {
1099 height: auto;
1100}
1101.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301102 text-decoration: none;
1103}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301104.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301105 float: left;
1106 display: block;
1107 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301108 font-size: 20px;
1109 font-weight: 200;
1110 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301111 color: #ffffff;
1112}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301113.navbar .navbar-text {
1114 margin-bottom: 0;
1115 line-height: 40px;
1116 color: #999999;
1117}
1118.navbar .navbar-text a:hover {
1119 color: #ffffff;
1120 background-color: transparent;
1121}
1122.navbar .btn, .navbar .btn-group {
1123 margin-top: 5px;
1124}
1125.navbar .btn-group .btn {
1126 margin-top: 0;
1127}
1128.navbar-form {
1129 margin-bottom: 0;
1130 *zoom: 1;
1131}
1132.navbar-form:before, .navbar-form:after {
1133 display: table;
1134 content: "";
1135}
1136.navbar-form:after {
1137 clear: both;
1138}
1139.navbar-form input, .navbar-form select {
1140 display: inline-block;
1141 margin-top: 5px;
1142 margin-bottom: 0;
1143}
1144.navbar-form .radio, .navbar-form .checkbox {
1145 margin-top: 5px;
1146}
1147.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
1148 margin-top: 3px;
1149}
1150.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301151 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301152 float: left;
1153 margin-top: 6px;
1154 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301155}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301156.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301157 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301158 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1159 font-size: 13px;
1160 font-weight: normal;
1161 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301162 color: #ffffff;
1163 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301164 background: #666;
1165 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301166 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301167 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1168 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1169 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 +05301170 -webkit-transition: none;
1171 -moz-transition: none;
1172 -ms-transition: none;
1173 -o-transition: none;
1174 transition: none;
1175}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301176.navbar-search .search-query :-moz-placeholder {
1177 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301178}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301179.navbar-search .search-query::-webkit-input-placeholder {
1180 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301181}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301182.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301183 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301184 background-color: #999999;
1185 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301186}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301187.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301188 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301189 color: #333333;
1190 text-shadow: 0 1px 0 #ffffff;
1191 background-color: #ffffff;
1192 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301193 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1194 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1195 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301196 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301197}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301198.navbar-fixed-top {
1199 position: fixed;
1200 top: 0;
1201 right: 0;
1202 left: 0;
1203 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301204}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301205.navbar-fixed-top .navbar-inner {
1206 padding-left: 0;
1207 padding-right: 0;
1208 -webkit-border-radius: 0;
1209 -moz-border-radius: 0;
1210 border-radius: 0;
1211}
1212.navbar .nav {
1213 position: relative;
1214 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301215 display: block;
1216 float: left;
1217 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301218}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301219.navbar .nav.pull-right {
1220 float: right;
1221}
1222.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301223 display: block;
1224 float: left;
1225}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301226.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301227 float: none;
1228 padding: 10px 10px 11px;
1229 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301230 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301231 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301232 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301233}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301234.navbar .nav > li > a:hover {
1235 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301236 color: #ffffff;
1237 text-decoration: none;
1238}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301239.navbar .nav .active > a, .navbar .nav .active > a:hover {
1240 color: #ffffff;
1241 text-decoration: none;
1242 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301243 background-color: rgba(0, 0, 0, 0.5);
1244}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301245.navbar .divider-vertical {
1246 height: 40px;
1247 width: 1px;
1248 margin: 0 9px;
1249 overflow: hidden;
1250 background-color: #222222;
1251 border-right: 1px solid #333333;
1252}
1253.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301254 margin-left: 10px;
1255 margin-right: 0;
1256}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301257.navbar .dropdown-menu {
1258 margin-top: 1px;
1259 -webkit-border-radius: 4px;
1260 -moz-border-radius: 4px;
1261 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301262}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301263.navbar .dropdown-menu:before {
1264 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301265 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301266 border-left: 7px solid transparent;
1267 border-right: 7px solid transparent;
1268 border-bottom: 7px solid #ccc;
1269 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301270 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301271 top: -7px;
1272 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301273}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301274.navbar .dropdown-menu:after {
1275 content: '';
1276 display: inline-block;
1277 border-left: 6px solid transparent;
1278 border-right: 6px solid transparent;
1279 border-bottom: 6px solid #ffffff;
1280 position: absolute;
1281 top: -6px;
1282 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301283}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301284.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
1285 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301286}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301287.navbar .nav .active .caret {
1288 opacity: 1;
1289 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301290}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301291.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
1292 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301293}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301294.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301295 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301296}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301297.navbar .nav.pull-right .dropdown-menu {
1298 left: auto;
1299 right: 0;
1300}
1301.navbar .nav.pull-right .dropdown-menu:before {
1302 left: auto;
1303 right: 12px;
1304}
1305.navbar .nav.pull-right .dropdown-menu:after {
1306 left: auto;
1307 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301308}
1309
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301310/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301311.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301312 display: block;
1313 float: right;
1314 width: 20px;
1315 margin-bottom: -5px;
1316 margin-top: 10px;
1317 visibility: hidden;
1318}
1319
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301320.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301321 padding: 0px 20px;
1322}
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301323
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301324
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301325/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301326 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301327 */
1328.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301329 position: relative;
1330}
1331.dropdown-toggle {
1332 *margin-bottom: -3px;
1333}
1334.dropdown-toggle:active, .open .dropdown-toggle {
1335 outline: 0;
1336}
1337.caret {
1338 display: inline-block;
1339 width: 0;
1340 height: 0;
1341 text-indent: -99999px;
1342 *text-indent: 0;
1343 vertical-align: top;
1344 border-left: 4px solid transparent;
1345 border-right: 4px solid transparent;
1346 border-top: 4px solid #000000;
1347 opacity: 0.3;
1348 filter: alpha(opacity=30);
1349 content: "\2193";
1350}
1351.dropdown .caret {
1352 margin-top: 8px;
1353 margin-left: 2px;
1354}
1355.dropdown:hover .caret, .open.dropdown .caret {
1356 opacity: 1;
1357 filter: alpha(opacity=100);
1358}
1359.dropdown-menu {
1360 position: absolute;
1361 top: 100%;
1362 left: 0;
1363 z-index: 1000;
1364 float: left;
1365 display: none;
1366 min-width: 160px;
1367 max-width: 220px;
1368 _width: 160px;
1369 padding: 4px 0;
1370 margin: 0;
1371 list-style: none;
1372 background-color: #ffffff;
1373 border-color: #ccc;
1374 border-color: rgba(0, 0, 0, 0.2);
1375 border-style: solid;
1376 border-width: 1px;
1377 -webkit-border-radius: 0 0 5px 5px;
1378 -moz-border-radius: 0 0 5px 5px;
1379 border-radius: 0 0 5px 5px;
1380 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1381 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1382 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1383 -webkit-background-clip: padding-box;
1384 -moz-background-clip: padding;
1385 background-clip: padding-box;
1386 *border-right-width: 2px;
1387 *border-bottom-width: 2px;
1388}
1389.dropdown-menu.bottom-up {
1390 top: auto;
1391 bottom: 100%;
1392 margin-bottom: 2px;
1393}
1394.dropdown-menu .divider {
1395 height: 1px;
1396 margin: 5px 1px;
1397 overflow: hidden;
1398 background-color: #e5e5e5;
1399 border-bottom: 1px solid #ffffff;
1400 *width: 100%;
1401 *margin: -5px 0 5px;
1402}
1403.dropdown-menu a {
1404 display: block;
1405 padding: 3px 15px;
1406 clear: both;
1407 font-weight: normal;
1408 line-height: 18px;
1409 color: #555555;
1410 white-space: nowrap;
1411}
1412.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1413 color: #ffffff;
1414 text-decoration: none;
1415 background-color: #0088cc;
1416}
1417.dropdown.open {
1418 *z-index: 1000;
1419}
1420.dropdown.open .dropdown-toggle {
1421 color: #ffffff;
1422 background: #ccc;
1423 background: rgba(0, 0, 0, 0.3);
1424}
1425.dropdown.open .dropdown-menu {
1426 display: block;
1427}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301428
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301429/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301430 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301431 */
1432.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301433 position: absolute;
1434 z-index: 1020;
1435 display: block;
1436 visibility: visible;
1437 padding: 5px;
1438 font-size: 11px;
1439 opacity: 0;
1440 filter: alpha(opacity=0);
1441}
1442.tooltip.in {
1443 opacity: 0.8;
1444 filter: alpha(opacity=80);
1445}
1446.tooltip.top {
1447 margin-top: -2px;
1448}
1449.tooltip.right {
1450 margin-left: 2px;
1451}
1452.tooltip.bottom {
1453 margin-top: 2px;
1454}
1455.tooltip.left {
1456 margin-left: -2px;
1457}
1458.tooltip.top .tooltip-arrow {
1459 bottom: 0;
1460 left: 50%;
1461 margin-left: -5px;
1462 border-left: 5px solid transparent;
1463 border-right: 5px solid transparent;
1464 border-top: 5px solid #000000;
1465}
1466.tooltip.left .tooltip-arrow {
1467 top: 50%;
1468 right: 0;
1469 margin-top: -5px;
1470 border-top: 5px solid transparent;
1471 border-bottom: 5px solid transparent;
1472 border-left: 5px solid #000000;
1473}
1474.tooltip.bottom .tooltip-arrow {
1475 top: 0;
1476 left: 50%;
1477 margin-left: -5px;
1478 border-left: 5px solid transparent;
1479 border-right: 5px solid transparent;
1480 border-bottom: 5px solid #000000;
1481}
1482.tooltip.right .tooltip-arrow {
1483 top: 50%;
1484 left: 0;
1485 margin-top: -5px;
1486 border-top: 5px solid transparent;
1487 border-bottom: 5px solid transparent;
1488 border-right: 5px solid #000000;
1489}
1490.tooltip-inner {
1491 max-width: 200px;
1492 padding: 3px 8px;
1493 color: #ffffff;
1494 text-align: center;
1495 text-decoration: none;
1496 background-color: #000000;
1497 -webkit-border-radius: 4px;
1498 -moz-border-radius: 4px;
1499 border-radius: 4px;
1500}
1501.tooltip-arrow {
1502 position: absolute;
1503 width: 0;
1504 height: 0;
1505}
1506.popover {
1507 position: absolute;
1508 top: 0;
1509 left: 0;
1510 z-index: 1010;
1511 display: none;
1512 padding: 5px;
1513}
1514.popover.top {
1515 margin-top: -5px;
1516}
1517.popover.right {
1518 margin-left: 5px;
1519}
1520.popover.bottom {
1521 margin-top: 5px;
1522}
1523.popover.left {
1524 margin-left: -5px;
1525}
1526.popover.top .arrow {
1527 bottom: 0;
1528 left: 50%;
1529 margin-left: -5px;
1530 border-left: 5px solid transparent;
1531 border-right: 5px solid transparent;
1532 border-top: 5px solid #000000;
1533}
1534.popover.right .arrow {
1535 top: 50%;
1536 left: 0;
1537 margin-top: -5px;
1538 border-top: 5px solid transparent;
1539 border-bottom: 5px solid transparent;
1540 border-right: 5px solid #000000;
1541}
1542.popover.bottom .arrow {
1543 top: 0;
1544 left: 50%;
1545 margin-left: -5px;
1546 border-left: 5px solid transparent;
1547 border-right: 5px solid transparent;
1548 border-bottom: 5px solid #000000;
1549}
1550.popover.left .arrow {
1551 top: 50%;
1552 right: 0;
1553 margin-top: -5px;
1554 border-top: 5px solid transparent;
1555 border-bottom: 5px solid transparent;
1556 border-left: 5px solid #000000;
1557}
1558.popover .arrow {
1559 position: absolute;
1560 width: 0;
1561 height: 0;
1562}
1563.popover-inner {
1564 padding: 3px;
1565 width: 280px;
1566 overflow: hidden;
1567 background: #000000;
1568 background: rgba(0, 0, 0, 0.8);
1569 -webkit-border-radius: 6px;
1570 -moz-border-radius: 6px;
1571 border-radius: 6px;
1572 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1573 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1574 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1575}
1576.popover-title {
1577 padding: 9px 15px;
1578 line-height: 1;
1579 background-color: #f5f5f5;
1580 border-bottom: 1px solid #eee;
1581 -webkit-border-radius: 3px 3px 0 0;
1582 -moz-border-radius: 3px 3px 0 0;
1583 border-radius: 3px 3px 0 0;
1584}
1585.popover-content {
1586 padding: 14px;
1587 background-color: #ffffff;
1588 -webkit-border-radius: 0 0 3px 3px;
1589 -moz-border-radius: 0 0 3px 3px;
1590 border-radius: 0 0 3px 3px;
1591 -webkit-background-clip: padding-box;
1592 -moz-background-clip: padding-box;
1593 background-clip: padding-box;
1594}
1595.popover-content p, .popover-content ul, .popover-content ol {
1596 margin-bottom: 0;
1597}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301598
Rushabh Mehtad0251332012-02-21 17:26:50 +05301599/*
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301600 * lib/css/ui/fonts.css
1601 */
1602@font-face {
1603 font-family: 'Pontano Sans';
1604 font-style: normal;
1605 font-weight: 800;
1606 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
1607}
1608
1609@font-face {
1610 font-family: 'Droid Sans';
1611 font-style: normal;
1612 font-weight: normal;
1613 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
1614}
1615
1616@font-face {
1617 font-family: 'PT Sans';
1618 font-style: normal;
1619 font-weight: normal;
1620 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
1621}
1622
1623@font-face {
1624 font-family: 'Open Sans';
1625 font-style: normal;
1626 font-weight: 400;
1627 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
1628}
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301629
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301630@font-face {
1631 font-family: 'Lato';
1632 font-style: normal;
1633 font-weight: 400;
1634 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
1635}
1636
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301637@font-face {
1638 font-family: 'Cabin';
1639 font-style: normal;
1640 font-weight: 400;
1641 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
1642}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301643
1644
1645/*
1646 * lib/css/ui/list.css
1647 */
1648.hide {
1649 display: none;
1650}
1651
1652.list-filters {
1653 margin: 7px 0px;
1654}
1655
1656.wnlist .img-load {
1657 display: none;
1658 float: left;
1659 margin-bottom: 8px;
1660}
1661
1662/* list-row */
1663div.list-row {
1664 border-bottom: 1px solid #eee;
1665 padding: 5px 0px;
1666}
1667div.list-row:hover {
1668 background-color: #eef
1669}
1670
1671div.list-row .label {
1672 margin-right: 4px;
1673}
1674
1675div.list-row table {
1676 table-layout: fixed;
1677 border-collapse: collapse;
1678 width: 100%;
1679}
1680
1681div.list-row table td {
1682 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05301683 /*padding-right: 3px;*/
1684 padding: 0px 3px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301685 vertical-align: middle;
1686 height: 24px;
1687 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05301688 word-wrap: break-word;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301689}
1690
1691div.paging-button {
1692 text-align: center;
1693 padding: 11px 0px;
1694}
1695
1696div.show_filters {
1697 display: none;
1698}
1699
1700div.filter_list {
1701 padding: 13px;
1702}
1703
1704div.show_filters.well {
1705 margin-top: 11px;
1706 margin-bottom: 11px;
1707}
1708
1709div.filter_list .run_btn {
1710 text-align: right;
1711}
1712
1713div.filter_list .add_filter {
1714 margin: 3px 0px;
1715}
1716
1717div.list_filter {
1718 margin: 7px 0px;
1719}
1720
1721div.list_filter input, div.list_filter select {
1722 width: 130px;
1723 margin-right: 7px;
1724}
1725
1726/* bar */
1727
1728span.bar-outer {
1729 display: inline-block;
1730 margin: 0px 7px;
1731 margin-top: 3px;
1732 background-color: #fff;
1733 border: 1px solid #aaa;
1734 height: 10px;
1735}
1736
1737span.bar-inner {
1738 display: inline-block;
1739 background-color: #bdf;
1740 height: 100%;
1741 margin-bottom: 2px;
1742 float: left;
1743}
1744span.bar-complete {
1745 background-color: #009900;
1746}
1747span.bar-empty {
1748 background-color: #990000;
1749}
1750
1751
1752/* stats */
1753
1754div.stat-wrapper {
1755 margin-bottom: 19px;
1756}
1757
1758div.stat-grid {
1759 border: 2px solid #bbb;
1760 background-color: white;
1761 border-radius: 5px;
1762 -moz-border-radius: 5px;
1763 -webkit-border-radius: 5px;
1764 overflow: hidden;
1765}
1766
1767div.stat-label {
1768 position: relative;
1769 padding: 3px;
1770 text-align: center;
1771}
1772div.stat-label, div.stat-label a {
1773 z-index: 5;
1774}
1775
1776div.stat-item {
1777 position: relative;
1778 border-bottom: 1px solid #ddd;
1779}
1780div.stat-item:last-child {
1781 border-bottom: 0px solid #ddd;
1782}
1783
1784div.stat-bar {
1785 position: absolute;
1786 left: 0px;
1787 background-color: #def;
1788 height: 100%;
1789 z-index: 0;
1790}
1791
1792
1793
1794
1795
1796/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301797 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301798 */
1799h1, h2, h3, h4, h5 {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301800 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301801 font-weight: normal;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301802 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301803}
1804
1805body {
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301806 font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05301807 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301808}
1809
1810span, div, td, input, textarea, button, select {
1811 font-family: inherit;
1812}
1813
1814body {
Rushabh Mehta7af1c882012-03-22 11:59:46 +05301815 background: url(../images/redbeech.jpg) repeat;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301816 color: #616161;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301817}
1818
Rushabh Mehta983a1712012-03-21 13:35:34 +05301819.small {
1820 font-size: 11.5px;
1821}
1822
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301823.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05301824 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301825 text-align: center;
1826}
1827
Anand Doshidb628762012-02-24 17:56:00 +05301828.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05301829 margin: -3px 0px;
1830 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05301831 min-width: 20px;
1832 text-align: center;
1833 display: inline-block;
1834 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301835 color: #999999;
1836 background-color: #333131;
1837}
1838
1839.navbar-new-comments:hover,
1840.navbar-new-comments:active,
1841.navbar-new-comments:focus {
1842 color: #fff;
1843}
1844
1845
1846.navbar-new-comments-true {
1847 color: #fff;
1848 background-color: #B00D07;
1849}
1850
1851.navbar-icon-home {
1852 vertical-align: middle;
1853 opacity:0.4;
1854 Filter:alpha(opacity=40); /* For IE8 and earlier */
1855}
1856
1857.navbar-icon-home:hover,
1858.navbar-icon-home:focus,
Anand Doshiac144122012-02-27 19:16:24 +05301859.navbar-icon-home:active,
1860.navbar-icon-home-hover{
Anand Doshi5b1beeb2012-02-27 17:17:48 +05301861 opacity:1;
1862 Filter:alpha(opacity=100); /* For IE8 and earlier */
1863}
1864
1865/*extra size menus for recent*/
1866.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
1867 min-width: 160px !important;
1868 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05301869}
1870
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301871
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301872/*
1873 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301874 */
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301875div#body_div, header .container, .content, #opened-page-selector, footer {
1876 width: 900px;
1877}
1878
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301879.layout_wrapper {
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301880 padding: 27px;
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05301881}
1882
Rushabh Mehtab6f80882012-03-23 14:19:49 +05301883p, li {
1884 line-height: 1.6em;
1885}
1886
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301887pre {
1888 background-color: #F8F8F8;
1889 border: 1px solid #CCCCCC;
1890 border-radius: 3px 3px 3px 3px;
1891 font-size: 13px;
1892 line-height: 19px;
1893 overflow: auto;
1894 padding: 6px 10px;
1895 margin-bottom: 9px;
1896}
1897
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301898.web-content input[type="text"], .web-content input[type="password"], .web-content select {
1899 min-width: 180px;
1900}
1901
Rushabh Mehta13531b72012-02-20 12:35:23 +05301902.web-head-section {
1903 margin-bottom: 20px
1904}
1905
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301906.web-main-section {
1907 width: 65%;
1908 float: left;
1909 margin-bottom: 20px;
1910}
1911
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301912.web-side-section {
1913 width: 30%;
1914 float: right;
1915 margin-bottom: 20px;
1916 margin-right: 15px;
1917 color: #606060;
1918 overflow-x: hidden;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05301919 font-size: 90%;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301920}
1921
1922.web-page-status {
1923 padding: 7px;
1924 color: #777;
1925 clear: both;
1926 text-align: right;
1927}
1928
1929.web-page-status a,
1930.web-page-status a:hover,
1931.web-page-status a:visited {
1932 padding: 2px;
1933 background-color: #777;
1934 color: #FFF;
1935 text-decoration: none;
1936}
1937
1938.web-page-status a:hover {
1939 background-color: #444;
1940}
1941
1942footer {
1943 color: #777;
1944}
1945
1946.web-footer {
1947 color: inherit;
1948 text-align: center;
1949 margin: 10px;
1950 line-height: 1.7;
1951}
1952
1953.web-footer div, .web-footer a {
1954 font-size: 11px;
1955}
1956
1957.web-footer-menu {
1958 margin-bottom: 7px;
1959}
1960footer a, footer a:visited {
1961 color: #777;
1962}
1963
1964footer a:hover {
1965 background-color: #777;
1966 color: #fff;
1967}
1968
1969.web-footer-menu ul {
1970 list-style: none;
1971 margin: 0px;
1972 padding: 0px;
1973}
1974
1975.web-footer-menu ul li {
1976 display: inline;
1977 padding: 2px 15px;
1978 border-right: 1px solid #999;
1979}
1980
1981.web-footer-menu ul li:last-child {
1982 border-right: 0px solid #777 !important;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301983}
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301984
1985/* slide view */
1986
1987.next-slide {
1988 margin: 0px -27px 100px -27px;
1989 background: #ffffff; /* Old browsers */
1990 background: -moz-linear-gradient(top, #eeeeee 0%, #fff 100%); /* FF3.6+ */
1991 background: -webkit-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Chrome10+,Safari5.1+ */
1992 background: -o-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Opera 11.10+ */
1993 background: -ms-linear-gradient(top, #eeeeee 0%, #fff 100%); /* IE10+ */
1994 background: linear-gradient(top, #eeeeee 0%, #fff 100%); /* W3C */
1995 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#fff',GradientType=0 ); /* IE6-9 */
1996 height: 36px;
1997}
1998
1999.slide-shadow {
2000 background: #eeeeee; /* Old browsers */
2001 background: -moz-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* FF3.6+ */
2002 background: -webkit-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
2003 background: -o-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Opera 11.10+ */
2004 background: -ms-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* IE10+ */
2005 background: linear-gradient(top, #bababa 0%,#eeeeee 100%); /* W3C */
2006 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bababa', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
2007 height: 3px;
2008 margin: 100px -27px 0px -27px;
2009 border-top: 1px solid #bababa;
2010}
2011
2012.two-column {
2013 width: 40%;
2014 float: left;
2015 padding: 5%;
2016}
2017
2018.clear {
2019 clear: both;
2020}
2021
2022/* */