blob: b32cff8403bc23c1e90a3ccf45fce8cd49a96cc4 [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05303 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05306
7h1,
8h2,
9h3,
10h4,
11h5,
12h6 {
13 margin: 0;
14 font-weight: bold;
15 color: #333333;
16 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053017}
18h1 small,
19h2 small,
20h3 small,
21h4 small,
22h5 small,
23h6 small {
24 font-weight: normal;
25 color: #999999;
26}
27h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053028 font-size: 280%;
29 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053030}
31h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053032 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053033}
34h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053035 font-size: 200%;
36 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053037}
38h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053039 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053040}
41h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053042 font-size: 210%;
43 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053044}
45h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053046 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053047}
48h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053049 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053050}
51h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053052 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053053}
54h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053055 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053056}
57h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053058 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053059}
60h6 {
61 font-size: 11px;
62 color: #999999;
63 text-transform: uppercase;
64}
Rushabh Mehta519f70b2012-03-09 16:44:21 +053065
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053066/*
67 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +053068 */
69.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +053070 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053071 float: right;
72 font-size: 20px;
73 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053074 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053075 color: #000000;
76 text-shadow: 0 1px 0 #ffffff;
77 opacity: 0.2;
78 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +053079}
Rushabh Mehta6e156c72012-02-21 11:19:24 +053080.close:hover {
81 color: #000000;
82 text-decoration: none;
83 opacity: 0.4;
84 filter: alpha(opacity=40);
85 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053086}
87.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +053088 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053089 padding: 4px 10px 4px;
90 font-size: 13px;
91 line-height: 18px;
92 color: #333333;
93 text-align: center;
94 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
95 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053096 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
97 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
98 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
99 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
100 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
101 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530102 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530103 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530104 border: 1px solid #ccc;
105 border-bottom-color: #bbb;
106 -webkit-border-radius: 4px;
107 -moz-border-radius: 4px;
108 border-radius: 4px;
109 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
110 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
111 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 +0530112 cursor: pointer;
113 *margin-left: .3em;
114}
115.btn:first-child {
116 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530117}
118.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530119 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530120 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530121 background-color: #e6e6e6;
122 background-position: 0 -15px;
123 -webkit-transition: background-position 0.1s linear;
124 -moz-transition: background-position 0.1s linear;
125 -ms-transition: background-position 0.1s linear;
126 -o-transition: background-position 0.1s linear;
127 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530128}
129.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530130 outline: thin dotted;
131 outline: 5px auto -webkit-focus-ring-color;
132 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530133}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530134.btn.active, .btn:active {
135 background-image: none;
136 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
137 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
138 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
139 background-color: #e6e6e6;
140 background-color: #d9d9d9 \9;
141 color: rgba(0, 0, 0, 0.5);
142 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530143}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530144.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530145 cursor: default;
146 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530147 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530148 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530149 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530150 -webkit-box-shadow: none;
151 -moz-box-shadow: none;
152 box-shadow: none;
153}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530154.btn-large {
155 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530156 font-size: 15px;
157 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530158 -webkit-border-radius: 5px;
159 -moz-border-radius: 5px;
160 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530161}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530162.btn-large .icon {
163 margin-top: 1px;
164}
165.btn-small {
166 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530167 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530168 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530169}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530170.btn-small .icon {
171 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530172}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530173.btn-primary,
174.btn-primary:hover,
175.btn-warning,
176.btn-warning:hover,
177.btn-danger,
178.btn-danger:hover,
179.btn-success,
180.btn-success:hover,
181.btn-info,
182.btn-info:hover {
183 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
184 color: #ffffff;
185}
186.btn-primary.active,
187.btn-warning.active,
188.btn-danger.active,
189.btn-success.active,
190.btn-info.active {
191 color: rgba(255, 255, 255, 0.75);
192}
193.btn-primary {
194 background-color: #006dcc;
195 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
196 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
197 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
198 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
199 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
200 background-image: linear-gradient(top, #0088cc, #0044cc);
201 background-repeat: repeat-x;
202 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
203 border-color: #0044cc #0044cc #002a80;
204 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
205 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
206}
207.btn-primary:hover,
208.btn-primary:active,
209.btn-primary.active,
210.btn-primary.disabled,
211.btn-primary[disabled] {
212 background-color: #0044cc;
213}
214.btn-primary:active, .btn-primary.active {
215 background-color: #003399 \9;
216}
217.btn-warning {
218 background-color: #faa732;
219 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
220 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
221 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
222 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
223 background-image: -o-linear-gradient(top, #fbb450, #f89406);
224 background-image: linear-gradient(top, #fbb450, #f89406);
225 background-repeat: repeat-x;
226 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
227 border-color: #f89406 #f89406 #ad6704;
228 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
229 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
230}
231.btn-warning:hover,
232.btn-warning:active,
233.btn-warning.active,
234.btn-warning.disabled,
235.btn-warning[disabled] {
236 background-color: #f89406;
237}
238.btn-warning:active, .btn-warning.active {
239 background-color: #c67605 \9;
240}
241.btn-danger {
242 background-color: #da4f49;
243 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
244 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
245 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
246 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
247 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
248 background-image: linear-gradient(top, #ee5f5b, #bd362f);
249 background-repeat: repeat-x;
250 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
251 border-color: #bd362f #bd362f #802420;
252 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
253 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
254}
255.btn-danger:hover,
256.btn-danger:active,
257.btn-danger.active,
258.btn-danger.disabled,
259.btn-danger[disabled] {
260 background-color: #bd362f;
261}
262.btn-danger:active, .btn-danger.active {
263 background-color: #942a25 \9;
264}
265.btn-success {
266 background-color: #5bb75b;
267 background-image: -moz-linear-gradient(top, #62c462, #51a351);
268 background-image: -ms-linear-gradient(top, #62c462, #51a351);
269 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
270 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
271 background-image: -o-linear-gradient(top, #62c462, #51a351);
272 background-image: linear-gradient(top, #62c462, #51a351);
273 background-repeat: repeat-x;
274 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
275 border-color: #51a351 #51a351 #387038;
276 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
277 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
278}
279.btn-success:hover,
280.btn-success:active,
281.btn-success.active,
282.btn-success.disabled,
283.btn-success[disabled] {
284 background-color: #51a351;
285}
286.btn-success:active, .btn-success.active {
287 background-color: #408140 \9;
288}
289.btn-info {
290 background-color: #49afcd;
291 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
292 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
293 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
294 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
295 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
296 background-image: linear-gradient(top, #5bc0de, #2f96b4);
297 background-repeat: repeat-x;
298 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
299 border-color: #2f96b4 #2f96b4 #1f6377;
300 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
301 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
302}
303.btn-info:hover,
304.btn-info:active,
305.btn-info.active,
306.btn-info.disabled,
307.btn-info[disabled] {
308 background-color: #2f96b4;
309}
310.btn-info:active, .btn-info.active {
311 background-color: #24748c \9;
312}
313button.btn, input[type="submit"].btn {
314 *padding-top: 2px;
315 *padding-bottom: 2px;
316}
317button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530318 padding: 0;
319 border: 0;
320}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530321button.btn.large, input[type="submit"].btn.large {
322 *padding-top: 7px;
323 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530324}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530325button.btn.small, input[type="submit"].btn.small {
326 *padding-top: 3px;
327 *padding-bottom: 3px;
328}
329.btn-group {
330 position: relative;
331 *zoom: 1;
332 *margin-left: .3em;
333}
334.btn-group:before, .btn-group:after {
335 display: table;
336 content: "";
337}
338.btn-group:after {
339 clear: both;
340}
341.btn-group:first-child {
342 *margin-left: 0;
343}
344.btn-group + .btn-group {
345 margin-left: 5px;
346}
347.btn-toolbar {
348 margin-top: 9px;
349 margin-bottom: 9px;
350}
351.btn-toolbar .btn-group {
352 display: inline-block;
353 *display: inline;
354 /* IE7 inline-block hack */
355
356 *zoom: 1;
357}
358.btn-group .btn {
359 position: relative;
360 float: left;
361 margin-left: -1px;
362 -webkit-border-radius: 0;
363 -moz-border-radius: 0;
364 border-radius: 0;
365}
366.btn-group .btn:first-child {
367 margin-left: 0;
368 -webkit-border-top-left-radius: 4px;
369 -moz-border-radius-topleft: 4px;
370 border-top-left-radius: 4px;
371 -webkit-border-bottom-left-radius: 4px;
372 -moz-border-radius-bottomleft: 4px;
373 border-bottom-left-radius: 4px;
374}
375.btn-group .btn:last-child, .btn-group .dropdown-toggle {
376 -webkit-border-top-right-radius: 4px;
377 -moz-border-radius-topright: 4px;
378 border-top-right-radius: 4px;
379 -webkit-border-bottom-right-radius: 4px;
380 -moz-border-radius-bottomright: 4px;
381 border-bottom-right-radius: 4px;
382}
383.btn-group .btn.large:first-child {
384 margin-left: 0;
385 -webkit-border-top-left-radius: 6px;
386 -moz-border-radius-topleft: 6px;
387 border-top-left-radius: 6px;
388 -webkit-border-bottom-left-radius: 6px;
389 -moz-border-radius-bottomleft: 6px;
390 border-bottom-left-radius: 6px;
391}
392.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
393 -webkit-border-top-right-radius: 6px;
394 -moz-border-radius-topright: 6px;
395 border-top-right-radius: 6px;
396 -webkit-border-bottom-right-radius: 6px;
397 -moz-border-radius-bottomright: 6px;
398 border-bottom-right-radius: 6px;
399}
400.btn-group .btn:hover,
401.btn-group .btn:focus,
402.btn-group .btn:active,
403.btn-group .btn.active {
404 z-index: 2;
405}
406.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
407 outline: 0;
408}
409.btn-group .dropdown-toggle {
410 padding-left: 8px;
411 padding-right: 8px;
412 -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);
413 -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);
414 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);
415 *padding-top: 5px;
416 *padding-bottom: 5px;
417}
418.btn-group.open {
419 *z-index: 1000;
420}
421.btn-group.open .dropdown-menu {
422 display: block;
423 margin-top: 1px;
424 -webkit-border-radius: 5px;
425 -moz-border-radius: 5px;
426 border-radius: 5px;
427}
428.btn-group.open .dropdown-toggle {
429 background-image: none;
430 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
431 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
432 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
433}
434.btn .caret {
435 margin-top: 7px;
436 margin-left: 0;
437}
438.btn:hover .caret, .open.btn-group .caret {
439 opacity: 1;
440 filter: alpha(opacity=100);
441}
442.btn-primary .caret,
443.btn-danger .caret,
444.btn-info .caret,
445.btn-success .caret {
446 border-top-color: #ffffff;
447 opacity: 0.75;
448 filter: alpha(opacity=75);
449}
450.btn-small .caret {
451 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530452}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530453
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530454/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530455 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530456 */
457.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530458 margin-left: 0;
459 margin-bottom: 18px;
460 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530461}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530462.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530463 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530464}
465.nav > li > a:hover {
466 text-decoration: none;
467 background-color: #eeeeee;
468}
469.nav-list {
470 padding-left: 14px;
471 padding-right: 14px;
472 margin-bottom: 0;
473}
474.nav-list > li > a, .nav-list .nav-header {
475 display: block;
476 padding: 3px 15px;
477 margin-left: -15px;
478 margin-right: -15px;
479 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
480}
481.nav-list .nav-header {
482 font-size: 11px;
483 font-weight: bold;
484 line-height: 18px;
485 color: #999999;
486 text-transform: uppercase;
487}
488.nav-list > li + .nav-header {
489 margin-top: 9px;
490}
491.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530492 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530493 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
494 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530495}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530496.nav-list [class^="icon-"] {
497 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530498}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530499.nav-tabs, .nav-pills {
500 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530501}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530502.nav-tabs:before,
503.nav-pills:before,
504.nav-tabs:after,
505.nav-pills:after {
506 display: table;
507 content: "";
508}
509.nav-tabs:after, .nav-pills:after {
510 clear: both;
511}
512.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530513 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530514}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530515.nav-tabs > li > a, .nav-pills > li > a {
516 padding-right: 12px;
517 padding-left: 12px;
518 margin-right: 2px;
519 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530520}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530521.nav-tabs {
522 border-bottom: 1px solid #ddd;
523}
524.nav-tabs > li {
525 margin-bottom: -1px;
526}
527.nav-tabs > li > a {
528 padding-top: 9px;
529 padding-bottom: 9px;
530 border: 1px solid transparent;
531 -webkit-border-radius: 4px 4px 0 0;
532 -moz-border-radius: 4px 4px 0 0;
533 border-radius: 4px 4px 0 0;
534}
535.nav-tabs > li > a:hover {
536 border-color: #eeeeee #eeeeee #dddddd;
537}
538.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
539 color: #555555;
540 background-color: #ffffff;
541 border: 1px solid #ddd;
542 border-bottom-color: transparent;
543 cursor: default;
544}
545.nav-pills > li > a {
546 padding-top: 8px;
547 padding-bottom: 8px;
548 margin-top: 2px;
549 margin-bottom: 2px;
550 -webkit-border-radius: 5px;
551 -moz-border-radius: 5px;
552 border-radius: 5px;
553}
554.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530555 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530556 background-color: #0088cc;
557}
558.nav-stacked > li {
559 float: none;
560}
561.nav-stacked > li > a {
562 margin-right: 0;
563}
564.nav-tabs.nav-stacked {
565 border-bottom: 0;
566}
567.nav-tabs.nav-stacked > li > a {
568 border: 1px solid #ddd;
569 -webkit-border-radius: 0;
570 -moz-border-radius: 0;
571 border-radius: 0;
572}
573.nav-tabs.nav-stacked > li:first-child > a {
574 -webkit-border-radius: 4px 4px 0 0;
575 -moz-border-radius: 4px 4px 0 0;
576 border-radius: 4px 4px 0 0;
577}
578.nav-tabs.nav-stacked > li:last-child > a {
579 -webkit-border-radius: 0 0 4px 4px;
580 -moz-border-radius: 0 0 4px 4px;
581 border-radius: 0 0 4px 4px;
582}
583.nav-tabs.nav-stacked > li > a:hover {
584 border-color: #ddd;
585 z-index: 2;
586}
587.nav-pills.nav-stacked > li > a {
588 margin-bottom: 3px;
589}
590.nav-pills.nav-stacked > li:last-child > a {
591 margin-bottom: 1px;
592}
593.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
594 margin-top: 1px;
595 border-width: 1px;
596}
597.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530598 -webkit-border-radius: 4px;
599 -moz-border-radius: 4px;
600 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530601}
602.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
603 border-top-color: #0088cc;
604 margin-top: 6px;
605}
606.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
607 border-top-color: #005580;
608}
609.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
610 border-top-color: #333333;
611}
612.nav > .dropdown.active > a:hover {
613 color: #000000;
614 cursor: pointer;
615}
616.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
617 color: #ffffff;
618 background-color: #999999;
619 border-color: #999999;
620}
621.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
622 border-top-color: #ffffff;
623 opacity: 1;
624 filter: alpha(opacity=100);
625}
626
627.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530628 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530629 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530630}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530631.navbar-inner {
632 padding-left: 20px;
633 padding-right: 20px;
634 background-color: #2c2c2c;
635 background-image: -moz-linear-gradient(top, #333333, #222222);
636 background-image: -ms-linear-gradient(top, #333333, #222222);
637 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
638 background-image: -webkit-linear-gradient(top, #333333, #222222);
639 background-image: -o-linear-gradient(top, #333333, #222222);
640 background-image: linear-gradient(top, #333333, #222222);
641 background-repeat: repeat-x;
642 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
643 -webkit-border-radius: 4px;
644 -moz-border-radius: 4px;
645 border-radius: 4px;
646 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
647 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
648 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
649}
650.btn-navbar {
651 display: none;
652 float: right;
653 padding: 7px 10px;
654 margin-left: 5px;
655 margin-right: 5px;
656 background-color: #2c2c2c;
657 background-image: -moz-linear-gradient(top, #333333, #222222);
658 background-image: -ms-linear-gradient(top, #333333, #222222);
659 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
660 background-image: -webkit-linear-gradient(top, #333333, #222222);
661 background-image: -o-linear-gradient(top, #333333, #222222);
662 background-image: linear-gradient(top, #333333, #222222);
663 background-repeat: repeat-x;
664 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
665 border-color: #222222 #222222 #000000;
666 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
667 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
668 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
669 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
670 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
671}
672.btn-navbar:hover,
673.btn-navbar:active,
674.btn-navbar.active,
675.btn-navbar.disabled,
676.btn-navbar[disabled] {
677 background-color: #222222;
678}
679.btn-navbar:active, .btn-navbar.active {
680 background-color: #080808 \9;
681}
682.btn-navbar .icon-bar {
683 display: block;
684 width: 18px;
685 height: 2px;
686 background-color: #f5f5f5;
687 -webkit-border-radius: 1px;
688 -moz-border-radius: 1px;
689 border-radius: 1px;
690 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
691 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
692 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
693}
694.btn-navbar .icon-bar + .icon-bar {
695 margin-top: 3px;
696}
697.nav-collapse.collapse {
698 height: auto;
699}
700.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530701 text-decoration: none;
702}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530703.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530704 float: left;
705 display: block;
706 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530707 font-size: 20px;
708 font-weight: 200;
709 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530710 color: #ffffff;
711}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530712.navbar .navbar-text {
713 margin-bottom: 0;
714 line-height: 40px;
715 color: #999999;
716}
717.navbar .navbar-text a:hover {
718 color: #ffffff;
719 background-color: transparent;
720}
721.navbar .btn, .navbar .btn-group {
722 margin-top: 5px;
723}
724.navbar .btn-group .btn {
725 margin-top: 0;
726}
727.navbar-form {
728 margin-bottom: 0;
729 *zoom: 1;
730}
731.navbar-form:before, .navbar-form:after {
732 display: table;
733 content: "";
734}
735.navbar-form:after {
736 clear: both;
737}
738.navbar-form input, .navbar-form select {
739 display: inline-block;
740 margin-top: 5px;
741 margin-bottom: 0;
742}
743.navbar-form .radio, .navbar-form .checkbox {
744 margin-top: 5px;
745}
746.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
747 margin-top: 3px;
748}
749.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530750 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530751 float: left;
752 margin-top: 6px;
753 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530754}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530755.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530756 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530757 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
758 font-size: 13px;
759 font-weight: normal;
760 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530761 color: #ffffff;
762 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530763 background: #666;
764 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530765 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530766 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
767 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
768 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 +0530769 -webkit-transition: none;
770 -moz-transition: none;
771 -ms-transition: none;
772 -o-transition: none;
773 transition: none;
774}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530775.navbar-search .search-query :-moz-placeholder {
776 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530777}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530778.navbar-search .search-query::-webkit-input-placeholder {
779 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530780}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530781.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530782 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530783 background-color: #999999;
784 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530785}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530786.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530787 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530788 color: #333333;
789 text-shadow: 0 1px 0 #ffffff;
790 background-color: #ffffff;
791 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530792 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
793 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
794 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530795 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530796}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530797.navbar-fixed-top {
798 position: fixed;
799 top: 0;
800 right: 0;
801 left: 0;
802 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530803}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530804.navbar-fixed-top .navbar-inner {
805 padding-left: 0;
806 padding-right: 0;
807 -webkit-border-radius: 0;
808 -moz-border-radius: 0;
809 border-radius: 0;
810}
811.navbar .nav {
812 position: relative;
813 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530814 display: block;
815 float: left;
816 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530817}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530818.navbar .nav.pull-right {
819 float: right;
820}
821.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530822 display: block;
823 float: left;
824}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530825.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530826 float: none;
827 padding: 10px 10px 11px;
828 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530829 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530830 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530831 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530832}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530833.navbar .nav > li > a:hover {
834 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530835 color: #ffffff;
836 text-decoration: none;
837}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530838.navbar .nav .active > a, .navbar .nav .active > a:hover {
839 color: #ffffff;
840 text-decoration: none;
841 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530842 background-color: rgba(0, 0, 0, 0.5);
843}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530844.navbar .divider-vertical {
845 height: 40px;
846 width: 1px;
847 margin: 0 9px;
848 overflow: hidden;
849 background-color: #222222;
850 border-right: 1px solid #333333;
851}
852.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530853 margin-left: 10px;
854 margin-right: 0;
855}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530856.navbar .dropdown-menu {
857 margin-top: 1px;
858 -webkit-border-radius: 4px;
859 -moz-border-radius: 4px;
860 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530861}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530862.navbar .dropdown-menu:before {
863 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530864 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530865 border-left: 7px solid transparent;
866 border-right: 7px solid transparent;
867 border-bottom: 7px solid #ccc;
868 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530869 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530870 top: -7px;
871 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530872}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530873.navbar .dropdown-menu:after {
874 content: '';
875 display: inline-block;
876 border-left: 6px solid transparent;
877 border-right: 6px solid transparent;
878 border-bottom: 6px solid #ffffff;
879 position: absolute;
880 top: -6px;
881 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530882}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530883.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
884 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530885}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530886.navbar .nav .active .caret {
887 opacity: 1;
888 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530889}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530890.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
891 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530892}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530893.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530894 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530895}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530896.navbar .nav.pull-right .dropdown-menu {
897 left: auto;
898 right: 0;
899}
900.navbar .nav.pull-right .dropdown-menu:before {
901 left: auto;
902 right: 12px;
903}
904.navbar .nav.pull-right .dropdown-menu:after {
905 left: auto;
906 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530907}
908
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530909/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530910.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530911 display: block;
912 float: right;
913 width: 20px;
914 margin-bottom: -5px;
915 margin-top: 10px;
916 visibility: hidden;
917}
918
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530919.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530920 padding: 0px 20px;
921}
Anand Doshi5b1beeb2012-02-27 17:17:48 +0530922
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530923
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530924/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530925 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530926 */
927.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530928 position: relative;
929}
930.dropdown-toggle {
931 *margin-bottom: -3px;
932}
933.dropdown-toggle:active, .open .dropdown-toggle {
934 outline: 0;
935}
936.caret {
937 display: inline-block;
938 width: 0;
939 height: 0;
940 text-indent: -99999px;
941 *text-indent: 0;
942 vertical-align: top;
943 border-left: 4px solid transparent;
944 border-right: 4px solid transparent;
945 border-top: 4px solid #000000;
946 opacity: 0.3;
947 filter: alpha(opacity=30);
948 content: "\2193";
949}
950.dropdown .caret {
951 margin-top: 8px;
952 margin-left: 2px;
953}
954.dropdown:hover .caret, .open.dropdown .caret {
955 opacity: 1;
956 filter: alpha(opacity=100);
957}
958.dropdown-menu {
959 position: absolute;
960 top: 100%;
961 left: 0;
962 z-index: 1000;
963 float: left;
964 display: none;
965 min-width: 160px;
966 max-width: 220px;
967 _width: 160px;
968 padding: 4px 0;
969 margin: 0;
970 list-style: none;
971 background-color: #ffffff;
972 border-color: #ccc;
973 border-color: rgba(0, 0, 0, 0.2);
974 border-style: solid;
975 border-width: 1px;
976 -webkit-border-radius: 0 0 5px 5px;
977 -moz-border-radius: 0 0 5px 5px;
978 border-radius: 0 0 5px 5px;
979 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
980 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
981 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
982 -webkit-background-clip: padding-box;
983 -moz-background-clip: padding;
984 background-clip: padding-box;
985 *border-right-width: 2px;
986 *border-bottom-width: 2px;
987}
988.dropdown-menu.bottom-up {
989 top: auto;
990 bottom: 100%;
991 margin-bottom: 2px;
992}
993.dropdown-menu .divider {
994 height: 1px;
995 margin: 5px 1px;
996 overflow: hidden;
997 background-color: #e5e5e5;
998 border-bottom: 1px solid #ffffff;
999 *width: 100%;
1000 *margin: -5px 0 5px;
1001}
1002.dropdown-menu a {
1003 display: block;
1004 padding: 3px 15px;
1005 clear: both;
1006 font-weight: normal;
1007 line-height: 18px;
1008 color: #555555;
1009 white-space: nowrap;
1010}
1011.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1012 color: #ffffff;
1013 text-decoration: none;
1014 background-color: #0088cc;
1015}
1016.dropdown.open {
1017 *z-index: 1000;
1018}
1019.dropdown.open .dropdown-toggle {
1020 color: #ffffff;
1021 background: #ccc;
1022 background: rgba(0, 0, 0, 0.3);
1023}
1024.dropdown.open .dropdown-menu {
1025 display: block;
1026}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301027
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301028/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301029 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301030 */
1031.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301032 position: absolute;
1033 z-index: 1020;
1034 display: block;
1035 visibility: visible;
1036 padding: 5px;
1037 font-size: 11px;
1038 opacity: 0;
1039 filter: alpha(opacity=0);
1040}
1041.tooltip.in {
1042 opacity: 0.8;
1043 filter: alpha(opacity=80);
1044}
1045.tooltip.top {
1046 margin-top: -2px;
1047}
1048.tooltip.right {
1049 margin-left: 2px;
1050}
1051.tooltip.bottom {
1052 margin-top: 2px;
1053}
1054.tooltip.left {
1055 margin-left: -2px;
1056}
1057.tooltip.top .tooltip-arrow {
1058 bottom: 0;
1059 left: 50%;
1060 margin-left: -5px;
1061 border-left: 5px solid transparent;
1062 border-right: 5px solid transparent;
1063 border-top: 5px solid #000000;
1064}
1065.tooltip.left .tooltip-arrow {
1066 top: 50%;
1067 right: 0;
1068 margin-top: -5px;
1069 border-top: 5px solid transparent;
1070 border-bottom: 5px solid transparent;
1071 border-left: 5px solid #000000;
1072}
1073.tooltip.bottom .tooltip-arrow {
1074 top: 0;
1075 left: 50%;
1076 margin-left: -5px;
1077 border-left: 5px solid transparent;
1078 border-right: 5px solid transparent;
1079 border-bottom: 5px solid #000000;
1080}
1081.tooltip.right .tooltip-arrow {
1082 top: 50%;
1083 left: 0;
1084 margin-top: -5px;
1085 border-top: 5px solid transparent;
1086 border-bottom: 5px solid transparent;
1087 border-right: 5px solid #000000;
1088}
1089.tooltip-inner {
1090 max-width: 200px;
1091 padding: 3px 8px;
1092 color: #ffffff;
1093 text-align: center;
1094 text-decoration: none;
1095 background-color: #000000;
1096 -webkit-border-radius: 4px;
1097 -moz-border-radius: 4px;
1098 border-radius: 4px;
1099}
1100.tooltip-arrow {
1101 position: absolute;
1102 width: 0;
1103 height: 0;
1104}
1105.popover {
1106 position: absolute;
1107 top: 0;
1108 left: 0;
1109 z-index: 1010;
1110 display: none;
1111 padding: 5px;
1112}
1113.popover.top {
1114 margin-top: -5px;
1115}
1116.popover.right {
1117 margin-left: 5px;
1118}
1119.popover.bottom {
1120 margin-top: 5px;
1121}
1122.popover.left {
1123 margin-left: -5px;
1124}
1125.popover.top .arrow {
1126 bottom: 0;
1127 left: 50%;
1128 margin-left: -5px;
1129 border-left: 5px solid transparent;
1130 border-right: 5px solid transparent;
1131 border-top: 5px solid #000000;
1132}
1133.popover.right .arrow {
1134 top: 50%;
1135 left: 0;
1136 margin-top: -5px;
1137 border-top: 5px solid transparent;
1138 border-bottom: 5px solid transparent;
1139 border-right: 5px solid #000000;
1140}
1141.popover.bottom .arrow {
1142 top: 0;
1143 left: 50%;
1144 margin-left: -5px;
1145 border-left: 5px solid transparent;
1146 border-right: 5px solid transparent;
1147 border-bottom: 5px solid #000000;
1148}
1149.popover.left .arrow {
1150 top: 50%;
1151 right: 0;
1152 margin-top: -5px;
1153 border-top: 5px solid transparent;
1154 border-bottom: 5px solid transparent;
1155 border-left: 5px solid #000000;
1156}
1157.popover .arrow {
1158 position: absolute;
1159 width: 0;
1160 height: 0;
1161}
1162.popover-inner {
1163 padding: 3px;
1164 width: 280px;
1165 overflow: hidden;
1166 background: #000000;
1167 background: rgba(0, 0, 0, 0.8);
1168 -webkit-border-radius: 6px;
1169 -moz-border-radius: 6px;
1170 border-radius: 6px;
1171 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1172 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1173 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1174}
1175.popover-title {
1176 padding: 9px 15px;
1177 line-height: 1;
1178 background-color: #f5f5f5;
1179 border-bottom: 1px solid #eee;
1180 -webkit-border-radius: 3px 3px 0 0;
1181 -moz-border-radius: 3px 3px 0 0;
1182 border-radius: 3px 3px 0 0;
1183}
1184.popover-content {
1185 padding: 14px;
1186 background-color: #ffffff;
1187 -webkit-border-radius: 0 0 3px 3px;
1188 -moz-border-radius: 0 0 3px 3px;
1189 border-radius: 0 0 3px 3px;
1190 -webkit-background-clip: padding-box;
1191 -moz-background-clip: padding-box;
1192 background-clip: padding-box;
1193}
1194.popover-content p, .popover-content ul, .popover-content ol {
1195 margin-bottom: 0;
1196}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301197
Rushabh Mehtad0251332012-02-21 17:26:50 +05301198/*
Rushabh Mehta702473d2012-04-26 19:01:35 +05301199 * lib/css/bootstrap/icons.css
1200 */
Rushabh Mehta389880d2012-04-27 18:39:14 +05301201[class^="icon-"],
1202[class*=" icon-"] {
Rushabh Mehta702473d2012-04-26 19:01:35 +05301203 display: inline-block;
Rushabh Mehta389880d2012-04-27 18:39:14 +05301204 width: 15px;
Rushabh Mehta702473d2012-04-26 19:01:35 +05301205 height: 14px;
Rushabh Mehta389880d2012-04-27 18:39:14 +05301206 *margin-right: .3em;
Rushabh Mehta702473d2012-04-26 19:01:35 +05301207 line-height: 14px;
1208 vertical-align: text-top;
Rushabh Mehtaa9209432012-05-07 18:00:57 +05301209 background-image: url("../images/lib/icons/glyphicons-halflings.png");
Rushabh Mehta702473d2012-04-26 19:01:35 +05301210 background-position: 14px 14px;
1211 background-repeat: no-repeat;
Rushabh Mehta702473d2012-04-26 19:01:35 +05301212}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301213
1214[class^="icon-"]:last-child,
1215[class*=" icon-"]:last-child {
Rushabh Mehta702473d2012-04-26 19:01:35 +05301216 *margin-left: 0;
1217}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301218
Rushabh Mehta702473d2012-04-26 19:01:35 +05301219.icon-white {
Rushabh Mehtaa9209432012-05-07 18:00:57 +05301220 background-image: url("../images/lib/icons/glyphicons-halflings-white.png");
Rushabh Mehta702473d2012-04-26 19:01:35 +05301221}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301222
Rushabh Mehta702473d2012-04-26 19:01:35 +05301223.icon-glass {
1224 background-position: 0 0;
1225}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301226
Rushabh Mehta702473d2012-04-26 19:01:35 +05301227.icon-music {
1228 background-position: -24px 0;
1229}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301230
Rushabh Mehta702473d2012-04-26 19:01:35 +05301231.icon-search {
1232 background-position: -48px 0;
1233}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301234
Rushabh Mehta702473d2012-04-26 19:01:35 +05301235.icon-envelope {
1236 background-position: -72px 0;
1237}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301238
Rushabh Mehta702473d2012-04-26 19:01:35 +05301239.icon-heart {
1240 background-position: -96px 0;
1241}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301242
Rushabh Mehta702473d2012-04-26 19:01:35 +05301243.icon-star {
1244 background-position: -120px 0;
1245}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301246
Rushabh Mehta702473d2012-04-26 19:01:35 +05301247.icon-star-empty {
1248 background-position: -144px 0;
1249}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301250
Rushabh Mehta702473d2012-04-26 19:01:35 +05301251.icon-user {
1252 background-position: -168px 0;
1253}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301254
Rushabh Mehta702473d2012-04-26 19:01:35 +05301255.icon-film {
1256 background-position: -192px 0;
1257}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301258
Rushabh Mehta702473d2012-04-26 19:01:35 +05301259.icon-th-large {
1260 background-position: -216px 0;
1261}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301262
Rushabh Mehta702473d2012-04-26 19:01:35 +05301263.icon-th {
1264 background-position: -240px 0;
1265}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301266
Rushabh Mehta702473d2012-04-26 19:01:35 +05301267.icon-th-list {
1268 background-position: -264px 0;
1269}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301270
Rushabh Mehta702473d2012-04-26 19:01:35 +05301271.icon-ok {
1272 background-position: -288px 0;
1273}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301274
Rushabh Mehta702473d2012-04-26 19:01:35 +05301275.icon-remove {
1276 background-position: -312px 0;
1277}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301278
Rushabh Mehta702473d2012-04-26 19:01:35 +05301279.icon-zoom-in {
1280 background-position: -336px 0;
1281}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301282
Rushabh Mehta702473d2012-04-26 19:01:35 +05301283.icon-zoom-out {
1284 background-position: -360px 0;
1285}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301286
Rushabh Mehta702473d2012-04-26 19:01:35 +05301287.icon-off {
1288 background-position: -384px 0;
1289}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301290
Rushabh Mehta702473d2012-04-26 19:01:35 +05301291.icon-signal {
1292 background-position: -408px 0;
1293}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301294
Rushabh Mehta702473d2012-04-26 19:01:35 +05301295.icon-cog {
1296 background-position: -432px 0;
1297}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301298
Rushabh Mehta702473d2012-04-26 19:01:35 +05301299.icon-trash {
1300 background-position: -456px 0;
1301}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301302
Rushabh Mehta702473d2012-04-26 19:01:35 +05301303.icon-home {
1304 background-position: 0 -24px;
1305}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301306
Rushabh Mehta702473d2012-04-26 19:01:35 +05301307.icon-file {
1308 background-position: -24px -24px;
1309}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301310
Rushabh Mehta702473d2012-04-26 19:01:35 +05301311.icon-time {
1312 background-position: -48px -24px;
1313}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301314
Rushabh Mehta702473d2012-04-26 19:01:35 +05301315.icon-road {
1316 background-position: -72px -24px;
1317}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301318
Rushabh Mehta702473d2012-04-26 19:01:35 +05301319.icon-download-alt {
1320 background-position: -96px -24px;
1321}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301322
Rushabh Mehta702473d2012-04-26 19:01:35 +05301323.icon-download {
1324 background-position: -120px -24px;
1325}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301326
Rushabh Mehta702473d2012-04-26 19:01:35 +05301327.icon-upload {
1328 background-position: -144px -24px;
1329}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301330
Rushabh Mehta702473d2012-04-26 19:01:35 +05301331.icon-inbox {
1332 background-position: -168px -24px;
1333}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301334
Rushabh Mehta702473d2012-04-26 19:01:35 +05301335.icon-play-circle {
1336 background-position: -192px -24px;
1337}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301338
Rushabh Mehta702473d2012-04-26 19:01:35 +05301339.icon-repeat {
1340 background-position: -216px -24px;
1341}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301342
Rushabh Mehta702473d2012-04-26 19:01:35 +05301343.icon-refresh {
1344 background-position: -240px -24px;
1345}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301346
Rushabh Mehta702473d2012-04-26 19:01:35 +05301347.icon-list-alt {
1348 background-position: -264px -24px;
1349}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301350
Rushabh Mehta702473d2012-04-26 19:01:35 +05301351.icon-lock {
1352 background-position: -287px -24px;
1353}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301354
Rushabh Mehta702473d2012-04-26 19:01:35 +05301355.icon-flag {
1356 background-position: -312px -24px;
1357}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301358
Rushabh Mehta702473d2012-04-26 19:01:35 +05301359.icon-headphones {
1360 background-position: -336px -24px;
1361}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301362
Rushabh Mehta702473d2012-04-26 19:01:35 +05301363.icon-volume-off {
1364 background-position: -360px -24px;
1365}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301366
Rushabh Mehta702473d2012-04-26 19:01:35 +05301367.icon-volume-down {
1368 background-position: -384px -24px;
1369}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301370
Rushabh Mehta702473d2012-04-26 19:01:35 +05301371.icon-volume-up {
1372 background-position: -408px -24px;
1373}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301374
Rushabh Mehta702473d2012-04-26 19:01:35 +05301375.icon-qrcode {
1376 background-position: -432px -24px;
1377}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301378
Rushabh Mehta702473d2012-04-26 19:01:35 +05301379.icon-barcode {
1380 background-position: -456px -24px;
1381}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301382
Rushabh Mehta702473d2012-04-26 19:01:35 +05301383.icon-tag {
1384 background-position: 0 -48px;
1385}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301386
Rushabh Mehta702473d2012-04-26 19:01:35 +05301387.icon-tags {
1388 background-position: -25px -48px;
1389}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301390
Rushabh Mehta702473d2012-04-26 19:01:35 +05301391.icon-book {
1392 background-position: -48px -48px;
1393}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301394
Rushabh Mehta702473d2012-04-26 19:01:35 +05301395.icon-bookmark {
1396 background-position: -72px -48px;
1397}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301398
Rushabh Mehta702473d2012-04-26 19:01:35 +05301399.icon-print {
1400 background-position: -96px -48px;
1401}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301402
Rushabh Mehta702473d2012-04-26 19:01:35 +05301403.icon-camera {
1404 background-position: -120px -48px;
1405}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301406
Rushabh Mehta702473d2012-04-26 19:01:35 +05301407.icon-font {
1408 background-position: -144px -48px;
1409}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301410
Rushabh Mehta702473d2012-04-26 19:01:35 +05301411.icon-bold {
1412 background-position: -167px -48px;
1413}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301414
Rushabh Mehta702473d2012-04-26 19:01:35 +05301415.icon-italic {
1416 background-position: -192px -48px;
1417}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301418
Rushabh Mehta702473d2012-04-26 19:01:35 +05301419.icon-text-height {
1420 background-position: -216px -48px;
1421}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301422
Rushabh Mehta702473d2012-04-26 19:01:35 +05301423.icon-text-width {
1424 background-position: -240px -48px;
1425}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301426
Rushabh Mehta702473d2012-04-26 19:01:35 +05301427.icon-align-left {
1428 background-position: -264px -48px;
1429}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301430
Rushabh Mehta702473d2012-04-26 19:01:35 +05301431.icon-align-center {
1432 background-position: -288px -48px;
1433}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301434
Rushabh Mehta702473d2012-04-26 19:01:35 +05301435.icon-align-right {
1436 background-position: -312px -48px;
1437}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301438
Rushabh Mehta702473d2012-04-26 19:01:35 +05301439.icon-align-justify {
1440 background-position: -336px -48px;
1441}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301442
Rushabh Mehta702473d2012-04-26 19:01:35 +05301443.icon-list {
1444 background-position: -360px -48px;
1445}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301446
Rushabh Mehta702473d2012-04-26 19:01:35 +05301447.icon-indent-left {
1448 background-position: -384px -48px;
1449}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301450
Rushabh Mehta702473d2012-04-26 19:01:35 +05301451.icon-indent-right {
1452 background-position: -408px -48px;
1453}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301454
Rushabh Mehta702473d2012-04-26 19:01:35 +05301455.icon-facetime-video {
1456 background-position: -432px -48px;
1457}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301458
Rushabh Mehta702473d2012-04-26 19:01:35 +05301459.icon-picture {
1460 background-position: -456px -48px;
1461}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301462
Rushabh Mehta702473d2012-04-26 19:01:35 +05301463.icon-pencil {
1464 background-position: 0 -72px;
1465}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301466
Rushabh Mehta702473d2012-04-26 19:01:35 +05301467.icon-map-marker {
1468 background-position: -24px -72px;
1469}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301470
Rushabh Mehta702473d2012-04-26 19:01:35 +05301471.icon-adjust {
1472 background-position: -48px -72px;
1473}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301474
Rushabh Mehta702473d2012-04-26 19:01:35 +05301475.icon-tint {
1476 background-position: -72px -72px;
1477}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301478
Rushabh Mehta702473d2012-04-26 19:01:35 +05301479.icon-edit {
1480 background-position: -96px -72px;
1481}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301482
Rushabh Mehta702473d2012-04-26 19:01:35 +05301483.icon-share {
1484 background-position: -120px -72px;
1485}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301486
Rushabh Mehta702473d2012-04-26 19:01:35 +05301487.icon-check {
1488 background-position: -144px -72px;
1489}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301490
Rushabh Mehta702473d2012-04-26 19:01:35 +05301491.icon-move {
1492 background-position: -168px -72px;
1493}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301494
Rushabh Mehta702473d2012-04-26 19:01:35 +05301495.icon-step-backward {
1496 background-position: -192px -72px;
1497}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301498
Rushabh Mehta702473d2012-04-26 19:01:35 +05301499.icon-fast-backward {
1500 background-position: -216px -72px;
1501}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301502
Rushabh Mehta702473d2012-04-26 19:01:35 +05301503.icon-backward {
1504 background-position: -240px -72px;
1505}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301506
Rushabh Mehta702473d2012-04-26 19:01:35 +05301507.icon-play {
1508 background-position: -264px -72px;
1509}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301510
Rushabh Mehta702473d2012-04-26 19:01:35 +05301511.icon-pause {
1512 background-position: -288px -72px;
1513}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301514
Rushabh Mehta702473d2012-04-26 19:01:35 +05301515.icon-stop {
1516 background-position: -312px -72px;
1517}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301518
Rushabh Mehta702473d2012-04-26 19:01:35 +05301519.icon-forward {
1520 background-position: -336px -72px;
1521}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301522
Rushabh Mehta702473d2012-04-26 19:01:35 +05301523.icon-fast-forward {
1524 background-position: -360px -72px;
1525}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301526
Rushabh Mehta702473d2012-04-26 19:01:35 +05301527.icon-step-forward {
1528 background-position: -384px -72px;
1529}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301530
Rushabh Mehta702473d2012-04-26 19:01:35 +05301531.icon-eject {
1532 background-position: -408px -72px;
1533}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301534
Rushabh Mehta702473d2012-04-26 19:01:35 +05301535.icon-chevron-left {
1536 background-position: -432px -72px;
1537}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301538
Rushabh Mehta702473d2012-04-26 19:01:35 +05301539.icon-chevron-right {
1540 background-position: -456px -72px;
1541}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301542
Rushabh Mehta702473d2012-04-26 19:01:35 +05301543.icon-plus-sign {
1544 background-position: 0 -96px;
1545}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301546
Rushabh Mehta702473d2012-04-26 19:01:35 +05301547.icon-minus-sign {
1548 background-position: -24px -96px;
1549}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301550
Rushabh Mehta702473d2012-04-26 19:01:35 +05301551.icon-remove-sign {
1552 background-position: -48px -96px;
1553}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301554
Rushabh Mehta702473d2012-04-26 19:01:35 +05301555.icon-ok-sign {
1556 background-position: -72px -96px;
1557}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301558
Rushabh Mehta702473d2012-04-26 19:01:35 +05301559.icon-question-sign {
1560 background-position: -96px -96px;
1561}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301562
Rushabh Mehta702473d2012-04-26 19:01:35 +05301563.icon-info-sign {
1564 background-position: -120px -96px;
1565}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301566
Rushabh Mehta702473d2012-04-26 19:01:35 +05301567.icon-screenshot {
1568 background-position: -144px -96px;
1569}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301570
Rushabh Mehta702473d2012-04-26 19:01:35 +05301571.icon-remove-circle {
1572 background-position: -168px -96px;
1573}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301574
Rushabh Mehta702473d2012-04-26 19:01:35 +05301575.icon-ok-circle {
1576 background-position: -192px -96px;
1577}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301578
Rushabh Mehta702473d2012-04-26 19:01:35 +05301579.icon-ban-circle {
1580 background-position: -216px -96px;
1581}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301582
Rushabh Mehta702473d2012-04-26 19:01:35 +05301583.icon-arrow-left {
1584 background-position: -240px -96px;
1585}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301586
Rushabh Mehta702473d2012-04-26 19:01:35 +05301587.icon-arrow-right {
1588 background-position: -264px -96px;
1589}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301590
Rushabh Mehta702473d2012-04-26 19:01:35 +05301591.icon-arrow-up {
1592 background-position: -289px -96px;
1593}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301594
Rushabh Mehta702473d2012-04-26 19:01:35 +05301595.icon-arrow-down {
1596 background-position: -312px -96px;
1597}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301598
Rushabh Mehta702473d2012-04-26 19:01:35 +05301599.icon-share-alt {
1600 background-position: -336px -96px;
1601}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301602
Rushabh Mehta702473d2012-04-26 19:01:35 +05301603.icon-resize-full {
1604 background-position: -360px -96px;
1605}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301606
Rushabh Mehta702473d2012-04-26 19:01:35 +05301607.icon-resize-small {
1608 background-position: -384px -96px;
1609}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301610
Rushabh Mehta702473d2012-04-26 19:01:35 +05301611.icon-plus {
1612 background-position: -408px -96px;
1613}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301614
Rushabh Mehta702473d2012-04-26 19:01:35 +05301615.icon-minus {
1616 background-position: -433px -96px;
1617}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301618
Rushabh Mehta702473d2012-04-26 19:01:35 +05301619.icon-asterisk {
1620 background-position: -456px -96px;
1621}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301622
Rushabh Mehta702473d2012-04-26 19:01:35 +05301623.icon-exclamation-sign {
1624 background-position: 0 -120px;
1625}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301626
Rushabh Mehta702473d2012-04-26 19:01:35 +05301627.icon-gift {
1628 background-position: -24px -120px;
1629}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301630
Rushabh Mehta702473d2012-04-26 19:01:35 +05301631.icon-leaf {
1632 background-position: -48px -120px;
1633}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301634
Rushabh Mehta702473d2012-04-26 19:01:35 +05301635.icon-fire {
1636 background-position: -72px -120px;
1637}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301638
Rushabh Mehta702473d2012-04-26 19:01:35 +05301639.icon-eye-open {
1640 background-position: -96px -120px;
1641}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301642
Rushabh Mehta702473d2012-04-26 19:01:35 +05301643.icon-eye-close {
1644 background-position: -120px -120px;
1645}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301646
Rushabh Mehta702473d2012-04-26 19:01:35 +05301647.icon-warning-sign {
1648 background-position: -144px -120px;
1649}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301650
Rushabh Mehta702473d2012-04-26 19:01:35 +05301651.icon-plane {
1652 background-position: -168px -120px;
1653}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301654
Rushabh Mehta702473d2012-04-26 19:01:35 +05301655.icon-calendar {
1656 background-position: -192px -120px;
1657}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301658
Rushabh Mehta702473d2012-04-26 19:01:35 +05301659.icon-random {
1660 background-position: -216px -120px;
1661}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301662
Rushabh Mehta702473d2012-04-26 19:01:35 +05301663.icon-comment {
1664 background-position: -240px -120px;
1665}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301666
Rushabh Mehta702473d2012-04-26 19:01:35 +05301667.icon-magnet {
1668 background-position: -264px -120px;
1669}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301670
Rushabh Mehta702473d2012-04-26 19:01:35 +05301671.icon-chevron-up {
1672 background-position: -288px -120px;
1673}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301674
Rushabh Mehta702473d2012-04-26 19:01:35 +05301675.icon-chevron-down {
1676 background-position: -313px -119px;
1677}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301678
Rushabh Mehta702473d2012-04-26 19:01:35 +05301679.icon-retweet {
1680 background-position: -336px -120px;
1681}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301682
Rushabh Mehta702473d2012-04-26 19:01:35 +05301683.icon-shopping-cart {
1684 background-position: -360px -120px;
1685}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301686
Rushabh Mehta702473d2012-04-26 19:01:35 +05301687.icon-folder-close {
1688 background-position: -384px -120px;
1689}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301690
Rushabh Mehta702473d2012-04-26 19:01:35 +05301691.icon-folder-open {
1692 background-position: -408px -120px;
1693}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301694
Rushabh Mehta702473d2012-04-26 19:01:35 +05301695.icon-resize-vertical {
1696 background-position: -432px -119px;
1697}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301698
Rushabh Mehta702473d2012-04-26 19:01:35 +05301699.icon-resize-horizontal {
1700 background-position: -456px -118px;
1701}
1702
Rushabh Mehta389880d2012-04-27 18:39:14 +05301703.icon-hdd {
1704 background-position: 0 -144px;
1705}
1706
1707.icon-bullhorn {
1708 background-position: -24px -144px;
1709}
1710
1711.icon-bell {
1712 background-position: -48px -144px;
1713}
1714
1715.icon-certificate {
1716 background-position: -72px -144px;
1717}
1718
1719.icon-thumbs-up {
1720 background-position: -96px -144px;
1721}
1722
1723.icon-thumbs-down {
1724 background-position: -120px -144px;
1725}
1726
1727.icon-hand-right {
1728 background-position: -144px -144px;
1729}
1730
1731.icon-hand-left {
1732 background-position: -168px -144px;
1733}
1734
1735.icon-hand-up {
1736 background-position: -192px -144px;
1737}
1738
1739.icon-hand-down {
1740 background-position: -216px -144px;
1741}
1742
1743.icon-circle-arrow-right {
1744 background-position: -240px -144px;
1745}
1746
1747.icon-circle-arrow-left {
1748 background-position: -264px -144px;
1749}
1750
1751.icon-circle-arrow-up {
1752 background-position: -288px -144px;
1753}
1754
1755.icon-circle-arrow-down {
1756 background-position: -312px -144px;
1757}
1758
1759.icon-globe {
1760 background-position: -336px -144px;
1761}
1762
1763.icon-wrench {
1764 background-position: -360px -144px;
1765}
1766
1767.icon-tasks {
1768 background-position: -384px -144px;
1769}
1770
1771.icon-filter {
1772 background-position: -408px -144px;
1773}
1774
1775.icon-briefcase {
1776 background-position: -432px -144px;
1777}
1778
1779.icon-fullscreen {
1780 background-position: -456px -144px;
1781}
1782
Rushabh Mehta702473d2012-04-26 19:01:35 +05301783/*
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301784 * lib/css/legacy/body.css
1785 */
1786html {
1787 margin: 0px;
1788 padding: 0px;
1789}
1790
1791body {
1792 margin: 0px;
1793 padding: 0px;
1794 font-size: 14px;
1795 color: #000;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301796}
1797
1798/* font settings */
1799
1800h1, h2, h3, h4, h5 {
Rushabh Mehta8eba1182012-05-02 09:45:28 +05301801 font-family: Arial, sans-serif;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301802 margin-top: 0.2em;
1803}
1804
1805body {
Rushabh Mehta8eba1182012-05-02 09:45:28 +05301806 font-family: Arial, sans-serif;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301807 font-size: 13px;
Rushabh Mehtaa4be4d32012-04-30 14:22:02 +05301808 background-color: #eee;
1809}
1810
1811footer {
1812 background: #b7b7b7; /* Old browsers */
1813 background: -moz-linear-gradient(top, #b7b7b7 0%, #eeeeee 36%); /* FF3.6+ */
1814 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b7b7b7), color-stop(36%,#eeeeee)); /* Chrome,Safari4+ */
1815 background: -webkit-linear-gradient(top, #b7b7b7 0%,#eeeeee 36%); /* Chrome10+,Safari5.1+ */
1816 background: -o-linear-gradient(top, #b7b7b7 0%,#eeeeee 36%); /* Opera 11.10+ */
1817 background: -ms-linear-gradient(top, #b7b7b7 0%,#eeeeee 36%); /* IE10+ */
1818 background: linear-gradient(top, #b7b7b7 0%,#eeeeee 36%); /* W3C */
1819 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b7b7b7', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
1820 border-top: 1px solid #999;
1821 text-align: center;
1822 color: inherit;
1823 padding: 10px;
1824 font-size: 12px;
Rushabh Mehtad5e10312012-05-02 17:44:59 +05301825 line-height: 1.7;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301826}
1827
1828span, div, td, input, textarea, button, select {
1829 font-family: inherit;
1830}
1831
1832
1833pre { margin: 0px; padding: 0px; }
1834
1835button { margin: 2px; margin-left: 0px; }
1836
1837label {
1838 padding-top: 15px;
1839 color: #404040;
1840}
1841
1842select, input, textarea {
1843 border: 1px solid #ccc;
1844 -moz-border-radius: 4px;
1845 -webkit-border-radius: 4px;
1846 font-size: inherit;
1847 padding: 4px;
1848 color: #444;
1849 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1850 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1851 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1852}
1853
1854textarea {
1855 font-family: inherit;
1856 height: 120px;
1857 width: 90%;
1858 font-size: inherit;
1859 white-space: normal;
1860}
1861
1862table { padding: 0px; border-collapse: 'collapse'}
1863
1864td {
1865 padding:0px;
1866 margin: 0px;
1867 vertical-align: top;
1868}
1869
1870p {
1871 margin: 0px 0px 9px 0px;
1872 line-height: 1.5em;
1873}
1874
1875li {
1876 line-height: 1.5em;
1877}
1878
1879hr {
Rushabh Mehta0eb790a2012-05-11 15:53:37 +05301880 clear: both;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301881 margin: 18px 0;
1882 border: 0;
1883 border-top: 1px solid #e5e5e5;
1884 border-bottom: 1px solid #ffffff;
1885}
1886
1887/* links */
1888
1889a:active { outline:none; }
1890
1891a {
1892 color: #0088cc;
1893 text-decoration: none;
1894}
1895a:hover {
1896 color: #005580;
1897 text-decoration: underline;
1898}
1899
1900.link_type {
1901 padding:2px;
1902 color: #0088cc;
1903 cursor: pointer;
1904}
1905
1906.link_type:hover {
1907 color: #005580;
1908 text-decoration: underline;
1909}
1910
1911:focus { -moz-outline-style:none; }
1912
1913table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
1914table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
1915
1916div.fix_ff_cursor { overflow: auto; }
1917
1918/* --- Layout --- */
1919
1920div.comment { color: #444; }
1921
1922.small {
Rushabh Mehta5281e352012-07-10 18:16:09 +05301923 font-size: 12px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301924}
1925
1926.help {
1927 margin-bottom: 3px;
1928 color: #888;
1929}
1930
1931div#body_div {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301932 padding-right: 7px;
Rushabh Mehta702473d2012-04-26 19:01:35 +05301933 padding-top: 70px;
1934 padding-bottom: 50px;
Rushabh Mehtaa4be4d32012-04-30 14:22:02 +05301935 min-height: 400px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301936}
1937
1938.content {
Rushabh Mehta702473d2012-04-26 19:01:35 +05301939 margin: auto;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301940 width: 900px;
1941}
1942
1943.background-fade-in {
1944 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
1945 -moz-transition: background 1s ease-in;
1946 -o-transition: background 1s ease-in;
1947 transition: background 1s ease-in;
1948}
1949
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301950header .container {
1951 width: 900px;
1952 margin: auto;
1953}
1954
1955@media (max-width: 1200px) {
Rushabh Mehta702473d2012-04-26 19:01:35 +05301956 header .container, .content {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301957 width: 900px;
1958 }
1959}
1960
Anand Doshi2d1bd0a2012-05-23 11:20:12 +05301961@media (min-width: 1200px) and (max-width: 1599px) {
1962 header .container, .content {
1963 width: 1100px;
1964 }
1965}
1966
1967@media (min-width: 1600px) {
Rushabh Mehta702473d2012-04-26 19:01:35 +05301968 header .container, .content {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301969 width: 1100px;
1970 }
Anand Doshi7b93baf2012-05-21 18:41:10 +05301971 div#body_div {
Anand Doshi2d1bd0a2012-05-23 11:20:12 +05301972 min-height: 900px;
Anand Doshi7b93baf2012-05-21 18:41:10 +05301973 }
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301974}
1975
1976div.no_script {
1977 display: none;
1978}
1979
1980div.loading_div {
1981 background-color: #FFFFCC;
1982 z-index: 1999;
1983 right: 5px;
1984 width: 90px;
1985 display: none;
1986 text-align: center;
1987 padding: 2px;
1988 border: 1px solid #FF4;
1989}
1990
1991div.std-footer {
1992 margin: 13px -15px;
1993 border-top: 1px solid #AAA;
1994 padding: 13px;
1995}
1996
1997div.std-footer-item {
1998 margin: 0px 13px 13px 0px;
1999}
2000
2001.shadow {
2002 -moz-box-shadow: 0px 2px 2px #888;
2003 -webkit-box-shadow: 0px 2px 2px #888;
2004 box-shadow: 0px 2px 2px #888;
2005}
2006
2007.round {
2008 -webkit-border-radius: 5px;
2009 -moz-border-radius: 5px;
2010 border-radius: 5px;
2011}
2012
2013.layout_wrapper, .layout-wrapper {
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302014 -moz-box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
2015 -webkit-box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
2016 box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302017 background-color: #fff;
2018 padding: 15px;
2019 -webkit-border-radius: 5px;
2020 -moz-border-radius: 5px;
2021 border-radius: 5px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302022 overflow: hidden;
2023}
2024
2025.layout-wrapper-appframe {
2026 padding: 0px;
2027}
2028
2029.layout-wrapper-background {
2030 background-color: #fafafa !important;
2031 padding: 0px;
2032}
2033
Rushabh Mehta2146fd12012-04-17 12:40:37 +05302034.layout-main {
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302035 padding: 15px;
2036 background-color: #fff;
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302037}
2038
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302039.layout-main-section {
2040 width: 71%;
2041 float: left;
2042 padding: 15px;
2043 background-color: #FFF;
2044 min-height: 600px;
2045 -moz-box-shadow: 2px 0px 1px #ddd;
2046 -webkit-box-shadow: 2px 0px 1px #ddd;
2047 box-shadow: 2px 0px 1px #ddd;
2048}
2049
2050.layout-side-section {
2051 width: 22%;
2052 /*float: right;*/
2053 color: #606060;
2054 overflow-x: hidden;
2055 padding: 15px;
2056 min-height: 600px;
2057}
2058
2059/* from bootstrap */
2060.container {
2061 margin-left: auto;
2062 margin-right: auto;
2063 zoom: 1;
2064}
2065.container:before, .container:after {
2066 display: table;
2067 content: "";
2068 zoom: 1;
2069}
2070.container:after {
2071 clear: both;
2072}
2073
2074.well {
2075 min-height: 20px;
2076 padding: 19px;
2077 margin-bottom: 20px;
2078 background-color: #f5f5f5;
2079 border: 1px solid #eee;
2080 border: 1px solid rgba(0, 0, 0, 0.05);
2081 -webkit-border-radius: 4px;
2082 -moz-border-radius: 4px;
2083 border-radius: 4px;
2084 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2085 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2086 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2087}
2088
2089.avatar-small {
2090 display: inline-block;
2091 width: 24px;
2092 height: 20px;
2093 vertical-align: middle;
2094 overflow: hidden;
2095 margin: 0px 3px;
Rushabh Mehtad5e10312012-05-02 17:44:59 +05302096 border-radius: 3px;
2097 -moz-border-radius: 3px;
2098 -webkit-border-radius: 3px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302099}
2100.avatar-small img {
2101 width: 24px;
2102}
2103
Rushabh Mehtad5e10312012-05-02 17:44:59 +05302104.erpnext-logo {
2105 position: fixed;
2106 bottom: 5px;
2107 left: 5px;
2108 height: 40px;
2109 width: 40px;
2110 background: url('../images/erpnext-fade.png') no-repeat top left;
2111}
2112
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302113/*
2114 * lib/css/legacy/messages.css
2115 */
2116
2117/* FLOATING MESSAGE */
2118
2119.btn-img { cursor: pointer; }
2120
2121div.fetching { color: #888; text-align:right; }
2122
Rushabh Mehtae57267f2012-07-11 13:18:58 +05302123.msgprint {
2124 min-height: 60px;
2125 max-height: 500px;
2126 padding: 9px;
2127 color: #333;
2128 overflow: auto;
2129}
2130
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302131div.notice {
2132 postion: absolute;
2133 background-color: #000;
2134 -moz-border-radius: 5px; -webkit-border-radius: 5px;
2135 opacity: 0.6;
2136 right: 0;
2137 top: 0;
2138 margin-top: 8px;
2139 z-index: -1;
2140 padding: 8px;
2141}
2142
2143/** help **/
2144
2145.info-box {
2146 background-color: #F8F8F8;
2147 border: 1px solid #CCCCCC;
2148 border-radius: 3px 3px 3px 3px;
2149 line-height: 1.6em;
2150 overflow: auto;
2151 padding: 6px 10px;
2152 margin-bottom: 9px;
2153}
2154
2155.help_box, .help-box {
Rushabh Mehtabf964992012-07-11 09:51:18 +05302156 background-color: #ffe;
2157 color: #874;
2158 padding: 9px 9px 9px 9px;
2159 border: 1px dashed #fc7;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302160 margin: 11px 0px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302161}
2162
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302163
2164/*
2165 * lib/css/legacy/dialog.css
2166 */
2167/***** Dialogs *******/
2168
2169div.dialog_wrapper {
2170 position: absolute;
2171 width: 440px;
2172 display: none;
2173 z-index: 90;
2174 background-color: #FFF;
2175 box-shadow:1px 1px 8px #444;
2176 -moz-box-shadow: 1px 1px 8px #444;
2177 -webkit-box-shadow: 1px 1px 8px #444;
2178
2179 border-radius: 5px;
2180 -moz-border-radius: 5px;
2181 -webkit-border-radius: 5px;
2182
2183 overflow: hidden;
2184}
2185
2186div.dialog_head {
2187 height: 22px;
2188 padding: 4px;
2189 background-color: #222;
2190 color: #FFF;
2191}
2192
2193div.dialog_body {
2194 padding: 8px 8px 16px;
2195 border-radius: 5px;
2196 -moz-border-radius: 5px;
2197 -webkit-border-radius: 5px;
2198}
2199
2200div.dialog_back {
2201 position: fixed;
2202 display: none;
2203 top: 0px;
2204 left: 0px;
2205 bottom: 0px;
2206 right: 0px;
2207 background-color: #aaa;
2208 opacity: 0.6;
2209 z-index: 50;
2210 text-align: center;
2211}
2212
2213div.dialog_message {
2214 display: none;
2215 position: absolute;
2216 width: 250px;
2217 font-size: 12px;
2218 z-index: 91;
2219 background-color:#FFF;
2220 padding: 12px;
2221 border: 1px solid #444;
2222}
2223
2224div.dialog_row {
2225 padding: 8px 8px 0px 8px;
2226}
2227
2228div.dialog_row table {
2229 width: 100%;
2230}
2231
2232div.dialog_row table td {
2233}
2234
2235div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
2236 width: 80%;
2237 font-size: 14px;
2238}
2239
2240div.dialog_row table td textarea {
2241 width: 80%;
2242 height: 200px;
2243 font-size: 12px;
2244}
2245
2246
2247/*
2248 * lib/css/ui/common.css
2249 */
2250.navbar-icon-home {
2251 vertical-align: middle;
2252 opacity: 0.4;
2253 Filter:alpha(opacity=40); /* For IE8 and earlier */
2254}
2255
2256.navbar-icon-home:hover,
2257.navbar-icon-home:focus,
2258.navbar-icon-home:active,
2259.navbar-icon-home-hover{
2260 opacity:1;
2261 Filter:alpha(opacity=100); /* For IE8 and earlier */
2262}
2263
2264
2265/*
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302266 * lib/css/ui/fonts.css
2267 */
2268@font-face {
2269 font-family: 'Pontano Sans';
2270 font-style: normal;
2271 font-weight: 800;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05302272 src: url('fonts/pontanosans.woff') format('woff');
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302273}
2274
2275@font-face {
2276 font-family: 'Droid Sans';
2277 font-style: normal;
2278 font-weight: normal;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05302279 src: local('Droid Sans'), local('DroidSans'), url('fonts/droidsans.woff') format('woff');
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302280}
2281
2282@font-face {
2283 font-family: 'PT Sans';
2284 font-style: normal;
2285 font-weight: normal;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05302286 src: local('PT Sans'), local('PTSans-Regular'), url('fonts/ptsans.woff') format('woff');
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302287}
2288
2289@font-face {
2290 font-family: 'Open Sans';
2291 font-style: normal;
2292 font-weight: 400;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05302293 src: local('Open Sans'), local('OpenSans'), url('fonts/opensans.woff') format('woff');
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302294}
Rushabh Mehtab43f9492012-04-08 20:33:51 +05302295
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302296@font-face {
2297 font-family: 'Lato';
2298 font-style: normal;
2299 font-weight: 400;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05302300 src: local('Lato Regular'), local('Lato-Regular'), url('fonts/lato.woff') format('woff');
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302301}
2302
Rushabh Mehtab43f9492012-04-08 20:33:51 +05302303@font-face {
2304 font-family: 'Cabin';
2305 font-style: normal;
2306 font-weight: 400;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05302307 src: local('Cabin Regular'), local('Cabin-Regular'), url('fonts/cabin.woff') format('woff');
Rushabh Mehtab43f9492012-04-08 20:33:51 +05302308}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302309
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +05302310@font-face {
2311 font-family: 'Pacifico';
2312 font-style: normal;
2313 font-weight: normal;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05302314 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('fonts/pacifico.woff') format('woff');
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +05302315}
2316
Anand Doshi6548b502012-05-26 16:50:06 +05302317@font-face {
Anand Doshi822318f2012-05-26 17:01:00 +05302318 font-family: 'Oleo Script';
Anand Doshi6548b502012-05-26 16:50:06 +05302319 font-style: normal;
2320 font-weight: 400;
Anand Doshi822318f2012-05-26 17:01:00 +05302321 src: local('Oleo Script'), local('OleoScript-Regular'), url('fonts/oleoscript.woff') format('woff');
Anand Doshi6548b502012-05-26 16:50:06 +05302322}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302323
Rushabh Mehtae3167952012-05-26 13:50:05 +02002324@font-face {
2325 font-family: 'Cookie';
2326 font-style: normal;
2327 font-weight: 400;
2328 src: local('Cookie-Regular'), url('fonts/cookie.woff') format('woff');
2329}
2330
Rushabh Mehta3237d6a2012-05-28 10:42:32 +02002331@font-face {
2332 font-family: 'Marck Script';
2333 font-style: normal;
2334 font-weight: 400;
2335 src: local('Marck Script'), local('MarckScript-Regular'), url('fonts/marckscript.woff') format('woff');
2336}
2337
Rushabh Mehtae3167952012-05-26 13:50:05 +02002338
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302339/*
2340 * lib/css/ui/list.css
2341 */
2342.hide {
2343 display: none;
2344}
2345
2346.list-filters {
2347 margin: 7px 0px;
2348}
2349
2350.wnlist .img-load {
2351 display: none;
2352 float: left;
2353 margin-bottom: 8px;
2354}
2355
2356/* list-row */
2357div.list-row {
Rushabh Mehta078867c2012-05-09 16:15:51 +05302358 border-bottom: 1px solid #ddd;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302359 padding: 5px 0px;
2360}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302361
2362div.list-row .label {
2363 margin-right: 4px;
2364}
2365
2366div.list-row table {
2367 table-layout: fixed;
2368 border-collapse: collapse;
2369 width: 100%;
2370}
2371
2372div.list-row table td {
2373 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05302374 /*padding-right: 3px;*/
2375 padding: 0px 3px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302376 vertical-align: middle;
2377 height: 24px;
2378 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05302379 word-wrap: break-word;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302380}
2381
2382div.paging-button {
2383 text-align: center;
2384 padding: 11px 0px;
2385}
2386
2387div.show_filters {
2388 display: none;
2389}
2390
2391div.filter_list {
2392 padding: 13px;
2393}
2394
2395div.show_filters.well {
2396 margin-top: 11px;
2397 margin-bottom: 11px;
2398}
2399
2400div.filter_list .run_btn {
2401 text-align: right;
2402}
2403
2404div.filter_list .add_filter {
2405 margin: 3px 0px;
2406}
2407
2408div.list_filter {
2409 margin: 7px 0px;
2410}
2411
2412div.list_filter input, div.list_filter select {
2413 width: 130px;
2414 margin-right: 7px;
2415}
2416
2417/* bar */
2418
2419span.bar-outer {
2420 display: inline-block;
2421 margin: 0px 7px;
2422 margin-top: 3px;
2423 background-color: #fff;
2424 border: 1px solid #aaa;
2425 height: 10px;
2426}
2427
2428span.bar-inner {
2429 display: inline-block;
2430 background-color: #bdf;
2431 height: 100%;
2432 margin-bottom: 2px;
2433 float: left;
2434}
2435span.bar-complete {
2436 background-color: #009900;
2437}
2438span.bar-empty {
2439 background-color: #990000;
2440}
2441
2442
2443/* stats */
2444
2445div.stat-wrapper {
Rushabh Mehta078867c2012-05-09 16:15:51 +05302446 margin-bottom: 19px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302447}
2448
2449div.stat-grid {
Rushabh Mehta078867c2012-05-09 16:15:51 +05302450 margin-top: 9px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302451 overflow: hidden;
2452}
2453
2454div.stat-label {
2455 position: relative;
2456 padding: 3px;
2457 text-align: center;
Rushabh Mehta03262e02012-05-09 16:55:58 +05302458 font-size: 11px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302459}
2460div.stat-label, div.stat-label a {
2461 z-index: 5;
2462}
2463
2464div.stat-item {
2465 position: relative;
Rushabh Mehta078867c2012-05-09 16:15:51 +05302466 margin-bottom: 7px;
2467 background-color: #fff;
Rushabh Mehta03262e02012-05-09 16:55:58 +05302468 height: 18px;
Rushabh Mehtaea7ba722012-05-10 19:07:53 +05302469 border: 1px solid #aaa;
Rushabh Mehta03262e02012-05-09 16:55:58 +05302470 border-radius: 9px;
Anand Doshi368cb532012-07-09 13:32:06 +05302471 -webkit-border-radius: 9px;
2472 -moz-border-radius: 9px;
Rushabh Mehta078867c2012-05-09 16:15:51 +05302473 overflow: hidden;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302474}
2475
2476div.stat-bar {
2477 position: absolute;
2478 left: 0px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302479 height: 100%;
2480 z-index: 0;
Anand Doshi368cb532012-07-09 13:32:06 +05302481 /* So that this div is also curved like the enclosing one */
2482 border-radius: 9px;
2483 -webkit-border-radius: 9px;
2484 -moz-border-radius: 9px;
Rushabh Mehta03262e02012-05-09 16:55:58 +05302485
2486 background: #e0ff84; /* Old browsers */
2487 background: -moz-linear-gradient(top, #e0ff84 0%, #a4e567 100%); /* FF3.6+ */
2488 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e0ff84), color-stop(100%,#a4e567)); /* Chrome,Safari4+ */
2489 background: -webkit-linear-gradient(top, #e0ff84 0%,#a4e567 100%); /* Chrome10+,Safari5.1+ */
2490 background: -o-linear-gradient(top, #e0ff84 0%,#a4e567 100%); /* Opera 11.10+ */
2491 background: -ms-linear-gradient(top, #e0ff84 0%,#a4e567 100%); /* IE10+ */
2492 background: linear-gradient(top, #e0ff84 0%,#a4e567 100%); /* W3C */
2493 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0ff84', endColorstr='#a4e567',GradientType=0 ); /* IE6-9 */
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302494}
2495
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302496/*
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302497 * lib/css/ui/views.css
2498 */
2499
Rushabh Mehta4c562752012-06-14 11:05:09 +05302500.breadcrumb-area, .breadcrumb-area span {
2501 vertical-align: middle;
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302502}
2503
2504div.appframe-titlebar {
2505 padding: 6px;
2506 background: #eeeeee; /* Old browsers */
2507 background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
2508 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
2509 background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
2510 background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
2511 background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */
2512 background: linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* W3C */
2513 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
2514 border-bottom: 1px solid #aaa;
2515 min-height: 1.2em;
Rushabh Mehta6d5956e2012-05-02 18:06:39 +05302516 border-radius: 5px 5px 0px 0px;
2517 -webkit-border-radius: 5px 5px 0px 0px;
2518 -moz-border-radius: 5px 5px 0px 0px;
Rushabh Mehta4c562752012-06-14 11:05:09 +05302519
2520 text-shadow: 0px 1px 1px #fff;
2521 color: #555;
2522}
2523
2524span.appframe-title {
2525 font-size: 160%;
2526 font-weight: bold;
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302527}
2528
2529div.appframe-toolbar {
2530 padding: 4px;
2531 background: #eeeeee;
2532 border-top: 1px solid #f8f8f8;
2533 border-bottom: 1px solid #ccc;
2534}
2535
Rushabh Mehtae57267f2012-07-11 13:18:58 +05302536
2537
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302538/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302539 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302540 */
2541h1, h2, h3, h4, h5 {
Rushabh Mehta8eba1182012-05-02 09:45:28 +05302542 font-family: Arial, Helvetica, sans-serif;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302543 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302544}
2545
2546body {
Rushabh Mehta8eba1182012-05-02 09:45:28 +05302547 font-family: Arial, Helvetica, sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05302548 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302549}
2550
2551span, div, td, input, textarea, button, select {
2552 font-family: inherit;
2553}
2554
Rushabh Mehta983a1712012-03-21 13:35:34 +05302555.small {
2556 font-size: 11.5px;
2557}
2558
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302559.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05302560 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302561 text-align: center;
2562}
2563
Anand Doshidb628762012-02-24 17:56:00 +05302564.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05302565 margin: -3px 0px;
2566 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05302567 min-width: 20px;
2568 text-align: center;
2569 display: inline-block;
2570 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302571 color: #999999;
2572 background-color: #333131;
2573}
2574
2575.navbar-new-comments:hover,
2576.navbar-new-comments:active,
2577.navbar-new-comments:focus {
2578 color: #fff;
2579}
2580
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302581.navbar-new-comments-true {
2582 color: #fff;
2583 background-color: #B00D07;
2584}
2585
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302586/*extra size menus for recent*/
2587.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2588 min-width: 160px !important;
2589 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05302590}
2591
Anand Doshi1ed4ef12012-04-27 15:30:23 +05302592.expiry-info {
2593 margin-top: 40px;
2594 margin-bottom: -40px;
2595 text-align: center;
2596 background-color: rgb(255, 255, 204);
2597 padding: 7px;
2598 z-index: 1;
2599}
2600
Anand Doshi575545d2012-06-13 19:36:55 +05302601.show-all-reports {
2602 margin-top: 5px;
2603 font-size: 11px;
2604}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302605
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302606/*
2607 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302608 */
Rushabh Mehta702473d2012-04-26 19:01:35 +05302609header .container, .content {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302610 width: 900px;
2611}
2612
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302613div#body_div {
Rushabh Mehtaaa513772012-05-02 13:03:41 +05302614 padding-top: 80px;
Rushabh Mehta702473d2012-04-26 19:01:35 +05302615 min-height: 400px;
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05302616}
2617
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302618p, li {
2619 line-height: 1.6em;
2620}
2621
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302622pre {
2623 background-color: #F8F8F8;
2624 border: 1px solid #CCCCCC;
2625 border-radius: 3px 3px 3px 3px;
2626 font-size: 13px;
2627 line-height: 19px;
2628 overflow: auto;
2629 padding: 6px 10px;
2630 margin-bottom: 9px;
2631}
2632
Rushabh Mehta13531b72012-02-20 12:35:23 +05302633.web-head-section {
2634 margin-bottom: 20px
2635}
2636
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302637.web-main-section {
2638 width: 65%;
2639 float: left;
2640 margin-bottom: 20px;
2641}
2642
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302643.web-side-section {
2644 width: 30%;
2645 float: right;
2646 margin-bottom: 20px;
2647 margin-right: 15px;
2648 color: #606060;
2649 overflow-x: hidden;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05302650 font-size: 90%;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302651}
2652
2653.web-page-status {
2654 padding: 7px;
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302655 margin-top: -20px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302656 color: #777;
2657 clear: both;
2658 text-align: right;
2659}
2660
2661.web-page-status a,
2662.web-page-status a:hover,
2663.web-page-status a:visited {
2664 padding: 2px;
2665 background-color: #777;
2666 color: #FFF;
2667 text-decoration: none;
2668}
2669
2670.web-page-status a:hover {
2671 background-color: #444;
2672}
2673
Rushabh Mehta702473d2012-04-26 19:01:35 +05302674
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302675footer {
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302676
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302677}
2678
2679.web-footer-menu {
2680 margin-bottom: 7px;
2681}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302682
2683.web-footer-menu ul {
2684 list-style: none;
2685 margin: 0px;
2686 padding: 0px;
2687}
2688
2689.web-footer-menu ul li {
2690 display: inline;
2691 padding: 2px 15px;
2692 border-right: 1px solid #999;
2693}
2694
Rushabh Mehta702473d2012-04-26 19:01:35 +05302695.web-footer-menu ul li:first-child {
2696 padding-left: 0px;
2697}
2698
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302699.web-footer-menu ul li:last-child {
2700 border-right: 0px solid #777 !important;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302701}
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302702
Rushabh Mehta702473d2012-04-26 19:01:35 +05302703.web-footer-powered {
2704 color: #888;
2705 float: right;
2706 margin-top: -12px;
2707}
2708
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302709/* slide view */
2710
2711.next-slide {
2712 margin: 0px -27px 100px -27px;
2713 background: #ffffff; /* Old browsers */
2714 background: -moz-linear-gradient(top, #eeeeee 0%, #fff 100%); /* FF3.6+ */
2715 background: -webkit-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Chrome10+,Safari5.1+ */
2716 background: -o-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Opera 11.10+ */
2717 background: -ms-linear-gradient(top, #eeeeee 0%, #fff 100%); /* IE10+ */
2718 background: linear-gradient(top, #eeeeee 0%, #fff 100%); /* W3C */
2719 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#fff',GradientType=0 ); /* IE6-9 */
2720 height: 36px;
2721}
2722
2723.slide-shadow {
2724 background: #eeeeee; /* Old browsers */
2725 background: -moz-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* FF3.6+ */
2726 background: -webkit-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
2727 background: -o-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Opera 11.10+ */
2728 background: -ms-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* IE10+ */
2729 background: linear-gradient(top, #bababa 0%,#eeeeee 100%); /* W3C */
2730 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bababa', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
2731 height: 3px;
2732 margin: 100px -27px 0px -27px;
2733 border-top: 1px solid #bababa;
2734}
2735
2736.two-column {
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302737 width: 50%;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302738 float: left;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302739}
2740
2741.clear {
2742 clear: both;
2743}
2744
2745/* */