blob: b699bef9730622d7caf755677b5dba0ccb313e0e [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 Mehta2886b952012-02-24 11:26:31 +05301199 * lib/css/bootstrap/label.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301200 */
1201.label {
Rushabh Mehta2886b952012-02-24 11:26:31 +05301202 padding: 2px 4px 3px;
1203 font-size: 11.049999999999999px;
1204 font-weight: bold;
1205 color: #ffffff;
1206 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1207 background-color: #999999;
1208 -webkit-border-radius: 3px;
1209 -moz-border-radius: 3px;
1210 border-radius: 3px;
1211}
1212.label:hover {
1213 color: #ffffff;
1214 text-decoration: none;
1215}
1216.label-important {
1217 background-color: #b94a48;
1218}
1219.label-important:hover {
1220 background-color: #953b39;
1221}
1222.label-warning {
1223 background-color: #f89406;
1224}
1225.label-warning:hover {
1226 background-color: #c67605;
1227}
1228.label-success {
1229 background-color: #468847;
1230}
1231.label-success:hover {
1232 background-color: #356635;
1233}
1234.label-info {
1235 background-color: #3a87ad;
1236}
1237.label-info:hover {
1238 background-color: #2d6987;
1239}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301240
Rushabh Mehta2886b952012-02-24 11:26:31 +05301241/*
1242 * lib/css/bootstrap/icons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301243 */
Rushabh Mehta389880d2012-04-27 18:39:14 +05301244[class^="icon-"],
1245[class*=" icon-"] {
Rushabh Mehta2886b952012-02-24 11:26:31 +05301246 display: inline-block;
Rushabh Mehta389880d2012-04-27 18:39:14 +05301247 width: 15px;
Rushabh Mehta2886b952012-02-24 11:26:31 +05301248 height: 14px;
Rushabh Mehta389880d2012-04-27 18:39:14 +05301249 *margin-right: .3em;
Rushabh Mehta2886b952012-02-24 11:26:31 +05301250 line-height: 14px;
1251 vertical-align: text-top;
Rushabh Mehtaa9209432012-05-07 18:00:57 +05301252 background-image: url("../images/lib/icons/glyphicons-halflings.png");
Rushabh Mehta2886b952012-02-24 11:26:31 +05301253 background-position: 14px 14px;
1254 background-repeat: no-repeat;
Rushabh Mehta2886b952012-02-24 11:26:31 +05301255}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301256
1257[class^="icon-"]:last-child,
1258[class*=" icon-"]:last-child {
Rushabh Mehta2886b952012-02-24 11:26:31 +05301259 *margin-left: 0;
1260}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301261
Rushabh Mehta2886b952012-02-24 11:26:31 +05301262.icon-white {
Rushabh Mehtaa9209432012-05-07 18:00:57 +05301263 background-image: url("../images/lib/icons/glyphicons-halflings-white.png");
Rushabh Mehta2886b952012-02-24 11:26:31 +05301264}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301265
Rushabh Mehta2886b952012-02-24 11:26:31 +05301266.icon-glass {
1267 background-position: 0 0;
1268}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301269
Rushabh Mehta2886b952012-02-24 11:26:31 +05301270.icon-music {
1271 background-position: -24px 0;
1272}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301273
Rushabh Mehta2886b952012-02-24 11:26:31 +05301274.icon-search {
1275 background-position: -48px 0;
1276}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301277
Rushabh Mehta2886b952012-02-24 11:26:31 +05301278.icon-envelope {
1279 background-position: -72px 0;
1280}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301281
Rushabh Mehta2886b952012-02-24 11:26:31 +05301282.icon-heart {
1283 background-position: -96px 0;
1284}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301285
Rushabh Mehta2886b952012-02-24 11:26:31 +05301286.icon-star {
1287 background-position: -120px 0;
1288}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301289
Rushabh Mehta2886b952012-02-24 11:26:31 +05301290.icon-star-empty {
1291 background-position: -144px 0;
1292}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301293
Rushabh Mehta2886b952012-02-24 11:26:31 +05301294.icon-user {
1295 background-position: -168px 0;
1296}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301297
Rushabh Mehta2886b952012-02-24 11:26:31 +05301298.icon-film {
1299 background-position: -192px 0;
1300}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301301
Rushabh Mehta2886b952012-02-24 11:26:31 +05301302.icon-th-large {
1303 background-position: -216px 0;
1304}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301305
Rushabh Mehta2886b952012-02-24 11:26:31 +05301306.icon-th {
1307 background-position: -240px 0;
1308}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301309
Rushabh Mehta2886b952012-02-24 11:26:31 +05301310.icon-th-list {
1311 background-position: -264px 0;
1312}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301313
Rushabh Mehta2886b952012-02-24 11:26:31 +05301314.icon-ok {
1315 background-position: -288px 0;
1316}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301317
Rushabh Mehta2886b952012-02-24 11:26:31 +05301318.icon-remove {
1319 background-position: -312px 0;
1320}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301321
Rushabh Mehta2886b952012-02-24 11:26:31 +05301322.icon-zoom-in {
1323 background-position: -336px 0;
1324}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301325
Rushabh Mehta2886b952012-02-24 11:26:31 +05301326.icon-zoom-out {
1327 background-position: -360px 0;
1328}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301329
Rushabh Mehta2886b952012-02-24 11:26:31 +05301330.icon-off {
1331 background-position: -384px 0;
1332}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301333
Rushabh Mehta2886b952012-02-24 11:26:31 +05301334.icon-signal {
1335 background-position: -408px 0;
1336}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301337
Rushabh Mehta2886b952012-02-24 11:26:31 +05301338.icon-cog {
1339 background-position: -432px 0;
1340}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301341
Rushabh Mehta2886b952012-02-24 11:26:31 +05301342.icon-trash {
1343 background-position: -456px 0;
1344}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301345
Rushabh Mehta2886b952012-02-24 11:26:31 +05301346.icon-home {
1347 background-position: 0 -24px;
1348}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301349
Rushabh Mehta2886b952012-02-24 11:26:31 +05301350.icon-file {
1351 background-position: -24px -24px;
1352}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301353
Rushabh Mehta2886b952012-02-24 11:26:31 +05301354.icon-time {
1355 background-position: -48px -24px;
1356}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301357
Rushabh Mehta2886b952012-02-24 11:26:31 +05301358.icon-road {
1359 background-position: -72px -24px;
1360}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301361
Rushabh Mehta2886b952012-02-24 11:26:31 +05301362.icon-download-alt {
1363 background-position: -96px -24px;
1364}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301365
Rushabh Mehta2886b952012-02-24 11:26:31 +05301366.icon-download {
1367 background-position: -120px -24px;
1368}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301369
Rushabh Mehta2886b952012-02-24 11:26:31 +05301370.icon-upload {
1371 background-position: -144px -24px;
1372}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301373
Rushabh Mehta2886b952012-02-24 11:26:31 +05301374.icon-inbox {
1375 background-position: -168px -24px;
1376}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301377
Rushabh Mehta2886b952012-02-24 11:26:31 +05301378.icon-play-circle {
1379 background-position: -192px -24px;
1380}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301381
Rushabh Mehta2886b952012-02-24 11:26:31 +05301382.icon-repeat {
1383 background-position: -216px -24px;
1384}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301385
Rushabh Mehta2886b952012-02-24 11:26:31 +05301386.icon-refresh {
1387 background-position: -240px -24px;
1388}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301389
Rushabh Mehta2886b952012-02-24 11:26:31 +05301390.icon-list-alt {
1391 background-position: -264px -24px;
1392}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301393
Rushabh Mehta2886b952012-02-24 11:26:31 +05301394.icon-lock {
1395 background-position: -287px -24px;
1396}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301397
Rushabh Mehta2886b952012-02-24 11:26:31 +05301398.icon-flag {
1399 background-position: -312px -24px;
1400}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301401
Rushabh Mehta2886b952012-02-24 11:26:31 +05301402.icon-headphones {
1403 background-position: -336px -24px;
1404}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301405
Rushabh Mehta2886b952012-02-24 11:26:31 +05301406.icon-volume-off {
1407 background-position: -360px -24px;
1408}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301409
Rushabh Mehta2886b952012-02-24 11:26:31 +05301410.icon-volume-down {
1411 background-position: -384px -24px;
1412}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301413
Rushabh Mehta2886b952012-02-24 11:26:31 +05301414.icon-volume-up {
1415 background-position: -408px -24px;
1416}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301417
Rushabh Mehta2886b952012-02-24 11:26:31 +05301418.icon-qrcode {
1419 background-position: -432px -24px;
1420}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301421
Rushabh Mehta2886b952012-02-24 11:26:31 +05301422.icon-barcode {
1423 background-position: -456px -24px;
1424}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301425
Rushabh Mehta2886b952012-02-24 11:26:31 +05301426.icon-tag {
1427 background-position: 0 -48px;
1428}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301429
Rushabh Mehta2886b952012-02-24 11:26:31 +05301430.icon-tags {
1431 background-position: -25px -48px;
1432}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301433
Rushabh Mehta2886b952012-02-24 11:26:31 +05301434.icon-book {
1435 background-position: -48px -48px;
1436}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301437
Rushabh Mehta2886b952012-02-24 11:26:31 +05301438.icon-bookmark {
1439 background-position: -72px -48px;
1440}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301441
Rushabh Mehta2886b952012-02-24 11:26:31 +05301442.icon-print {
1443 background-position: -96px -48px;
1444}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301445
Rushabh Mehta2886b952012-02-24 11:26:31 +05301446.icon-camera {
1447 background-position: -120px -48px;
1448}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301449
Rushabh Mehta2886b952012-02-24 11:26:31 +05301450.icon-font {
1451 background-position: -144px -48px;
1452}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301453
Rushabh Mehta2886b952012-02-24 11:26:31 +05301454.icon-bold {
1455 background-position: -167px -48px;
1456}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301457
Rushabh Mehta2886b952012-02-24 11:26:31 +05301458.icon-italic {
1459 background-position: -192px -48px;
1460}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301461
Rushabh Mehta2886b952012-02-24 11:26:31 +05301462.icon-text-height {
1463 background-position: -216px -48px;
1464}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301465
Rushabh Mehta2886b952012-02-24 11:26:31 +05301466.icon-text-width {
1467 background-position: -240px -48px;
1468}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301469
Rushabh Mehta2886b952012-02-24 11:26:31 +05301470.icon-align-left {
1471 background-position: -264px -48px;
1472}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301473
Rushabh Mehta2886b952012-02-24 11:26:31 +05301474.icon-align-center {
1475 background-position: -288px -48px;
1476}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301477
Rushabh Mehta2886b952012-02-24 11:26:31 +05301478.icon-align-right {
1479 background-position: -312px -48px;
1480}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301481
Rushabh Mehta2886b952012-02-24 11:26:31 +05301482.icon-align-justify {
1483 background-position: -336px -48px;
1484}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301485
Rushabh Mehta2886b952012-02-24 11:26:31 +05301486.icon-list {
1487 background-position: -360px -48px;
1488}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301489
Rushabh Mehta2886b952012-02-24 11:26:31 +05301490.icon-indent-left {
1491 background-position: -384px -48px;
1492}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301493
Rushabh Mehta2886b952012-02-24 11:26:31 +05301494.icon-indent-right {
1495 background-position: -408px -48px;
1496}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301497
Rushabh Mehta2886b952012-02-24 11:26:31 +05301498.icon-facetime-video {
1499 background-position: -432px -48px;
1500}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301501
Rushabh Mehta2886b952012-02-24 11:26:31 +05301502.icon-picture {
1503 background-position: -456px -48px;
1504}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301505
Rushabh Mehta2886b952012-02-24 11:26:31 +05301506.icon-pencil {
1507 background-position: 0 -72px;
1508}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301509
Rushabh Mehta2886b952012-02-24 11:26:31 +05301510.icon-map-marker {
1511 background-position: -24px -72px;
1512}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301513
Rushabh Mehta2886b952012-02-24 11:26:31 +05301514.icon-adjust {
1515 background-position: -48px -72px;
1516}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301517
Rushabh Mehta2886b952012-02-24 11:26:31 +05301518.icon-tint {
1519 background-position: -72px -72px;
1520}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301521
Rushabh Mehta2886b952012-02-24 11:26:31 +05301522.icon-edit {
1523 background-position: -96px -72px;
1524}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301525
Rushabh Mehta2886b952012-02-24 11:26:31 +05301526.icon-share {
1527 background-position: -120px -72px;
1528}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301529
Rushabh Mehta2886b952012-02-24 11:26:31 +05301530.icon-check {
1531 background-position: -144px -72px;
1532}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301533
Rushabh Mehta2886b952012-02-24 11:26:31 +05301534.icon-move {
1535 background-position: -168px -72px;
1536}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301537
Rushabh Mehta2886b952012-02-24 11:26:31 +05301538.icon-step-backward {
1539 background-position: -192px -72px;
1540}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301541
Rushabh Mehta2886b952012-02-24 11:26:31 +05301542.icon-fast-backward {
1543 background-position: -216px -72px;
1544}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301545
Rushabh Mehta2886b952012-02-24 11:26:31 +05301546.icon-backward {
1547 background-position: -240px -72px;
1548}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301549
Rushabh Mehta2886b952012-02-24 11:26:31 +05301550.icon-play {
1551 background-position: -264px -72px;
1552}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301553
Rushabh Mehta2886b952012-02-24 11:26:31 +05301554.icon-pause {
1555 background-position: -288px -72px;
1556}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301557
Rushabh Mehta2886b952012-02-24 11:26:31 +05301558.icon-stop {
1559 background-position: -312px -72px;
1560}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301561
Rushabh Mehta2886b952012-02-24 11:26:31 +05301562.icon-forward {
1563 background-position: -336px -72px;
1564}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301565
Rushabh Mehta2886b952012-02-24 11:26:31 +05301566.icon-fast-forward {
1567 background-position: -360px -72px;
1568}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301569
Rushabh Mehta2886b952012-02-24 11:26:31 +05301570.icon-step-forward {
1571 background-position: -384px -72px;
1572}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301573
Rushabh Mehta2886b952012-02-24 11:26:31 +05301574.icon-eject {
1575 background-position: -408px -72px;
1576}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301577
Rushabh Mehta2886b952012-02-24 11:26:31 +05301578.icon-chevron-left {
1579 background-position: -432px -72px;
1580}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301581
Rushabh Mehta2886b952012-02-24 11:26:31 +05301582.icon-chevron-right {
1583 background-position: -456px -72px;
1584}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301585
Rushabh Mehta2886b952012-02-24 11:26:31 +05301586.icon-plus-sign {
1587 background-position: 0 -96px;
1588}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301589
Rushabh Mehta2886b952012-02-24 11:26:31 +05301590.icon-minus-sign {
1591 background-position: -24px -96px;
1592}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301593
Rushabh Mehta2886b952012-02-24 11:26:31 +05301594.icon-remove-sign {
1595 background-position: -48px -96px;
1596}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301597
Rushabh Mehta2886b952012-02-24 11:26:31 +05301598.icon-ok-sign {
1599 background-position: -72px -96px;
1600}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301601
Rushabh Mehta2886b952012-02-24 11:26:31 +05301602.icon-question-sign {
1603 background-position: -96px -96px;
1604}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301605
Rushabh Mehta2886b952012-02-24 11:26:31 +05301606.icon-info-sign {
1607 background-position: -120px -96px;
1608}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301609
Rushabh Mehta2886b952012-02-24 11:26:31 +05301610.icon-screenshot {
1611 background-position: -144px -96px;
1612}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301613
Rushabh Mehta2886b952012-02-24 11:26:31 +05301614.icon-remove-circle {
1615 background-position: -168px -96px;
1616}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301617
Rushabh Mehta2886b952012-02-24 11:26:31 +05301618.icon-ok-circle {
1619 background-position: -192px -96px;
1620}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301621
Rushabh Mehta2886b952012-02-24 11:26:31 +05301622.icon-ban-circle {
1623 background-position: -216px -96px;
1624}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301625
Rushabh Mehta2886b952012-02-24 11:26:31 +05301626.icon-arrow-left {
1627 background-position: -240px -96px;
1628}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301629
Rushabh Mehta2886b952012-02-24 11:26:31 +05301630.icon-arrow-right {
1631 background-position: -264px -96px;
1632}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301633
Rushabh Mehta2886b952012-02-24 11:26:31 +05301634.icon-arrow-up {
1635 background-position: -289px -96px;
1636}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301637
Rushabh Mehta2886b952012-02-24 11:26:31 +05301638.icon-arrow-down {
1639 background-position: -312px -96px;
1640}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301641
Rushabh Mehta2886b952012-02-24 11:26:31 +05301642.icon-share-alt {
1643 background-position: -336px -96px;
1644}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301645
Rushabh Mehta2886b952012-02-24 11:26:31 +05301646.icon-resize-full {
1647 background-position: -360px -96px;
1648}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301649
Rushabh Mehta2886b952012-02-24 11:26:31 +05301650.icon-resize-small {
1651 background-position: -384px -96px;
1652}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301653
Rushabh Mehta2886b952012-02-24 11:26:31 +05301654.icon-plus {
1655 background-position: -408px -96px;
1656}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301657
Rushabh Mehta2886b952012-02-24 11:26:31 +05301658.icon-minus {
1659 background-position: -433px -96px;
1660}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301661
Rushabh Mehta2886b952012-02-24 11:26:31 +05301662.icon-asterisk {
1663 background-position: -456px -96px;
1664}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301665
Rushabh Mehta2886b952012-02-24 11:26:31 +05301666.icon-exclamation-sign {
1667 background-position: 0 -120px;
1668}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301669
Rushabh Mehta2886b952012-02-24 11:26:31 +05301670.icon-gift {
1671 background-position: -24px -120px;
1672}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301673
Rushabh Mehta2886b952012-02-24 11:26:31 +05301674.icon-leaf {
1675 background-position: -48px -120px;
1676}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301677
Rushabh Mehta2886b952012-02-24 11:26:31 +05301678.icon-fire {
1679 background-position: -72px -120px;
1680}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301681
Rushabh Mehta2886b952012-02-24 11:26:31 +05301682.icon-eye-open {
1683 background-position: -96px -120px;
1684}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301685
Rushabh Mehta2886b952012-02-24 11:26:31 +05301686.icon-eye-close {
1687 background-position: -120px -120px;
1688}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301689
Rushabh Mehta2886b952012-02-24 11:26:31 +05301690.icon-warning-sign {
1691 background-position: -144px -120px;
1692}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301693
Rushabh Mehta2886b952012-02-24 11:26:31 +05301694.icon-plane {
1695 background-position: -168px -120px;
1696}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301697
Rushabh Mehta2886b952012-02-24 11:26:31 +05301698.icon-calendar {
1699 background-position: -192px -120px;
1700}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301701
Rushabh Mehta2886b952012-02-24 11:26:31 +05301702.icon-random {
1703 background-position: -216px -120px;
1704}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301705
Rushabh Mehta2886b952012-02-24 11:26:31 +05301706.icon-comment {
1707 background-position: -240px -120px;
1708}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301709
Rushabh Mehta2886b952012-02-24 11:26:31 +05301710.icon-magnet {
1711 background-position: -264px -120px;
1712}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301713
Rushabh Mehta2886b952012-02-24 11:26:31 +05301714.icon-chevron-up {
1715 background-position: -288px -120px;
1716}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301717
Rushabh Mehta2886b952012-02-24 11:26:31 +05301718.icon-chevron-down {
1719 background-position: -313px -119px;
1720}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301721
Rushabh Mehta2886b952012-02-24 11:26:31 +05301722.icon-retweet {
1723 background-position: -336px -120px;
1724}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301725
Rushabh Mehta2886b952012-02-24 11:26:31 +05301726.icon-shopping-cart {
1727 background-position: -360px -120px;
1728}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301729
Rushabh Mehta2886b952012-02-24 11:26:31 +05301730.icon-folder-close {
1731 background-position: -384px -120px;
1732}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301733
Rushabh Mehta2886b952012-02-24 11:26:31 +05301734.icon-folder-open {
1735 background-position: -408px -120px;
1736}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301737
Rushabh Mehta2886b952012-02-24 11:26:31 +05301738.icon-resize-vertical {
1739 background-position: -432px -119px;
1740}
Rushabh Mehta389880d2012-04-27 18:39:14 +05301741
Rushabh Mehta2886b952012-02-24 11:26:31 +05301742.icon-resize-horizontal {
1743 background-position: -456px -118px;
1744}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301745
Rushabh Mehta389880d2012-04-27 18:39:14 +05301746.icon-hdd {
1747 background-position: 0 -144px;
1748}
1749
1750.icon-bullhorn {
1751 background-position: -24px -144px;
1752}
1753
1754.icon-bell {
1755 background-position: -48px -144px;
1756}
1757
1758.icon-certificate {
1759 background-position: -72px -144px;
1760}
1761
1762.icon-thumbs-up {
1763 background-position: -96px -144px;
1764}
1765
1766.icon-thumbs-down {
1767 background-position: -120px -144px;
1768}
1769
1770.icon-hand-right {
1771 background-position: -144px -144px;
1772}
1773
1774.icon-hand-left {
1775 background-position: -168px -144px;
1776}
1777
1778.icon-hand-up {
1779 background-position: -192px -144px;
1780}
1781
1782.icon-hand-down {
1783 background-position: -216px -144px;
1784}
1785
1786.icon-circle-arrow-right {
1787 background-position: -240px -144px;
1788}
1789
1790.icon-circle-arrow-left {
1791 background-position: -264px -144px;
1792}
1793
1794.icon-circle-arrow-up {
1795 background-position: -288px -144px;
1796}
1797
1798.icon-circle-arrow-down {
1799 background-position: -312px -144px;
1800}
1801
1802.icon-globe {
1803 background-position: -336px -144px;
1804}
1805
1806.icon-wrench {
1807 background-position: -360px -144px;
1808}
1809
1810.icon-tasks {
1811 background-position: -384px -144px;
1812}
1813
1814.icon-filter {
1815 background-position: -408px -144px;
1816}
1817
1818.icon-briefcase {
1819 background-position: -432px -144px;
1820}
1821
1822.icon-fullscreen {
1823 background-position: -456px -144px;
1824}
1825
Rushabh Mehta2886b952012-02-24 11:26:31 +05301826/*
Rushabh Mehtad48417c2012-03-19 18:42:13 +05301827 * lib/css/bootstrap/popover.css
1828 */
1829.popover {
1830 position: absolute;
1831 top: 0;
1832 left: 0;
1833 z-index: 1010;
1834 display: none;
1835 padding: 5px;
1836}
1837.popover.top {
1838 margin-top: -5px;
1839}
1840.popover.right {
1841 margin-left: 5px;
1842}
1843.popover.bottom {
1844 margin-top: 5px;
1845}
1846.popover.left {
1847 margin-left: -5px;
1848}
1849.popover.top .arrow {
1850 bottom: 0;
1851 left: 50%;
1852 margin-left: -5px;
1853 border-left: 5px solid transparent;
1854 border-right: 5px solid transparent;
1855 border-top: 5px solid #000000;
1856}
1857.popover.right .arrow {
1858 top: 50%;
1859 left: 0;
1860 margin-top: -5px;
1861 border-top: 5px solid transparent;
1862 border-bottom: 5px solid transparent;
1863 border-right: 5px solid #000000;
1864}
1865.popover.bottom .arrow {
1866 top: 0;
1867 left: 50%;
1868 margin-left: -5px;
1869 border-left: 5px solid transparent;
1870 border-right: 5px solid transparent;
1871 border-bottom: 5px solid #000000;
1872}
1873.popover.left .arrow {
1874 top: 50%;
1875 right: 0;
1876 margin-top: -5px;
1877 border-top: 5px solid transparent;
1878 border-bottom: 5px solid transparent;
1879 border-left: 5px solid #000000;
1880}
1881.popover .arrow {
1882 position: absolute;
1883 width: 0;
1884 height: 0;
1885}
1886.popover-inner {
1887 padding: 3px;
1888 width: 280px;
1889 overflow: hidden;
1890 background: #000000;
1891 background: rgba(0, 0, 0, 0.8);
1892 -webkit-border-radius: 6px;
1893 -moz-border-radius: 6px;
1894 border-radius: 6px;
1895 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1896 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1897 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1898}
1899.popover-title {
1900 padding: 9px 15px;
1901 line-height: 1;
1902 background-color: #f5f5f5;
1903 border-bottom: 1px solid #eee;
1904 -webkit-border-radius: 3px 3px 0 0;
1905 -moz-border-radius: 3px 3px 0 0;
1906 border-radius: 3px 3px 0 0;
1907}
1908.popover-content {
1909 padding: 14px;
1910 background-color: #ffffff;
1911 -webkit-border-radius: 0 0 3px 3px;
1912 -moz-border-radius: 0 0 3px 3px;
1913 border-radius: 0 0 3px 3px;
1914 -webkit-background-clip: padding-box;
1915 -moz-background-clip: padding-box;
1916 background-clip: padding-box;
1917}
1918.popover-content p, .popover-content ul, .popover-content ol {
1919 margin-bottom: 0;
1920}
1921
1922/*
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301923 * lib/css/legacy/body.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301924 */
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301925html {
1926 margin: 0px;
1927 padding: 0px;
1928}
1929
1930body {
1931 margin: 0px;
1932 padding: 0px;
1933 font-size: 14px;
1934 color: #000;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301935}
1936
1937/* font settings */
1938
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301939h1, h2, h3, h4, h5 {
Rushabh Mehta8eba1182012-05-02 09:45:28 +05301940 font-family: Arial, sans-serif;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05301941 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301942}
1943
1944body {
Rushabh Mehta8eba1182012-05-02 09:45:28 +05301945 font-family: Arial, sans-serif;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301946 font-size: 13px;
Rushabh Mehtaa4be4d32012-04-30 14:22:02 +05301947 background-color: #eee;
1948}
1949
1950footer {
1951 background: #b7b7b7; /* Old browsers */
1952 background: -moz-linear-gradient(top, #b7b7b7 0%, #eeeeee 36%); /* FF3.6+ */
1953 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b7b7b7), color-stop(36%,#eeeeee)); /* Chrome,Safari4+ */
1954 background: -webkit-linear-gradient(top, #b7b7b7 0%,#eeeeee 36%); /* Chrome10+,Safari5.1+ */
1955 background: -o-linear-gradient(top, #b7b7b7 0%,#eeeeee 36%); /* Opera 11.10+ */
1956 background: -ms-linear-gradient(top, #b7b7b7 0%,#eeeeee 36%); /* IE10+ */
1957 background: linear-gradient(top, #b7b7b7 0%,#eeeeee 36%); /* W3C */
1958 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b7b7b7', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
1959 border-top: 1px solid #999;
1960 text-align: center;
1961 color: inherit;
1962 padding: 10px;
1963 font-size: 12px;
Rushabh Mehtad5e10312012-05-02 17:44:59 +05301964 line-height: 1.7;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301965}
1966
1967span, div, td, input, textarea, button, select {
1968 font-family: inherit;
1969}
1970
1971
1972pre { margin: 0px; padding: 0px; }
1973
1974button { margin: 2px; margin-left: 0px; }
1975
1976label {
1977 padding-top: 15px;
1978 color: #404040;
1979}
1980
1981select, input, textarea {
1982 border: 1px solid #ccc;
1983 -moz-border-radius: 4px;
1984 -webkit-border-radius: 4px;
1985 font-size: inherit;
1986 padding: 4px;
1987 color: #444;
1988 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1989 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1990 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1991}
1992
1993textarea {
1994 font-family: inherit;
1995 height: 120px;
1996 width: 90%;
1997 font-size: inherit;
1998 white-space: normal;
1999}
2000
2001table { padding: 0px; border-collapse: 'collapse'}
2002
2003td {
2004 padding:0px;
2005 margin: 0px;
2006 vertical-align: top;
2007}
2008
2009p {
2010 margin: 0px 0px 9px 0px;
2011 line-height: 1.5em;
2012}
2013
2014li {
2015 line-height: 1.5em;
2016}
2017
2018hr {
Rushabh Mehta0eb790a2012-05-11 15:53:37 +05302019 clear: both;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302020 margin: 18px 0;
2021 border: 0;
2022 border-top: 1px solid #e5e5e5;
2023 border-bottom: 1px solid #ffffff;
2024}
2025
2026/* links */
2027
2028a:active { outline:none; }
2029
2030a {
2031 color: #0088cc;
2032 text-decoration: none;
2033}
2034a:hover {
2035 color: #005580;
2036 text-decoration: underline;
2037}
2038
2039.link_type {
2040 padding:2px;
2041 color: #0088cc;
2042 cursor: pointer;
2043}
2044
2045.link_type:hover {
2046 color: #005580;
2047 text-decoration: underline;
2048}
2049
2050:focus { -moz-outline-style:none; }
2051
2052table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
2053table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
2054
2055div.fix_ff_cursor { overflow: auto; }
2056
2057/* --- Layout --- */
2058
2059div.comment { color: #444; }
2060
2061.small {
2062 font-size: 11px;
2063}
2064
2065.help {
2066 margin-bottom: 3px;
2067 color: #888;
2068}
2069
2070div#body_div {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302071 padding-right: 7px;
Rushabh Mehta702473d2012-04-26 19:01:35 +05302072 padding-top: 70px;
2073 padding-bottom: 50px;
Rushabh Mehtaa4be4d32012-04-30 14:22:02 +05302074 min-height: 400px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302075}
2076
2077.content {
Rushabh Mehta702473d2012-04-26 19:01:35 +05302078 margin: auto;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302079 width: 900px;
2080}
2081
2082.background-fade-in {
2083 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
2084 -moz-transition: background 1s ease-in;
2085 -o-transition: background 1s ease-in;
2086 transition: background 1s ease-in;
2087}
2088
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302089header .container {
2090 width: 900px;
2091 margin: auto;
2092}
2093
2094@media (max-width: 1200px) {
Rushabh Mehta702473d2012-04-26 19:01:35 +05302095 header .container, .content {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302096 width: 900px;
2097 }
2098}
2099
Anand Doshi2d1bd0a2012-05-23 11:20:12 +05302100@media (min-width: 1200px) and (max-width: 1599px) {
2101 header .container, .content {
2102 width: 1100px;
2103 }
2104}
2105
2106@media (min-width: 1600px) {
Rushabh Mehta702473d2012-04-26 19:01:35 +05302107 header .container, .content {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302108 width: 1100px;
2109 }
Anand Doshi7b93baf2012-05-21 18:41:10 +05302110 div#body_div {
Anand Doshi2d1bd0a2012-05-23 11:20:12 +05302111 min-height: 900px;
Anand Doshi7b93baf2012-05-21 18:41:10 +05302112 }
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302113}
2114
2115div.no_script {
2116 display: none;
2117}
2118
2119div.loading_div {
2120 background-color: #FFFFCC;
2121 z-index: 1999;
2122 right: 5px;
2123 width: 90px;
2124 display: none;
2125 text-align: center;
2126 padding: 2px;
2127 border: 1px solid #FF4;
2128}
2129
2130div.std-footer {
2131 margin: 13px -15px;
2132 border-top: 1px solid #AAA;
2133 padding: 13px;
2134}
2135
2136div.std-footer-item {
2137 margin: 0px 13px 13px 0px;
2138}
2139
2140.shadow {
2141 -moz-box-shadow: 0px 2px 2px #888;
2142 -webkit-box-shadow: 0px 2px 2px #888;
2143 box-shadow: 0px 2px 2px #888;
2144}
2145
2146.round {
2147 -webkit-border-radius: 5px;
2148 -moz-border-radius: 5px;
2149 border-radius: 5px;
2150}
2151
2152.layout_wrapper, .layout-wrapper {
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302153 -moz-box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
2154 -webkit-box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
2155 box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302156 background-color: #fff;
2157 padding: 15px;
2158 -webkit-border-radius: 5px;
2159 -moz-border-radius: 5px;
2160 border-radius: 5px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302161 overflow: hidden;
2162}
2163
2164.layout-wrapper-appframe {
2165 padding: 0px;
2166}
2167
2168.layout-wrapper-background {
2169 background-color: #fafafa !important;
2170 padding: 0px;
2171}
2172
Rushabh Mehta2146fd12012-04-17 12:40:37 +05302173.layout-main {
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302174 padding: 15px;
2175 background-color: #fff;
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302176}
2177
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302178.layout-main-section {
2179 width: 71%;
2180 float: left;
2181 padding: 15px;
2182 background-color: #FFF;
2183 min-height: 600px;
2184 -moz-box-shadow: 2px 0px 1px #ddd;
2185 -webkit-box-shadow: 2px 0px 1px #ddd;
2186 box-shadow: 2px 0px 1px #ddd;
2187}
2188
2189.layout-side-section {
2190 width: 22%;
2191 /*float: right;*/
2192 color: #606060;
2193 overflow-x: hidden;
2194 padding: 15px;
2195 min-height: 600px;
2196}
2197
2198/* from bootstrap */
2199.container {
2200 margin-left: auto;
2201 margin-right: auto;
2202 zoom: 1;
2203}
2204.container:before, .container:after {
2205 display: table;
2206 content: "";
2207 zoom: 1;
2208}
2209.container:after {
2210 clear: both;
2211}
2212
2213.well {
2214 min-height: 20px;
2215 padding: 19px;
2216 margin-bottom: 20px;
2217 background-color: #f5f5f5;
2218 border: 1px solid #eee;
2219 border: 1px solid rgba(0, 0, 0, 0.05);
2220 -webkit-border-radius: 4px;
2221 -moz-border-radius: 4px;
2222 border-radius: 4px;
2223 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2224 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2225 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2226}
2227
2228.avatar-small {
2229 display: inline-block;
2230 width: 24px;
2231 height: 20px;
2232 vertical-align: middle;
2233 overflow: hidden;
2234 margin: 0px 3px;
Rushabh Mehtad5e10312012-05-02 17:44:59 +05302235 border-radius: 3px;
2236 -moz-border-radius: 3px;
2237 -webkit-border-radius: 3px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302238}
2239.avatar-small img {
2240 width: 24px;
2241}
2242
Rushabh Mehtad5e10312012-05-02 17:44:59 +05302243.erpnext-logo {
2244 position: fixed;
2245 bottom: 5px;
2246 left: 5px;
2247 height: 40px;
2248 width: 40px;
2249 background: url('../images/erpnext-fade.png') no-repeat top left;
2250}
2251
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302252/*
2253 * lib/css/legacy/messages.css
2254 */
2255
2256/* FLOATING MESSAGE */
2257
2258.btn-img { cursor: pointer; }
2259
2260div.fetching { color: #888; text-align:right; }
2261
2262div.notice {
2263 postion: absolute;
2264 background-color: #000;
2265 -moz-border-radius: 5px; -webkit-border-radius: 5px;
2266 opacity: 0.6;
2267 right: 0;
2268 top: 0;
2269 margin-top: 8px;
2270 z-index: -1;
2271 padding: 8px;
2272}
2273
2274/** help **/
2275
2276.info-box {
2277 background-color: #F8F8F8;
2278 border: 1px solid #CCCCCC;
2279 border-radius: 3px 3px 3px 3px;
2280 line-height: 1.6em;
2281 overflow: auto;
2282 padding: 6px 10px;
2283 margin-bottom: 9px;
2284}
2285
2286.help_box, .help-box {
2287 background-color:#FFC;
2288 font-size: 13px;
2289 color: #864;
2290 padding: 7px;
2291 margin: 11px 0px;
2292 border: 1px solid #EEB;
2293}
2294
2295.help_box_big {
2296 background-color:#FFC;
2297 color: #864;
2298 padding: 7px;
2299 margin: 7px 0px;
2300 border: 1px solid #EEB;
2301 text-align: center;
2302 font-size: 14px;
2303}
2304
2305/*
2306 * lib/css/legacy/forms.css
2307 */
2308/* FORMS */
2309
2310div.form-title {
2311 /*background-color: #e0eeff;*/
2312 padding: 5px 19px 15px 19px;
2313 margin: -15px -15px 0px -15px;
2314 border-bottom: 1px solid #eee;
2315}
2316
Rushabh Mehta4c562752012-06-14 11:05:09 +05302317.appframe-titlebar .label {
2318 vertical-align: middle;
2319 margin-right: 7px;
2320}
2321
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302322div.form-section-head {
2323 margin: 11px -15px 3px -15px;
2324 border-top: 1px solid #ccc;
2325 padding: 11px 23px 0px 23px;
2326}
2327
2328div.form-layout-row:first-child .form-section-head {
2329 border-top: 0px solid #ccc !important;
2330 margin-top: 0px;
Rushabh Mehta1ee2a5a2012-07-10 17:22:20 +05302331 padding-top: 0px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302332}
2333
2334div.form-section-head h3 {
2335 line-height: 20px;
2336}
2337
2338div.form-section-head hr {
2339 margin: 9px 0px;
2340}
2341
2342
2343div.frm_print_wrapper {
2344 background-color:#FFF;
2345 border:1px solid #444;
2346 padding: 40px;
2347
2348 box-shadow:1px 1px 8px #229;
2349 -moz-box-shadow: 1px 1px 8px #229;
2350 -webkit-box-shadow: 1px 1px 8px #229;
2351}
2352
2353div.page_break {
2354 margin: 24px 0px;
2355 border-top: 1px dashed #888;
2356}
2357
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302358div.dialog_frm {
2359 position: relative;
2360 margin: 10px;
2361}
2362
2363
2364
2365/*------------------*/
2366
2367.top_cell {
2368 height: 50px;
2369}
2370
2371div.attach_area {
2372 padding: 8px;
2373 margin: 8px;
2374 background-color: #EEE;
2375}
2376
2377div.attach_area table {
2378 width: 100%;
2379}
2380
2381.tablabel_normal {
2382 margin: 0 4px 0 0;
2383 padding: 3px 5px;
2384 line-height: 1.3em;
2385 display: inline;
2386 cursor: pointer;
2387}
2388
2389.tablabel_selected {
2390 margin: 0 4px 0 0;
2391 padding: 3px 5px;
2392 line-height: 1.3em;
2393 font-weight: bold;
2394 display: inline;
2395 cursor: pointer;
2396 color: #000;
2397}
2398
2399.scrollhead_wrapper {
2400 position: absolute;
2401 z-index: 1;
2402 height: 30px;
2403}
2404
2405.treeimg {
2406 cursor: pointer;
2407 margin-right: 3px;
2408}
2409
2410
2411.sectionCell {
2412 padding: 5px;
2413 vertical-align: top;
2414}
2415
2416.code_area {
2417 width: 80%;
2418 margin: 8px;
2419 padding: 4px;
2420 background-color: #F8F8F8;
2421 border: 1px solid #CCC;
2422 overflow-x: auto;
2423}
2424
2425.code_text {
2426 width: 100%;
2427 height: 360px;
2428 margin-top: 3px;
2429 font-family: Courier, Fixed;
2430 font-size: 12px;
2431}
2432
2433div.time_field select{
2434 display: inline;
2435 margin: 2px;
2436 width: 45px;
2437}
2438
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302439/* sidebar */
2440
2441div.sidebar-comment-wrapper input {
2442 width: 50%;
2443}
2444div.sidebar-comment-message {
2445 margin-top: 8px;
2446 color: #777;
2447}
2448
2449div.sidebar-comment-text {
2450 font-size: 12px;
2451 font-weight: bold;
2452 margin-top: 8px;
2453 color: #444;
2454}
2455div.sidebar-comment-info {
2456 color: #777;
2457}
2458
2459/*
2460 * lib/css/legacy/fields.css
2461 */
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302462/* Documents */
2463
2464.frm_field_table {
2465 width: 100%;
2466 border-collapse: collapse;
2467}
2468
2469.datalabelcell {
2470 padding: 2px 0px;
2471 width: 160px;
2472 vertical-align: top;
2473}
2474.datainputcell { padding: 2px 0px; }
2475
2476
2477.help ol {
2478 padding-left: 19px;
2479}
2480
2481.field_description_top {
2482 margin-bottom: 3px;
2483}
2484
2485.input_area input, select, textarea {
2486 font-size: 14px;
2487 padding: 2px;
2488}
2489
2490.input_area input {
2491 width: 80%;
2492 margin: 0px;
2493}
2494.input_area select {
2495 width: 80%;
2496}
2497.input_area textarea {
2498 width: 90%;
2499}
2500
2501.disp_area {
2502 width: 80%;
2503 padding: 2px 0px;
2504 font-size: 12px;
2505}
2506.disp_area_no_val {
2507 height: 14px;
2508}
2509
2510.no_img {
2511 padding: 40px;
2512 width: 100px;
2513 height: 20px;
2514 color: #888;
2515 text-align: center;
2516 border: 1px solid #AAA;
2517}
2518
2519.input-mandatory {
2520 font-size: 14px !important;
2521 font-weight: bold;
2522}
2523
2524.field-to-update {
2525 background-color:#FEE;
2526}
2527
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302528/*
2529 * lib/css/legacy/grid.css
2530 */
2531
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302532.grid_wrapper {
2533 position: relative;
2534 overflow: auto;
2535 border: 1px solid #AAA;
2536 width: 100%;
2537 margin-bottom: 8px;
Rushabh Mehta1ee2a5a2012-07-10 17:22:20 +05302538 background-color: #f8f8f8;
2539}
2540
2541div.grid_tbarlinks {
2542 border-bottom: 0px;
2543 padding: 4px 4px 2px 4px;
2544 width: 190px;
2545 float: right;
2546 margin-right: 12px;
2547
2548 -webkit-border-top-left-radius: 5px;
2549 -webkit-border-top-right-radius: 5px;
2550 -moz-border-radius-topleft: 5px;
2551 -moz-border-radius-topright: 5px;
2552 border-top-left-radius: 5px;
2553 border-top-right-radius: 5px;
2554
2555 background: #dddddd; /* Old browsers */
2556 background: -moz-linear-gradient(top, #dddddd 0%, #bbbbbb 100%); /* FF3.6+ */
2557 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dddddd), color-stop(100%,#bbbbbb)); /* Chrome,Safari4+ */
2558 background: -webkit-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* Chrome10+,Safari5.1+ */
2559 background: -o-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* Opera 11.10+ */
2560 background: -ms-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* IE10+ */
2561 background: linear-gradient(to bottom, #dddddd 0%,#bbbbbb 100%); /* W3C */
2562 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#bbbbbb',GradientType=0 ); /* IE6-9 */
2563
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302564}
2565
2566.grid_tab_wrapper {
2567 position: absolute;
2568 top: 40px;
2569 border-bottom: 1px solid #DDD;
2570}
2571
2572.grid_table, .grid_head_table {
2573 table-layout: fixed;
2574 border-collapse: collapse;
2575 /*width: 100%;*/
2576}
2577
2578.grid_cell {
2579 border-right: 1px solid #ddd;
2580 padding: 0px;
2581 background-color: #fff;
2582}
2583
2584.grid_head_wrapper {
2585 position: absolute;
2586 z-index: 1;
2587 height: 40px;
2588 padding: 0px;
2589 overflow: hidden;
2590 /*background-color: #fff;*/
2591}
2592
2593.grid_head_table td {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302594 border-right: 1px solid #AAA;
2595 border-bottom: 1px solid #AAA;
2596 height: 40px;
2597 padding: 0px;
Rushabh Mehta1ee2a5a2012-07-10 17:22:20 +05302598
2599 background: #eeeeee; /* Old browsers */
2600 background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
2601 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
2602 background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
2603 background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
2604 background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */
2605 background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 100%); /* W3C */
2606 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302607}
2608
2609.grid_head_table td div {
2610 color: #222;
2611 font-weight: bold;
2612 overflow: hidden;
2613 padding: 2px 0px;
2614 text-align: center;
2615}
2616
2617.grid_selector {
2618 padding: 1px;
2619 border-right: 1px solid #DDD;
2620 width: 20px;
2621 background-color: #fff;
2622}
2623
2624.grid_cell_div {
2625 padding: 2px;
2626 cursor: pointer;
2627 overflow: hidden;
2628 border: 2px solid #FFF;
2629}
2630
2631.grid_cell_div_selected {
2632 border: 2px solid #88f;
2633}
2634
2635.grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
2636 margin: 0px;
2637 border: 0px;
2638 width: 100%;
2639 margin: 0px;
2640 }
2641
2642.grid_cell_div textarea {
2643 border: 3px solid #abf;
2644 height:200px;
2645 width: 300px;
2646 z-index: 10;
2647 position:absolute;
2648}
2649
2650.gridDivSelected option { border: 0px; }
2651
2652/*
2653 * lib/css/legacy/listing.css
2654 */
2655
2656
2657/* SRS */
2658
2659table.srs_result_tab {
2660 border: 2px solid #AAA;
2661 border-collapse: collapse;
2662}
2663
2664/* firefox bug fix for disappering borders */
2665table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div {
2666 position: static;
2667}
2668
2669table.srs_result_tab td {
2670 padding: 3px 2px;
2671 position: static;
2672}
2673
2674div.srs_body_area {
2675}
2676
2677div.srs_results_area {
2678}
2679
2680div.srs_filter_wrapper {
2681 border: 1px solid #CCF;
2682
2683 background-color: #EEF;
2684 margin:0px 0px 8px 0px;
2685
2686 -moz-border-radius: 5px;
2687 -webkit-border-radius: 5px;
2688 border-radius: 5px;
2689}
2690
2691div.srs_filter_area {
2692 padding: 8px;
2693}
2694
2695div.srs_filter_area td {
2696 vertical-align: middle;
2697}
2698
2699/*
2700 * lib/css/legacy/report.css
2701 */
2702
2703/* Reports */
2704
2705div.report_grid_area {
2706 position: relative;
2707 padding: 8px;
2708}
2709
2710
2711div.report_tab {
2712 border: 1px solid #AAA;
2713 position: relative;
2714 overflow: auto;
2715}
2716
2717div.report_no_data {
2718 padding: 8px;
2719 background-color: #EEE;
2720 border: 1px solid #DDD;
2721 position: absolute;
2722 margin-left: 40%;
2723 margin-top: 50px;
2724 display: none;
2725}
2726
2727div.report_htitle {
2728 float: left;
2729 padding: 2px;
2730 font-size: 14px;
2731 font-weight: bold;
2732 margin-left: 4px;
2733 color: #665;
2734 /*font-weight: bold;*/
2735}
2736
2737div.report_tbar {
2738 background-color: #EEF;
2739 border: 1px solid #CCF;
2740 border-bottom: 0px;
2741 height: 28px;
2742}
2743
2744div.report_tbar table{
2745 width: 100%;
2746}
2747div.report_tbar table td {
2748
2749}
2750div.report_tbar table td div {
2751 position: relative;
2752}
2753div.report_tbar button, div.report_tbar select, div.report_tbar img {
2754 font-size: 11px;
2755 margin: 0px;
2756}
2757
2758div.report_head_wrapper {
2759 position: absolute;
2760 height: 24px;
2761 top: 0px;
2762 z-index: 1;
2763}
2764
2765div.report_tab_wrapper {
2766 position: absolute;
2767 border-bottom: 1px solid #AAA;
2768 border-top: 1px solid #AAA;
2769}
2770
2771div.report_tab_wrapper table, div.report_head_wrapper table {
2772 table-layout: fixed;
2773 border-collapse: collapse;
2774 /*width: 100%;*/
2775}
2776
2777div.report_tab_wrapper table td, div.report_head_wrapper table td {
2778 border-left: 1px solid #AAA;
2779 border-right: 1px solid #AAA;
2780 border-bottom: 1px solid #AAA;
2781 overflow: hidden;
2782 padding: 0px;
2783}
2784
2785div.report_tab_wrapper table td div, div.report_head_wrapper table td div {
2786 padding: 3px;
2787 overflow: hidden;
2788}
2789
2790.report_head_cell {
2791 background-color: #EEE;
2792 border-bottom: 1px solid #AA9;
2793 text-align: center;
2794 font-weight: bold;
2795}
2796.report_head_cell div {
2797 color:#222;
2798 height: 18px;
2799}
2800
2801
2802/* FINDER */
2803
2804div.finder_wrapper {
2805}
2806
2807div.finder_body_area {
2808 margin: 16px;
2809}
2810
2811div.finder_body {
2812 display: none;
2813}
2814
2815div.finder_advanced_area table {
2816 width: 80%;
2817}
2818
2819div.finder_advanced_area textarea {
2820 width: 80%;
2821}
2822
2823div.finder_filter_area {
2824 position: relative;
2825}
2826
2827div.filter_head {
2828 font-size: 14px;
2829 margin-bottom: 2px;
2830}
2831div.filter_dt_head {
2832 font-size: 14px;
2833 font-weight: bold;
2834 margin-bottom: 2px;
2835}
2836table.filter_tab {
2837 width: 96%;
2838 border-collapse: collapse;
2839}
2840
2841table.filter_tab td {
2842 width: 50%;
2843}
2844
2845div.finder_picker_area {
2846
2847}
2848div.builder_field {
2849 margin: 0px;
2850}
2851div.builder_dt_head {
2852 font-size: 14px;
2853 font-weight: bold;
2854 margin-bottom: 2px;
2855}
2856
2857div.builder_field table {
2858 width: 90%;
2859 border-collapse: collapse;
2860}
2861
2862div.builder_label {
2863 height: 20px;
2864}
2865
2866div.builder_head {
2867 font-size: 16px;
2868 font-weight: bold;
2869 color: #AB6;
2870}
2871
2872table.builder_tab {
2873 width: 96%;
2874 border-collapse: collapse;
2875}
2876
2877table.builder_tab td {
2878 width: 33%;
2879 padding: 2px;
2880}
2881
2882/*
2883 * lib/css/legacy/dialog.css
2884 */
2885/***** Dialogs *******/
2886
2887div.dialog_wrapper {
2888 position: absolute;
2889 width: 440px;
2890 display: none;
2891 z-index: 90;
2892 background-color: #FFF;
2893 box-shadow:1px 1px 8px #444;
2894 -moz-box-shadow: 1px 1px 8px #444;
2895 -webkit-box-shadow: 1px 1px 8px #444;
2896
2897 border-radius: 5px;
2898 -moz-border-radius: 5px;
2899 -webkit-border-radius: 5px;
2900
2901 overflow: hidden;
2902}
2903
2904div.dialog_head {
2905 height: 22px;
2906 padding: 4px;
2907 background-color: #222;
2908 color: #FFF;
2909}
2910
2911div.dialog_body {
2912 padding: 8px 8px 16px;
2913 border-radius: 5px;
2914 -moz-border-radius: 5px;
2915 -webkit-border-radius: 5px;
2916}
2917
2918div.dialog_back {
2919 position: fixed;
2920 display: none;
2921 top: 0px;
2922 left: 0px;
2923 bottom: 0px;
2924 right: 0px;
2925 background-color: #aaa;
2926 opacity: 0.6;
2927 z-index: 50;
2928 text-align: center;
2929}
2930
2931div.dialog_message {
2932 display: none;
2933 position: absolute;
2934 width: 250px;
2935 font-size: 12px;
2936 z-index: 91;
2937 background-color:#FFF;
2938 padding: 12px;
2939 border: 1px solid #444;
2940}
2941
2942div.dialog_row {
2943 padding: 8px 8px 0px 8px;
2944}
2945
2946div.dialog_row table {
2947 width: 100%;
2948}
2949
2950div.dialog_row table td {
2951}
2952
2953div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
2954 width: 80%;
2955 font-size: 14px;
2956}
2957
2958div.dialog_row table td textarea {
2959 width: 80%;
2960 height: 200px;
2961 font-size: 12px;
2962}
2963
2964
2965/*
2966 * lib/css/legacy/tabs.css
2967 */
2968
2969/******* TABS ********/
2970
2971div.box_label_wrapper {
2972 border-bottom: 6px solid #777;
2973}
2974
2975div.box_label_body {
2976 height: 22px;
2977}
2978
2979ul.box_tabs {
2980 margin: 0px;
2981 padding: 0px;
2982 list-style: none;
2983}
2984
2985ul.box_tabs li {
2986 height: 22px;
2987 float:left;
2988 font-size: 12px;
2989 text-decoration: underline;
2990
2991 background-color: #DDD;
2992
2993 margin:0;
2994 margin-left: 4px;
2995 padding:0 0 0 9px;
2996 cursor: pointer;
2997}
2998
2999ul.box_tabs li a {
3000 display:block;
3001 padding:3px 15px 3px 6px;
3002 text-decoration: none;
3003}
3004
3005ul.box_tabs li.box_tab_mouseover {
3006 background-color: #BBB;
3007}
3008
3009ul.box_tabs li.box_tab_selected {
3010 background-color: #777;
3011
3012 background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
3013 background: -moz-linear-gradient(top, #999, #777);
3014
3015 color: #FFF;
3016 font-weight:bold;
3017
3018}
3019ul.box_tabs li.box_tab_selected a {
3020 color: #fff;
3021}
3022
3023/*
3024 * lib/css/legacy/sidebar.css
3025 */
3026div.psidebar {
3027}
3028
3029div.psidebar div.head {
3030 font-size: 14px;
3031 font-weight: bold;
3032 color: #555;
3033 margin-bottom: 12px;
3034}
3035
3036div.psidebar div.section {
3037 margin-bottom: 11px;
3038 overflow: hidden;
3039}
3040
3041div.psidebar div.section-head {
3042 padding: 5px 11px;
3043 border-bottom: 1px solid #aaa;
3044}
3045
3046div.psidebar div.section-body {
3047 margin: 7px 11px 11px 11px;
3048}
3049
3050div.psidebar div.section-item {
3051 margin-bottom: 7px;
3052}
3053
3054div.psidebar div.section-item, div.psidebar .section-link {
3055 color: #666;
3056}
3057
3058/*
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303059 * lib/css/ui/common.css
3060 */
3061.navbar-icon-home {
3062 vertical-align: middle;
3063 opacity: 0.4;
3064 Filter:alpha(opacity=40); /* For IE8 and earlier */
3065}
3066
3067.navbar-icon-home:hover,
3068.navbar-icon-home:focus,
3069.navbar-icon-home:active,
3070.navbar-icon-home-hover{
3071 opacity:1;
3072 Filter:alpha(opacity=100); /* For IE8 and earlier */
3073}
3074
3075
3076/*
3077 * lib/css/ui/list.css
3078 */
3079.hide {
3080 display: none;
3081}
3082
3083.list-filters {
3084 margin: 7px 0px;
3085}
3086
3087.wnlist .img-load {
3088 display: none;
3089 float: left;
3090 margin-bottom: 8px;
3091}
3092
3093/* list-row */
3094div.list-row {
Rushabh Mehta078867c2012-05-09 16:15:51 +05303095 border-bottom: 1px solid #ddd;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303096 padding: 5px 0px;
3097}
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303098
3099div.list-row .label {
3100 margin-right: 4px;
3101}
3102
3103div.list-row table {
3104 table-layout: fixed;
3105 border-collapse: collapse;
3106 width: 100%;
3107}
3108
3109div.list-row table td {
3110 overflow: hidden;
3111 /*padding-right: 3px;*/
3112 padding: 0px 3px;
3113 vertical-align: middle;
3114 height: 24px;
3115 max-height: 24px;
3116 word-wrap: break-word;
3117}
3118
3119div.paging-button {
3120 text-align: center;
3121 padding: 11px 0px;
3122}
3123
3124div.show_filters {
3125 display: none;
3126}
3127
3128div.filter_list {
3129 padding: 13px;
3130}
3131
3132div.show_filters.well {
3133 margin-top: 11px;
3134 margin-bottom: 11px;
3135}
3136
3137div.filter_list .run_btn {
3138 text-align: right;
3139}
3140
3141div.filter_list .add_filter {
3142 margin: 3px 0px;
3143}
3144
3145div.list_filter {
3146 margin: 7px 0px;
3147}
3148
3149div.list_filter input, div.list_filter select {
3150 width: 130px;
3151 margin-right: 7px;
3152}
3153
3154/* bar */
3155
3156span.bar-outer {
3157 display: inline-block;
3158 margin: 0px 7px;
3159 margin-top: 3px;
3160 background-color: #fff;
3161 border: 1px solid #aaa;
3162 height: 10px;
3163}
3164
3165span.bar-inner {
3166 display: inline-block;
3167 background-color: #bdf;
3168 height: 100%;
3169 margin-bottom: 2px;
3170 float: left;
3171}
3172span.bar-complete {
3173 background-color: #009900;
3174}
3175span.bar-empty {
3176 background-color: #990000;
3177}
3178
3179
3180/* stats */
3181
3182div.stat-wrapper {
Rushabh Mehta078867c2012-05-09 16:15:51 +05303183 margin-bottom: 19px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303184}
3185
3186div.stat-grid {
Rushabh Mehta078867c2012-05-09 16:15:51 +05303187 margin-top: 9px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303188 overflow: hidden;
3189}
3190
3191div.stat-label {
3192 position: relative;
3193 padding: 3px;
3194 text-align: center;
Rushabh Mehta03262e02012-05-09 16:55:58 +05303195 font-size: 11px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303196}
3197div.stat-label, div.stat-label a {
3198 z-index: 5;
3199}
3200
3201div.stat-item {
3202 position: relative;
Rushabh Mehta078867c2012-05-09 16:15:51 +05303203 margin-bottom: 7px;
3204 background-color: #fff;
Rushabh Mehta03262e02012-05-09 16:55:58 +05303205 height: 18px;
Rushabh Mehtaea7ba722012-05-10 19:07:53 +05303206 border: 1px solid #aaa;
Rushabh Mehta03262e02012-05-09 16:55:58 +05303207 border-radius: 9px;
Anand Doshi368cb532012-07-09 13:32:06 +05303208 -webkit-border-radius: 9px;
3209 -moz-border-radius: 9px;
Rushabh Mehta078867c2012-05-09 16:15:51 +05303210 overflow: hidden;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303211}
3212
3213div.stat-bar {
3214 position: absolute;
3215 left: 0px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303216 height: 100%;
3217 z-index: 0;
Anand Doshi368cb532012-07-09 13:32:06 +05303218 /* So that this div is also curved like the enclosing one */
3219 border-radius: 9px;
3220 -webkit-border-radius: 9px;
3221 -moz-border-radius: 9px;
Rushabh Mehta03262e02012-05-09 16:55:58 +05303222
3223 background: #e0ff84; /* Old browsers */
3224 background: -moz-linear-gradient(top, #e0ff84 0%, #a4e567 100%); /* FF3.6+ */
3225 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e0ff84), color-stop(100%,#a4e567)); /* Chrome,Safari4+ */
3226 background: -webkit-linear-gradient(top, #e0ff84 0%,#a4e567 100%); /* Chrome10+,Safari5.1+ */
3227 background: -o-linear-gradient(top, #e0ff84 0%,#a4e567 100%); /* Opera 11.10+ */
3228 background: -ms-linear-gradient(top, #e0ff84 0%,#a4e567 100%); /* IE10+ */
3229 background: linear-gradient(top, #e0ff84 0%,#a4e567 100%); /* W3C */
3230 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0ff84', endColorstr='#a4e567',GradientType=0 ); /* IE6-9 */
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303231}
3232
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303233/*
3234 * lib/css/ui/views.css
3235 */
3236
Rushabh Mehta4c562752012-06-14 11:05:09 +05303237.breadcrumb-area, .breadcrumb-area span {
3238 vertical-align: middle;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303239}
3240
3241div.appframe-titlebar {
3242 padding: 6px;
3243 background: #eeeeee; /* Old browsers */
3244 background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
3245 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
3246 background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
3247 background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
3248 background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */
3249 background: linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* W3C */
3250 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05303251 border-bottom: 1px solid #aaa;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303252 min-height: 1.2em;
Rushabh Mehta6d5956e2012-05-02 18:06:39 +05303253 border-radius: 5px 5px 0px 0px;
3254 -webkit-border-radius: 5px 5px 0px 0px;
3255 -moz-border-radius: 5px 5px 0px 0px;
Rushabh Mehta4c562752012-06-14 11:05:09 +05303256
3257 text-shadow: 0px 1px 1px #fff;
3258 color: #555;
3259}
3260
3261span.appframe-title {
3262 font-size: 160%;
3263 font-weight: bold;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303264}
3265
3266div.appframe-toolbar {
3267 padding: 4px;
3268 background: #eeeeee;
3269 border-top: 1px solid #f8f8f8;
3270 border-bottom: 1px solid #ccc;
3271}
3272
3273/*
3274 * lib/css/ui/fonts.css
3275 */
3276@font-face {
3277 font-family: 'Pontano Sans';
3278 font-style: normal;
3279 font-weight: 800;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05303280 src: url('fonts/pontanosans.woff') format('woff');
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303281}
3282
3283@font-face {
3284 font-family: 'Droid Sans';
3285 font-style: normal;
3286 font-weight: normal;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05303287 src: local('Droid Sans'), local('DroidSans'), url('fonts/droidsans.woff') format('woff');
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303288}
3289
3290@font-face {
3291 font-family: 'PT Sans';
3292 font-style: normal;
3293 font-weight: normal;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05303294 src: local('PT Sans'), local('PTSans-Regular'), url('fonts/ptsans.woff') format('woff');
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303295}
3296
3297@font-face {
3298 font-family: 'Open Sans';
3299 font-style: normal;
3300 font-weight: 400;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05303301 src: local('Open Sans'), local('OpenSans'), url('fonts/opensans.woff') format('woff');
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303302}
3303
3304@font-face {
3305 font-family: 'Lato';
3306 font-style: normal;
3307 font-weight: 400;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05303308 src: local('Lato Regular'), local('Lato-Regular'), url('fonts/lato.woff') format('woff');
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303309}
3310
3311@font-face {
3312 font-family: 'Cabin';
3313 font-style: normal;
3314 font-weight: 400;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05303315 src: local('Cabin Regular'), local('Cabin-Regular'), url('fonts/cabin.woff') format('woff');
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303316}
3317
3318@font-face {
3319 font-family: 'Pacifico';
3320 font-style: normal;
3321 font-weight: normal;
Rushabh Mehtac75877a2012-05-25 17:21:32 +05303322 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('fonts/pacifico.woff') format('woff');
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303323}
3324
Anand Doshi6548b502012-05-26 16:50:06 +05303325@font-face {
Anand Doshi822318f2012-05-26 17:01:00 +05303326 font-family: 'Oleo Script';
Anand Doshi6548b502012-05-26 16:50:06 +05303327 font-style: normal;
3328 font-weight: 400;
Anand Doshi822318f2012-05-26 17:01:00 +05303329 src: local('Oleo Script'), local('OleoScript-Regular'), url('fonts/oleoscript.woff') format('woff');
Anand Doshi6548b502012-05-26 16:50:06 +05303330}
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303331
Rushabh Mehtae3167952012-05-26 13:50:05 +02003332@font-face {
3333 font-family: 'Cookie';
3334 font-style: normal;
3335 font-weight: 400;
3336 src: local('Cookie-Regular'), url('fonts/cookie.woff') format('woff');
3337}
3338
Rushabh Mehta3237d6a2012-05-28 10:42:32 +02003339@font-face {
3340 font-family: 'Marck Script';
3341 font-style: normal;
3342 font-weight: 400;
3343 src: local('Marck Script'), local('MarckScript-Regular'), url('fonts/marckscript.woff') format('woff');
3344}
3345
Rushabh Mehtae3167952012-05-26 13:50:05 +02003346
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303347/*
Anand Doshi3fa25fa2012-05-10 15:15:43 +05303348 * lib/js/lib/Aristo/aristo.selected.css
3349 */
3350/*
3351 * jQuery UI CSS Framework 1.8.7
3352 *
3353 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
3354 * Dual licensed under the MIT or GPL Version 2 licenses.
3355 * http://jquery.org/license
3356 *
3357 * http://docs.jquery.com/UI/Theming/API
3358 */
3359
3360/* Layout helpers
3361----------------------------------*/
3362.ui-helper-hidden { display: none; }
3363.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
3364.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
3365.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
3366.ui-helper-clearfix { display: inline-block; }
3367/* required comment for clearfix to work in Opera \*/
3368* html .ui-helper-clearfix { height:1%; }
3369.ui-helper-clearfix { display:block; }
3370/* end clearfix */
3371.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
3372
3373
3374/* Interaction Cues
3375----------------------------------*/
3376.ui-state-disabled { cursor: default !important; }
3377
3378
3379/* Icons
3380----------------------------------*/
3381
3382/* states and images */
3383.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
3384
3385
3386/* Misc visuals
3387----------------------------------*/
3388
3389/* Overlays */
3390.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
3391
3392
3393/*
3394 * jQuery UI CSS Framework 1.8.7
3395 *
3396 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
3397 * Dual licensed under the MIT or GPL Version 2 licenses.
3398 * http://jquery.org/license
3399 *
3400 * http://docs.jquery.com/UI/Theming/API
3401 *
3402 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
3403 */
3404
3405
3406/* Component containers
3407----------------------------------*/
3408.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
3409.ui-widget .ui-widget { font-size: 1em; }
3410.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
3411.ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; }
3412.ui-widget-content a { color: #4F4F4F; }
3413.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
3414.ui-widget-header {
3415 background: #ededed url(../js/lib/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
3416 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
3417 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
3418 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
3419 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
3420 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
3421 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
3422}
3423.ui-widget-header a { color: #4F4F4F; }
3424
3425/* Interaction states
3426----------------------------------*/
3427.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
3428.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
3429 background: #ededed url(../js/lib/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */
3430 background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
3431 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
3432 background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
3433 background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
3434 background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
3435 background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
3436 -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
3437 -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
3438 box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
3439}
3440.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
3441.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #9D9D9D; font-weight: normal; color: #313131; }
3442.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
3443.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
3444 outline: none;
3445 color: #1c4257; border: 1px solid #7096ab;
3446 background: #ededed url(../js/lib/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
3447 background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
3448 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
3449 background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
3450 background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
3451 background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
3452 background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
3453 -webkit-box-shadow: none;
3454 -moz-box-shadow: none;
3455 box-shadow: none;
3456}
3457.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
3458.ui-widget :active { outline: none; }
3459
3460/* Interaction Cues
3461----------------------------------*/
3462.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight { border: 1px solid #d2dbf4; background: #f4f8fd; color: #0d2054; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
3463.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
3464.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error { border: 1px solid #e2d0d0; background: #fcf0f0; color: #280b0b; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
3465.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
3466.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
3467.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
3468.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
3469.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
3470
3471/* Icons
3472----------------------------------*/
3473
3474/* states and images */
3475.ui-icon { width: 16px; height: 16px; background-image: url(../js/lib/Aristo/images/ui-icons_222222_256x240.png); }
3476.ui-widget-content .ui-icon {background-image: url(../js/lib/Aristo/images/ui-icons_222222_256x240.png); }
3477.ui-widget-header .ui-icon {background-image: url(../js/lib/Aristo/images/ui-icons_222222_256x240.png); }
3478.ui-state-default .ui-icon { background-image: url(../js/lib/Aristo/images/ui-icons_454545_256x240.png); }
3479.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../js/lib/Aristo/images/ui-icons_454545_256x240.png); }
3480.ui-state-active .ui-icon {background-image: url(../js/lib/Aristo/images/ui-icons_454545_256x240.png); }
3481.ui-state-highlight .ui-icon {background-image: url(../js/lib/Aristo/images/ui-icons_454545_256x240.png); }
3482.ui-state-error .ui-icon, .ui-state-error-text .ui-icon { background: url(../js/lib/Aristo/images/icon_sprite.png) -16px 0 no-repeat !important; }
3483.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
3484
3485/* positioning */
3486.ui-icon-carat-1-n { background-position: 0 0; }
3487.ui-icon-carat-1-ne { background-position: -16px 0; }
3488.ui-icon-carat-1-e { background-position: -32px 0; }
3489.ui-icon-carat-1-se { background-position: -48px 0; }
3490.ui-icon-carat-1-s { background-position: -64px 0; }
3491.ui-icon-carat-1-sw { background-position: -80px 0; }
3492.ui-icon-carat-1-w { background-position: -96px 0; }
3493.ui-icon-carat-1-nw { background-position: -112px 0; }
3494.ui-icon-carat-2-n-s { background-position: -128px 0; }
3495.ui-icon-carat-2-e-w { background-position: -144px 0; }
3496.ui-icon-triangle-1-n { background-position: 0 -16px; }
3497.ui-icon-triangle-1-ne { background-position: -16px -16px; }
3498.ui-icon-triangle-1-e { background-position: -32px -16px; }
3499.ui-icon-triangle-1-se { background-position: -48px -16px; }
3500.ui-icon-triangle-1-s { background-position: -64px -16px; }
3501.ui-icon-triangle-1-sw { background-position: -80px -16px; }
3502.ui-icon-triangle-1-w { background-position: -96px -16px; }
3503.ui-icon-triangle-1-nw { background-position: -112px -16px; }
3504.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
3505.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
3506.ui-icon-arrow-1-n { background-position: 0 -32px; }
3507.ui-icon-arrow-1-ne { background-position: -16px -32px; }
3508.ui-icon-arrow-1-e { background-position: -32px -32px; }
3509.ui-icon-arrow-1-se { background-position: -48px -32px; }
3510.ui-icon-arrow-1-s { background-position: -64px -32px; }
3511.ui-icon-arrow-1-sw { background-position: -80px -32px; }
3512.ui-icon-arrow-1-w { background-position: -96px -32px; }
3513.ui-icon-arrow-1-nw { background-position: -112px -32px; }
3514.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
3515.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
3516.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
3517.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
3518.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
3519.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
3520.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
3521.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
3522.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
3523.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
3524.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
3525.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
3526.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
3527.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
3528.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
3529.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
3530.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
3531.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
3532.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
3533.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
3534.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
3535.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
3536.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
3537.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
3538.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
3539.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
3540.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
3541.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
3542.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
3543.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
3544.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
3545.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
3546.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
3547.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
3548.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
3549.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
3550.ui-icon-arrow-4 { background-position: 0 -80px; }
3551.ui-icon-arrow-4-diag { background-position: -16px -80px; }
3552.ui-icon-extlink { background-position: -32px -80px; }
3553.ui-icon-newwin { background-position: -48px -80px; }
3554.ui-icon-refresh { background-position: -64px -80px; }
3555.ui-icon-shuffle { background-position: -80px -80px; }
3556.ui-icon-transfer-e-w { background-position: -96px -80px; }
3557.ui-icon-transferthick-e-w { background-position: -112px -80px; }
3558.ui-icon-folder-collapsed { background-position: 0 -96px; }
3559.ui-icon-folder-open { background-position: -16px -96px; }
3560.ui-icon-document { background-position: -32px -96px; }
3561.ui-icon-document-b { background-position: -48px -96px; }
3562.ui-icon-note { background-position: -64px -96px; }
3563.ui-icon-mail-closed { background-position: -80px -96px; }
3564.ui-icon-mail-open { background-position: -96px -96px; }
3565.ui-icon-suitcase { background-position: -112px -96px; }
3566.ui-icon-comment { background-position: -128px -96px; }
3567.ui-icon-person { background-position: -144px -96px; }
3568.ui-icon-print { background-position: -160px -96px; }
3569.ui-icon-trash { background-position: -176px -96px; }
3570.ui-icon-locked { background-position: -192px -96px; }
3571.ui-icon-unlocked { background-position: -208px -96px; }
3572.ui-icon-bookmark { background-position: -224px -96px; }
3573.ui-icon-tag { background-position: -240px -96px; }
3574.ui-icon-home { background-position: 0 -112px; }
3575.ui-icon-flag { background-position: -16px -112px; }
3576.ui-icon-calendar { background-position: -32px -112px; }
3577.ui-icon-cart { background-position: -48px -112px; }
3578.ui-icon-pencil { background-position: -64px -112px; }
3579.ui-icon-clock { background-position: -80px -112px; }
3580.ui-icon-disk { background-position: -96px -112px; }
3581.ui-icon-calculator { background-position: -112px -112px; }
3582.ui-icon-zoomin { background-position: -128px -112px; }
3583.ui-icon-zoomout { background-position: -144px -112px; }
3584.ui-icon-search { background-position: -160px -112px; }
3585.ui-icon-wrench { background-position: -176px -112px; }
3586.ui-icon-gear { background-position: -192px -112px; }
3587.ui-icon-heart { background-position: -208px -112px; }
3588.ui-icon-star { background-position: -224px -112px; }
3589.ui-icon-link { background-position: -240px -112px; }
3590.ui-icon-cancel { background-position: 0 -128px; }
3591.ui-icon-plus { background-position: -16px -128px; }
3592.ui-icon-plusthick { background-position: -32px -128px; }
3593.ui-icon-minus { background-position: -48px -128px; }
3594.ui-icon-minusthick { background-position: -64px -128px; }
3595.ui-icon-close { background-position: -80px -128px; }
3596.ui-icon-closethick { background-position: -96px -128px; }
3597.ui-icon-key { background-position: -112px -128px; }
3598.ui-icon-lightbulb { background-position: -128px -128px; }
3599.ui-icon-scissors { background-position: -144px -128px; }
3600.ui-icon-clipboard { background-position: -160px -128px; }
3601.ui-icon-copy { background-position: -176px -128px; }
3602.ui-icon-contact { background-position: -192px -128px; }
3603.ui-icon-image { background-position: -208px -128px; }
3604.ui-icon-video { background-position: -224px -128px; }
3605.ui-icon-script { background-position: -240px -128px; }
3606.ui-icon-alert { background-position: 0 -144px; }
3607.ui-icon-info { background: url(../js/lib/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; }
3608.ui-icon-notice { background-position: -32px -144px; }
3609.ui-icon-help { background-position: -48px -144px; }
3610.ui-icon-check { background-position: -64px -144px; }
3611.ui-icon-bullet { background-position: -80px -144px; }
3612.ui-icon-radio-off { background-position: -96px -144px; }
3613.ui-icon-radio-on { background-position: -112px -144px; }
3614.ui-icon-pin-w { background-position: -128px -144px; }
3615.ui-icon-pin-s { background-position: -144px -144px; }
3616.ui-icon-play { background-position: 0 -160px; }
3617.ui-icon-pause { background-position: -16px -160px; }
3618.ui-icon-seek-next { background-position: -32px -160px; }
3619.ui-icon-seek-prev { background-position: -48px -160px; }
3620.ui-icon-seek-end { background-position: -64px -160px; }
3621.ui-icon-seek-start { background-position: -80px -160px; }
3622/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
3623.ui-icon-seek-first { background-position: -80px -160px; }
3624.ui-icon-stop { background-position: -96px -160px; }
3625.ui-icon-eject { background-position: -112px -160px; }
3626.ui-icon-volume-off { background-position: -128px -160px; }
3627.ui-icon-volume-on { background-position: -144px -160px; }
3628.ui-icon-power { background-position: 0 -176px; }
3629.ui-icon-signal-diag { background-position: -16px -176px; }
3630.ui-icon-signal { background-position: -32px -176px; }
3631.ui-icon-battery-0 { background-position: -48px -176px; }
3632.ui-icon-battery-1 { background-position: -64px -176px; }
3633.ui-icon-battery-2 { background-position: -80px -176px; }
3634.ui-icon-battery-3 { background-position: -96px -176px; }
3635.ui-icon-circle-plus { background-position: 0 -192px; }
3636.ui-icon-circle-minus { background-position: -16px -192px; }
3637.ui-icon-circle-close { background-position: -32px -192px; }
3638.ui-icon-circle-triangle-e { background-position: -48px -192px; }
3639.ui-icon-circle-triangle-s { background-position: -64px -192px; }
3640.ui-icon-circle-triangle-w { background-position: -80px -192px; }
3641.ui-icon-circle-triangle-n { background-position: -96px -192px; }
3642.ui-icon-circle-arrow-e { background-position: -112px -192px; }
3643.ui-icon-circle-arrow-s { background-position: -128px -192px; }
3644.ui-icon-circle-arrow-w { background-position: -144px -192px; }
3645.ui-icon-circle-arrow-n { background-position: -160px -192px; }
3646.ui-icon-circle-zoomin { background-position: -176px -192px; }
3647.ui-icon-circle-zoomout { background-position: -192px -192px; }
3648.ui-icon-circle-check { background-position: -208px -192px; }
3649.ui-icon-circlesmall-plus { background-position: 0 -208px; }
3650.ui-icon-circlesmall-minus { background-position: -16px -208px; }
3651.ui-icon-circlesmall-close { background-position: -32px -208px; }
3652.ui-icon-squaresmall-plus { background-position: -48px -208px; }
3653.ui-icon-squaresmall-minus { background-position: -64px -208px; }
3654.ui-icon-squaresmall-close { background-position: -80px -208px; }
3655.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
3656.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
3657.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
3658.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
3659.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
3660.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
3661
3662
3663/* Misc visuals
3664----------------------------------*/
3665
3666/* Corner radius */
3667.ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; }
3668.ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
3669.ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
3670.ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
3671.ui-corner-top { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; }
3672.ui-corner-bottom { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
3673.ui-corner-right { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
3674.ui-corner-left { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
3675.ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
3676
3677/* Overlays */
3678.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
3679.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #000000; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
3680
3681/*
3682 * jQuery UI Autocomplete 1.8.7
3683 *
3684 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
3685 * Dual licensed under the MIT or GPL Version 2 licenses.
3686 * http://jquery.org/license
3687 *
3688 * http://docs.jquery.com/UI/Autocomplete#theming
3689 */
3690.ui-autocomplete {
3691 position: absolute; cursor: default; z-index: 3;
3692 -moz-border-radius: 0;
3693 -webkit-border-radius: 0;
3694 border-radius: 0;
3695 -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
3696 -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
3697 box-shadow: 0 1px 5px rgba(0,0,0,0.3);
3698}
3699
3700/* workarounds */
3701* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
3702
3703/*
3704 * jQuery UI Menu 1.8.7
3705 *
3706 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
3707 * Dual licensed under the MIT or GPL Version 2 licenses.
3708 * http://jquery.org/license
3709 *
3710 * http://docs.jquery.com/UI/Menu#theming
3711 */
3712.ui-menu {
3713 list-style:none;
3714 padding: 2px;
3715 margin: 0;
3716 display:block;
3717 float: left;
3718}
3719.ui-menu .ui-menu {
3720 margin-top: -3px;
3721}
3722.ui-menu .ui-menu-item {
3723 margin:0;
3724 padding: 0;
3725 zoom: 1;
3726 float: left;
3727 clear: left;
3728 width: 100%;
3729}
3730.ui-menu .ui-menu-item a {
3731 text-decoration:none;
3732 display:block;
3733 padding:.2em .4em;
3734 line-height:1.5;
3735 zoom:1;
3736}
3737.ui-menu .ui-menu-item a.ui-state-hover,
3738.ui-menu .ui-menu-item a.ui-state-active {
3739 font-weight: normal;
3740 margin: -1px;
3741 background: #5f83b9;
3742 color: #FFFFFF;
3743 border-color: #466086;
3744 -moz-border-radius: 0;
3745 -webkit-border-radius: 0;
3746 border-radius: 0;
3747}
3748
3749/*
3750 * jQuery UI Datepicker 1.8.7
3751 *
3752 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
3753 * Dual licensed under the MIT or GPL Version 2 licenses.
3754 * http://jquery.org/license
3755 *
3756 * http://docs.jquery.com/UI/Datepicker#theming
3757 */
3758.ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; }
3759.ui-datepicker {
3760 -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
3761 -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
3762 box-shadow: 0 4px 8px rgba(0,0,0,0.5);
3763}
3764.ui-datepicker .ui-datepicker-header { position:relative; padding:.35em 0; border: none; border-bottom: 1px solid #B6B6B6; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; }
3765.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
3766.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
3767.ui-datepicker .ui-datepicker-prev { left:2px; }
3768.ui-datepicker .ui-datepicker-next { right:2px; }
3769.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
3770.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
3771.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
3772.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
3773.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; background: url(../js/lib/Aristo/images/icon_sprite.png) no-repeat; }
3774.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; font-size: 12px; text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
3775.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
3776.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
3777.ui-datepicker select.ui-datepicker-month,
3778.ui-datepicker select.ui-datepicker-year { width: 49%;}
3779.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
3780.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
3781.ui-datepicker td { border: 0; padding: 1px; }
3782.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
3783.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
3784.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
3785.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
3786.ui-datepicker table .ui-state-highlight { border-color: #5F83B9; }
3787.ui-datepicker table .ui-state-hover { background: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; -webkit-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; -moz-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; border-color: #5F83B9; }
3788.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
3789.ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; }
3790
3791/* with multiple calendars */
3792.ui-datepicker.ui-datepicker-multi { width:auto; }
3793.ui-datepicker-multi .ui-datepicker-group { float:left; }
3794.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
3795.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
3796.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
3797.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
3798.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
3799.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
3800.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
3801.ui-datepicker-row-break { clear:both; width:100%; }
3802
3803/* RTL support */
3804.ui-datepicker-rtl { direction: rtl; }
3805.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
3806.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
3807.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
3808.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
3809.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
3810.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
3811.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
3812.ui-datepicker-rtl .ui-datepicker-group { float:right; }
3813.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
3814.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
3815
3816/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
3817.ui-datepicker-cover {
3818 display: none; /*sorry for IE5*/
3819 display/**/: block; /*sorry for IE5*/
3820 position: absolute; /*must have*/
3821 z-index: -1; /*must have*/
3822 filter: mask(); /*must have*/
3823 top: -4px; /*must have*/
3824 left: -4px; /*must have*/
3825 width: 200px; /*must have*/
3826 height: 200px; /*must have*/
3827}
3828
3829
3830
3831/*
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303832 * erpnext/startup/startup.css
3833 */
3834h1, h2, h3, h4, h5 {
Rushabh Mehta8eba1182012-05-02 09:45:28 +05303835 font-family: Arial, Helvetica, sans-serif;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05303836 margin-top: 0.2em;
3837}
3838
3839body {
Rushabh Mehta8eba1182012-05-02 09:45:28 +05303840 font-family: Arial, Helvetica, sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05303841 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303842}
3843
3844span, div, td, input, textarea, button, select {
3845 font-family: inherit;
3846}
3847
Rushabh Mehta983a1712012-03-21 13:35:34 +05303848.small {
3849 font-size: 11.5px;
3850}
3851
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303852.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05303853 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05303854 text-align: center;
3855}
3856
Anand Doshidb628762012-02-24 17:56:00 +05303857.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05303858 margin: -3px 0px;
3859 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05303860 min-width: 20px;
3861 text-align: center;
3862 display: inline-block;
3863 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303864 color: #999999;
3865 background-color: #333131;
3866}
3867
3868.navbar-new-comments:hover,
3869.navbar-new-comments:active,
3870.navbar-new-comments:focus {
3871 color: #fff;
3872}
3873
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303874.navbar-new-comments-true {
3875 color: #fff;
3876 background-color: #B00D07;
3877}
3878
Anand Doshi5b1beeb2012-02-27 17:17:48 +05303879/*extra size menus for recent*/
3880.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
3881 min-width: 160px !important;
3882 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05303883}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05303884
Anand Doshi1ed4ef12012-04-27 15:30:23 +05303885.expiry-info {
3886 margin-top: 40px;
3887 margin-bottom: -40px;
3888 text-align: center;
3889 background-color: rgb(255, 255, 204);
3890 padding: 7px;
3891 z-index: 1;
3892}
3893
Anand Doshi575545d2012-06-13 19:36:55 +05303894.show-all-reports {
3895 margin-top: 5px;
3896 font-size: 11px;
3897}