blob: c3139d416625e6e3d848821a9c5f9874ef350ceb [file] [log] [blame]
Rushabh Mehtaafaac602012-02-14 11:44:13 +05301
2/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05303 * lib/css/bootstrap/headings.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05304 */
5/* heading from bootstrap */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05306
7h1,
8h2,
9h3,
10h4,
11h5,
12h6 {
13 margin: 0;
14 font-weight: bold;
15 color: #333333;
16 text-rendering: optimizelegibility;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053017}
18h1 small,
19h2 small,
20h3 small,
21h4 small,
22h5 small,
23h6 small {
24 font-weight: normal;
25 color: #999999;
26}
27h1 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053028 font-size: 280%;
29 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053030}
31h1 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053032 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053033}
34h2 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053035 font-size: 200%;
36 line-height: 120%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053037}
38h2 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053039 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053040}
41h3 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053042 font-size: 210%;
43 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053044}
45h3 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053046 font-size: 130%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053047}
48h4, h5, h6 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053049 font-size: 150%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053050}
51h4 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053052 font-size: 113%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053053}
54h4 small {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053055 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053056}
57h5 {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +053058 font-size: 100%;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053059}
60h6 {
61 font-size: 11px;
62 color: #999999;
63 text-transform: uppercase;
64}
Rushabh Mehta519f70b2012-03-09 16:44:21 +053065
Rushabh Mehta4dc2f432012-02-21 10:30:43 +053066/*
67 * lib/css/bootstrap/buttons.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +053068 */
69.close {
Rushabh Mehta9b1afe12012-03-20 14:37:44 +053070 font-family: Helvetica, Sans;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053071 float: right;
72 font-size: 20px;
73 font-weight: bold;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053074 line-height: 18px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053075 color: #000000;
76 text-shadow: 0 1px 0 #ffffff;
77 opacity: 0.2;
78 filter: alpha(opacity=20);
Rushabh Mehtaafaac602012-02-14 11:44:13 +053079}
Rushabh Mehta6e156c72012-02-21 11:19:24 +053080.close:hover {
81 color: #000000;
82 text-decoration: none;
83 opacity: 0.4;
84 filter: alpha(opacity=40);
85 cursor: pointer;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053086}
87.btn {
Rushabh Mehtaafaac602012-02-14 11:44:13 +053088 display: inline-block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +053089 padding: 4px 10px 4px;
90 font-size: 13px;
91 line-height: 18px;
92 color: #333333;
93 text-align: center;
94 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
95 background-color: #fafafa;
Rushabh Mehtaafaac602012-02-14 11:44:13 +053096 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
97 background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
98 background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
99 background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
100 background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
101 background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530102 background-repeat: no-repeat;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530103 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530104 border: 1px solid #ccc;
105 border-bottom-color: #bbb;
106 -webkit-border-radius: 4px;
107 -moz-border-radius: 4px;
108 border-radius: 4px;
109 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
110 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
111 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530112 cursor: pointer;
113 *margin-left: .3em;
114}
115.btn:first-child {
116 *margin-left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530117}
118.btn:hover {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530119 color: #333333;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530120 text-decoration: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530121 background-color: #e6e6e6;
122 background-position: 0 -15px;
123 -webkit-transition: background-position 0.1s linear;
124 -moz-transition: background-position 0.1s linear;
125 -ms-transition: background-position 0.1s linear;
126 -o-transition: background-position 0.1s linear;
127 transition: background-position 0.1s linear;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530128}
129.btn:focus {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530130 outline: thin dotted;
131 outline: 5px auto -webkit-focus-ring-color;
132 outline-offset: -2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530133}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530134.btn.active, .btn:active {
135 background-image: none;
136 -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
137 -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
138 box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
139 background-color: #e6e6e6;
140 background-color: #d9d9d9 \9;
141 color: rgba(0, 0, 0, 0.5);
142 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530143}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530144.btn.disabled, .btn[disabled] {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530145 cursor: default;
146 background-image: none;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530147 background-color: #e6e6e6;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530148 opacity: 0.65;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530149 filter: alpha(opacity=65);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530150 -webkit-box-shadow: none;
151 -moz-box-shadow: none;
152 box-shadow: none;
153}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530154.btn-large {
155 padding: 9px 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530156 font-size: 15px;
157 line-height: normal;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530158 -webkit-border-radius: 5px;
159 -moz-border-radius: 5px;
160 border-radius: 5px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530161}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530162.btn-large .icon {
163 margin-top: 1px;
164}
165.btn-small {
166 padding: 5px 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530167 font-size: 11px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530168 line-height: 16px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530169}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530170.btn-small .icon {
171 margin-top: -1px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530172}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530173.btn-primary,
174.btn-primary:hover,
175.btn-warning,
176.btn-warning:hover,
177.btn-danger,
178.btn-danger:hover,
179.btn-success,
180.btn-success:hover,
181.btn-info,
182.btn-info:hover {
183 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
184 color: #ffffff;
185}
186.btn-primary.active,
187.btn-warning.active,
188.btn-danger.active,
189.btn-success.active,
190.btn-info.active {
191 color: rgba(255, 255, 255, 0.75);
192}
193.btn-primary {
194 background-color: #006dcc;
195 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
196 background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
197 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
198 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
199 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
200 background-image: linear-gradient(top, #0088cc, #0044cc);
201 background-repeat: repeat-x;
202 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
203 border-color: #0044cc #0044cc #002a80;
204 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
205 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
206}
207.btn-primary:hover,
208.btn-primary:active,
209.btn-primary.active,
210.btn-primary.disabled,
211.btn-primary[disabled] {
212 background-color: #0044cc;
213}
214.btn-primary:active, .btn-primary.active {
215 background-color: #003399 \9;
216}
217.btn-warning {
218 background-color: #faa732;
219 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
220 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
221 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
222 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
223 background-image: -o-linear-gradient(top, #fbb450, #f89406);
224 background-image: linear-gradient(top, #fbb450, #f89406);
225 background-repeat: repeat-x;
226 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
227 border-color: #f89406 #f89406 #ad6704;
228 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
229 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
230}
231.btn-warning:hover,
232.btn-warning:active,
233.btn-warning.active,
234.btn-warning.disabled,
235.btn-warning[disabled] {
236 background-color: #f89406;
237}
238.btn-warning:active, .btn-warning.active {
239 background-color: #c67605 \9;
240}
241.btn-danger {
242 background-color: #da4f49;
243 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
244 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
245 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
246 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
247 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
248 background-image: linear-gradient(top, #ee5f5b, #bd362f);
249 background-repeat: repeat-x;
250 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
251 border-color: #bd362f #bd362f #802420;
252 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
253 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
254}
255.btn-danger:hover,
256.btn-danger:active,
257.btn-danger.active,
258.btn-danger.disabled,
259.btn-danger[disabled] {
260 background-color: #bd362f;
261}
262.btn-danger:active, .btn-danger.active {
263 background-color: #942a25 \9;
264}
265.btn-success {
266 background-color: #5bb75b;
267 background-image: -moz-linear-gradient(top, #62c462, #51a351);
268 background-image: -ms-linear-gradient(top, #62c462, #51a351);
269 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
270 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
271 background-image: -o-linear-gradient(top, #62c462, #51a351);
272 background-image: linear-gradient(top, #62c462, #51a351);
273 background-repeat: repeat-x;
274 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
275 border-color: #51a351 #51a351 #387038;
276 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
277 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
278}
279.btn-success:hover,
280.btn-success:active,
281.btn-success.active,
282.btn-success.disabled,
283.btn-success[disabled] {
284 background-color: #51a351;
285}
286.btn-success:active, .btn-success.active {
287 background-color: #408140 \9;
288}
289.btn-info {
290 background-color: #49afcd;
291 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
292 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
293 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
294 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
295 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
296 background-image: linear-gradient(top, #5bc0de, #2f96b4);
297 background-repeat: repeat-x;
298 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
299 border-color: #2f96b4 #2f96b4 #1f6377;
300 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
301 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
302}
303.btn-info:hover,
304.btn-info:active,
305.btn-info.active,
306.btn-info.disabled,
307.btn-info[disabled] {
308 background-color: #2f96b4;
309}
310.btn-info:active, .btn-info.active {
311 background-color: #24748c \9;
312}
313button.btn, input[type="submit"].btn {
314 *padding-top: 2px;
315 *padding-bottom: 2px;
316}
317button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530318 padding: 0;
319 border: 0;
320}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530321button.btn.large, input[type="submit"].btn.large {
322 *padding-top: 7px;
323 *padding-bottom: 7px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530324}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530325button.btn.small, input[type="submit"].btn.small {
326 *padding-top: 3px;
327 *padding-bottom: 3px;
328}
329.btn-group {
330 position: relative;
331 *zoom: 1;
332 *margin-left: .3em;
333}
334.btn-group:before, .btn-group:after {
335 display: table;
336 content: "";
337}
338.btn-group:after {
339 clear: both;
340}
341.btn-group:first-child {
342 *margin-left: 0;
343}
344.btn-group + .btn-group {
345 margin-left: 5px;
346}
347.btn-toolbar {
348 margin-top: 9px;
349 margin-bottom: 9px;
350}
351.btn-toolbar .btn-group {
352 display: inline-block;
353 *display: inline;
354 /* IE7 inline-block hack */
355
356 *zoom: 1;
357}
358.btn-group .btn {
359 position: relative;
360 float: left;
361 margin-left: -1px;
362 -webkit-border-radius: 0;
363 -moz-border-radius: 0;
364 border-radius: 0;
365}
366.btn-group .btn:first-child {
367 margin-left: 0;
368 -webkit-border-top-left-radius: 4px;
369 -moz-border-radius-topleft: 4px;
370 border-top-left-radius: 4px;
371 -webkit-border-bottom-left-radius: 4px;
372 -moz-border-radius-bottomleft: 4px;
373 border-bottom-left-radius: 4px;
374}
375.btn-group .btn:last-child, .btn-group .dropdown-toggle {
376 -webkit-border-top-right-radius: 4px;
377 -moz-border-radius-topright: 4px;
378 border-top-right-radius: 4px;
379 -webkit-border-bottom-right-radius: 4px;
380 -moz-border-radius-bottomright: 4px;
381 border-bottom-right-radius: 4px;
382}
383.btn-group .btn.large:first-child {
384 margin-left: 0;
385 -webkit-border-top-left-radius: 6px;
386 -moz-border-radius-topleft: 6px;
387 border-top-left-radius: 6px;
388 -webkit-border-bottom-left-radius: 6px;
389 -moz-border-radius-bottomleft: 6px;
390 border-bottom-left-radius: 6px;
391}
392.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
393 -webkit-border-top-right-radius: 6px;
394 -moz-border-radius-topright: 6px;
395 border-top-right-radius: 6px;
396 -webkit-border-bottom-right-radius: 6px;
397 -moz-border-radius-bottomright: 6px;
398 border-bottom-right-radius: 6px;
399}
400.btn-group .btn:hover,
401.btn-group .btn:focus,
402.btn-group .btn:active,
403.btn-group .btn.active {
404 z-index: 2;
405}
406.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
407 outline: 0;
408}
409.btn-group .dropdown-toggle {
410 padding-left: 8px;
411 padding-right: 8px;
412 -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
413 -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
414 box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
415 *padding-top: 5px;
416 *padding-bottom: 5px;
417}
418.btn-group.open {
419 *z-index: 1000;
420}
421.btn-group.open .dropdown-menu {
422 display: block;
423 margin-top: 1px;
424 -webkit-border-radius: 5px;
425 -moz-border-radius: 5px;
426 border-radius: 5px;
427}
428.btn-group.open .dropdown-toggle {
429 background-image: none;
430 -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
431 -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
432 box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
433}
434.btn .caret {
435 margin-top: 7px;
436 margin-left: 0;
437}
438.btn:hover .caret, .open.btn-group .caret {
439 opacity: 1;
440 filter: alpha(opacity=100);
441}
442.btn-primary .caret,
443.btn-danger .caret,
444.btn-info .caret,
445.btn-success .caret {
446 border-top-color: #ffffff;
447 opacity: 0.75;
448 filter: alpha(opacity=75);
449}
450.btn-small .caret {
451 margin-top: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530452}
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530453
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530454/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530455 * lib/css/bootstrap/navbar.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530456 */
457.nav {
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530458 margin-left: 0;
459 margin-bottom: 18px;
460 list-style: none;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530461}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530462.nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530463 display: block;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530464}
465.nav > li > a:hover {
466 text-decoration: none;
467 background-color: #eeeeee;
468}
469.nav-list {
470 padding-left: 14px;
471 padding-right: 14px;
472 margin-bottom: 0;
473}
474.nav-list > li > a, .nav-list .nav-header {
475 display: block;
476 padding: 3px 15px;
477 margin-left: -15px;
478 margin-right: -15px;
479 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
480}
481.nav-list .nav-header {
482 font-size: 11px;
483 font-weight: bold;
484 line-height: 18px;
485 color: #999999;
486 text-transform: uppercase;
487}
488.nav-list > li + .nav-header {
489 margin-top: 9px;
490}
491.nav-list .active > a, .nav-list .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530492 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530493 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
494 background-color: #0088cc;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530495}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530496.nav-list [class^="icon-"] {
497 margin-right: 2px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530498}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530499.nav-tabs, .nav-pills {
500 *zoom: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530501}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530502.nav-tabs:before,
503.nav-pills:before,
504.nav-tabs:after,
505.nav-pills:after {
506 display: table;
507 content: "";
508}
509.nav-tabs:after, .nav-pills:after {
510 clear: both;
511}
512.nav-tabs > li, .nav-pills > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530513 float: left;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530514}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530515.nav-tabs > li > a, .nav-pills > li > a {
516 padding-right: 12px;
517 padding-left: 12px;
518 margin-right: 2px;
519 line-height: 14px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530520}
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530521.nav-tabs {
522 border-bottom: 1px solid #ddd;
523}
524.nav-tabs > li {
525 margin-bottom: -1px;
526}
527.nav-tabs > li > a {
528 padding-top: 9px;
529 padding-bottom: 9px;
530 border: 1px solid transparent;
531 -webkit-border-radius: 4px 4px 0 0;
532 -moz-border-radius: 4px 4px 0 0;
533 border-radius: 4px 4px 0 0;
534}
535.nav-tabs > li > a:hover {
536 border-color: #eeeeee #eeeeee #dddddd;
537}
538.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
539 color: #555555;
540 background-color: #ffffff;
541 border: 1px solid #ddd;
542 border-bottom-color: transparent;
543 cursor: default;
544}
545.nav-pills > li > a {
546 padding-top: 8px;
547 padding-bottom: 8px;
548 margin-top: 2px;
549 margin-bottom: 2px;
550 -webkit-border-radius: 5px;
551 -moz-border-radius: 5px;
552 border-radius: 5px;
553}
554.nav-pills .active > a, .nav-pills .active > a:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530555 color: #ffffff;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530556 background-color: #0088cc;
557}
558.nav-stacked > li {
559 float: none;
560}
561.nav-stacked > li > a {
562 margin-right: 0;
563}
564.nav-tabs.nav-stacked {
565 border-bottom: 0;
566}
567.nav-tabs.nav-stacked > li > a {
568 border: 1px solid #ddd;
569 -webkit-border-radius: 0;
570 -moz-border-radius: 0;
571 border-radius: 0;
572}
573.nav-tabs.nav-stacked > li:first-child > a {
574 -webkit-border-radius: 4px 4px 0 0;
575 -moz-border-radius: 4px 4px 0 0;
576 border-radius: 4px 4px 0 0;
577}
578.nav-tabs.nav-stacked > li:last-child > a {
579 -webkit-border-radius: 0 0 4px 4px;
580 -moz-border-radius: 0 0 4px 4px;
581 border-radius: 0 0 4px 4px;
582}
583.nav-tabs.nav-stacked > li > a:hover {
584 border-color: #ddd;
585 z-index: 2;
586}
587.nav-pills.nav-stacked > li > a {
588 margin-bottom: 3px;
589}
590.nav-pills.nav-stacked > li:last-child > a {
591 margin-bottom: 1px;
592}
593.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
594 margin-top: 1px;
595 border-width: 1px;
596}
597.nav-pills .dropdown-menu {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530598 -webkit-border-radius: 4px;
599 -moz-border-radius: 4px;
600 border-radius: 4px;
Rushabh Mehta6e156c72012-02-21 11:19:24 +0530601}
602.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
603 border-top-color: #0088cc;
604 margin-top: 6px;
605}
606.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
607 border-top-color: #005580;
608}
609.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
610 border-top-color: #333333;
611}
612.nav > .dropdown.active > a:hover {
613 color: #000000;
614 cursor: pointer;
615}
616.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
617 color: #ffffff;
618 background-color: #999999;
619 border-color: #999999;
620}
621.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
622 border-top-color: #ffffff;
623 opacity: 1;
624 filter: alpha(opacity=100);
625}
626
627.navbar {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530628 overflow: visible;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530629 margin-bottom: 18px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530630}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530631.navbar-inner {
632 padding-left: 20px;
633 padding-right: 20px;
634 background-color: #2c2c2c;
635 background-image: -moz-linear-gradient(top, #333333, #222222);
636 background-image: -ms-linear-gradient(top, #333333, #222222);
637 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
638 background-image: -webkit-linear-gradient(top, #333333, #222222);
639 background-image: -o-linear-gradient(top, #333333, #222222);
640 background-image: linear-gradient(top, #333333, #222222);
641 background-repeat: repeat-x;
642 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
643 -webkit-border-radius: 4px;
644 -moz-border-radius: 4px;
645 border-radius: 4px;
646 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
647 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
648 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
649}
650.btn-navbar {
651 display: none;
652 float: right;
653 padding: 7px 10px;
654 margin-left: 5px;
655 margin-right: 5px;
656 background-color: #2c2c2c;
657 background-image: -moz-linear-gradient(top, #333333, #222222);
658 background-image: -ms-linear-gradient(top, #333333, #222222);
659 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
660 background-image: -webkit-linear-gradient(top, #333333, #222222);
661 background-image: -o-linear-gradient(top, #333333, #222222);
662 background-image: linear-gradient(top, #333333, #222222);
663 background-repeat: repeat-x;
664 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
665 border-color: #222222 #222222 #000000;
666 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
667 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
668 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
669 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
670 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
671}
672.btn-navbar:hover,
673.btn-navbar:active,
674.btn-navbar.active,
675.btn-navbar.disabled,
676.btn-navbar[disabled] {
677 background-color: #222222;
678}
679.btn-navbar:active, .btn-navbar.active {
680 background-color: #080808 \9;
681}
682.btn-navbar .icon-bar {
683 display: block;
684 width: 18px;
685 height: 2px;
686 background-color: #f5f5f5;
687 -webkit-border-radius: 1px;
688 -moz-border-radius: 1px;
689 border-radius: 1px;
690 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
691 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
692 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
693}
694.btn-navbar .icon-bar + .icon-bar {
695 margin-top: 3px;
696}
697.nav-collapse.collapse {
698 height: auto;
699}
700.navbar .brand:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530701 text-decoration: none;
702}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530703.navbar .brand {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530704 float: left;
705 display: block;
706 padding: 8px 20px 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530707 font-size: 20px;
708 font-weight: 200;
709 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530710 color: #ffffff;
711}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530712.navbar .navbar-text {
713 margin-bottom: 0;
714 line-height: 40px;
715 color: #999999;
716}
717.navbar .navbar-text a:hover {
718 color: #ffffff;
719 background-color: transparent;
720}
721.navbar .btn, .navbar .btn-group {
722 margin-top: 5px;
723}
724.navbar .btn-group .btn {
725 margin-top: 0;
726}
727.navbar-form {
728 margin-bottom: 0;
729 *zoom: 1;
730}
731.navbar-form:before, .navbar-form:after {
732 display: table;
733 content: "";
734}
735.navbar-form:after {
736 clear: both;
737}
738.navbar-form input, .navbar-form select {
739 display: inline-block;
740 margin-top: 5px;
741 margin-bottom: 0;
742}
743.navbar-form .radio, .navbar-form .checkbox {
744 margin-top: 5px;
745}
746.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
747 margin-top: 3px;
748}
749.navbar-search {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530750 position: relative;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530751 float: left;
752 margin-top: 6px;
753 margin-bottom: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530754}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530755.navbar-search .search-query {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530756 padding: 4px 9px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530757 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
758 font-size: 13px;
759 font-weight: normal;
760 line-height: 1;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530761 color: #ffffff;
762 color: rgba(255, 255, 255, 0.75);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530763 background: #666;
764 background: rgba(255, 255, 255, 0.3);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530765 border: 1px solid #111;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530766 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
767 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
768 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530769 -webkit-transition: none;
770 -moz-transition: none;
771 -ms-transition: none;
772 -o-transition: none;
773 transition: none;
774}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530775.navbar-search .search-query :-moz-placeholder {
776 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530777}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530778.navbar-search .search-query::-webkit-input-placeholder {
779 color: #eeeeee;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530780}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530781.navbar-search .search-query:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530782 color: #ffffff;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530783 background-color: #999999;
784 background-color: rgba(255, 255, 255, 0.5);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530785}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530786.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530787 padding: 5px 10px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530788 color: #333333;
789 text-shadow: 0 1px 0 #ffffff;
790 background-color: #ffffff;
791 border: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530792 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
793 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
794 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530795 outline: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530796}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530797.navbar-fixed-top {
798 position: fixed;
799 top: 0;
800 right: 0;
801 left: 0;
802 z-index: 1030;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530803}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530804.navbar-fixed-top .navbar-inner {
805 padding-left: 0;
806 padding-right: 0;
807 -webkit-border-radius: 0;
808 -moz-border-radius: 0;
809 border-radius: 0;
810}
811.navbar .nav {
812 position: relative;
813 left: 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530814 display: block;
815 float: left;
816 margin: 0 10px 0 0;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530817}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530818.navbar .nav.pull-right {
819 float: right;
820}
821.navbar .nav > li {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530822 display: block;
823 float: left;
824}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530825.navbar .nav > li > a {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530826 float: none;
827 padding: 10px 10px 11px;
828 line-height: 19px;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530829 color: #999999;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530830 text-decoration: none;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530831 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530832}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530833.navbar .nav > li > a:hover {
834 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530835 color: #ffffff;
836 text-decoration: none;
837}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530838.navbar .nav .active > a, .navbar .nav .active > a:hover {
839 color: #ffffff;
840 text-decoration: none;
841 background-color: #222222;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530842 background-color: rgba(0, 0, 0, 0.5);
843}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530844.navbar .divider-vertical {
845 height: 40px;
846 width: 1px;
847 margin: 0 9px;
848 overflow: hidden;
849 background-color: #222222;
850 border-right: 1px solid #333333;
851}
852.navbar .nav.pull-right {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530853 margin-left: 10px;
854 margin-right: 0;
855}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530856.navbar .dropdown-menu {
857 margin-top: 1px;
858 -webkit-border-radius: 4px;
859 -moz-border-radius: 4px;
860 border-radius: 4px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530861}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530862.navbar .dropdown-menu:before {
863 content: '';
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530864 display: inline-block;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530865 border-left: 7px solid transparent;
866 border-right: 7px solid transparent;
867 border-bottom: 7px solid #ccc;
868 border-bottom-color: rgba(0, 0, 0, 0.2);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530869 position: absolute;
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530870 top: -7px;
871 left: 9px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530872}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530873.navbar .dropdown-menu:after {
874 content: '';
875 display: inline-block;
876 border-left: 6px solid transparent;
877 border-right: 6px solid transparent;
878 border-bottom: 6px solid #ffffff;
879 position: absolute;
880 top: -6px;
881 left: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530882}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530883.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
884 border-top-color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530885}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530886.navbar .nav .active .caret {
887 opacity: 1;
888 filter: alpha(opacity=100);
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530889}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530890.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
891 background-color: transparent;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530892}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530893.navbar .nav .active > .dropdown-toggle:hover {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530894 color: #ffffff;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530895}
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530896.navbar .nav.pull-right .dropdown-menu {
897 left: auto;
898 right: 0;
899}
900.navbar .nav.pull-right .dropdown-menu:before {
901 left: auto;
902 right: 12px;
903}
904.navbar .nav.pull-right .dropdown-menu:after {
905 left: auto;
906 right: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530907}
908
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530909/* ajax spinner */
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530910.navbar #spinner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530911 display: block;
912 float: right;
913 width: 20px;
914 margin-bottom: -5px;
915 margin-top: 10px;
916 visibility: hidden;
917}
918
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530919.navbar-inner {
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530920 padding: 0px 20px;
921}
Anand Doshi5b1beeb2012-02-27 17:17:48 +0530922
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530923
Rushabh Mehtaafaac602012-02-14 11:44:13 +0530924/*
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530925 * lib/css/bootstrap/dropdown.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +0530926 */
927.dropdown {
Rushabh Mehta4dc2f432012-02-21 10:30:43 +0530928 position: relative;
929}
930.dropdown-toggle {
931 *margin-bottom: -3px;
932}
933.dropdown-toggle:active, .open .dropdown-toggle {
934 outline: 0;
935}
936.caret {
937 display: inline-block;
938 width: 0;
939 height: 0;
940 text-indent: -99999px;
941 *text-indent: 0;
942 vertical-align: top;
943 border-left: 4px solid transparent;
944 border-right: 4px solid transparent;
945 border-top: 4px solid #000000;
946 opacity: 0.3;
947 filter: alpha(opacity=30);
948 content: "\2193";
949}
950.dropdown .caret {
951 margin-top: 8px;
952 margin-left: 2px;
953}
954.dropdown:hover .caret, .open.dropdown .caret {
955 opacity: 1;
956 filter: alpha(opacity=100);
957}
958.dropdown-menu {
959 position: absolute;
960 top: 100%;
961 left: 0;
962 z-index: 1000;
963 float: left;
964 display: none;
965 min-width: 160px;
966 max-width: 220px;
967 _width: 160px;
968 padding: 4px 0;
969 margin: 0;
970 list-style: none;
971 background-color: #ffffff;
972 border-color: #ccc;
973 border-color: rgba(0, 0, 0, 0.2);
974 border-style: solid;
975 border-width: 1px;
976 -webkit-border-radius: 0 0 5px 5px;
977 -moz-border-radius: 0 0 5px 5px;
978 border-radius: 0 0 5px 5px;
979 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
980 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
981 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
982 -webkit-background-clip: padding-box;
983 -moz-background-clip: padding;
984 background-clip: padding-box;
985 *border-right-width: 2px;
986 *border-bottom-width: 2px;
987}
988.dropdown-menu.bottom-up {
989 top: auto;
990 bottom: 100%;
991 margin-bottom: 2px;
992}
993.dropdown-menu .divider {
994 height: 1px;
995 margin: 5px 1px;
996 overflow: hidden;
997 background-color: #e5e5e5;
998 border-bottom: 1px solid #ffffff;
999 *width: 100%;
1000 *margin: -5px 0 5px;
1001}
1002.dropdown-menu a {
1003 display: block;
1004 padding: 3px 15px;
1005 clear: both;
1006 font-weight: normal;
1007 line-height: 18px;
1008 color: #555555;
1009 white-space: nowrap;
1010}
1011.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1012 color: #ffffff;
1013 text-decoration: none;
1014 background-color: #0088cc;
1015}
1016.dropdown.open {
1017 *z-index: 1000;
1018}
1019.dropdown.open .dropdown-toggle {
1020 color: #ffffff;
1021 background: #ccc;
1022 background: rgba(0, 0, 0, 0.3);
1023}
1024.dropdown.open .dropdown-menu {
1025 display: block;
1026}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301027
Rushabh Mehta4dc2f432012-02-21 10:30:43 +05301028/*
Rushabh Mehtad0251332012-02-21 17:26:50 +05301029 * lib/css/bootstrap/tooltip.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301030 */
1031.tooltip {
Rushabh Mehtad0251332012-02-21 17:26:50 +05301032 position: absolute;
1033 z-index: 1020;
1034 display: block;
1035 visibility: visible;
1036 padding: 5px;
1037 font-size: 11px;
1038 opacity: 0;
1039 filter: alpha(opacity=0);
1040}
1041.tooltip.in {
1042 opacity: 0.8;
1043 filter: alpha(opacity=80);
1044}
1045.tooltip.top {
1046 margin-top: -2px;
1047}
1048.tooltip.right {
1049 margin-left: 2px;
1050}
1051.tooltip.bottom {
1052 margin-top: 2px;
1053}
1054.tooltip.left {
1055 margin-left: -2px;
1056}
1057.tooltip.top .tooltip-arrow {
1058 bottom: 0;
1059 left: 50%;
1060 margin-left: -5px;
1061 border-left: 5px solid transparent;
1062 border-right: 5px solid transparent;
1063 border-top: 5px solid #000000;
1064}
1065.tooltip.left .tooltip-arrow {
1066 top: 50%;
1067 right: 0;
1068 margin-top: -5px;
1069 border-top: 5px solid transparent;
1070 border-bottom: 5px solid transparent;
1071 border-left: 5px solid #000000;
1072}
1073.tooltip.bottom .tooltip-arrow {
1074 top: 0;
1075 left: 50%;
1076 margin-left: -5px;
1077 border-left: 5px solid transparent;
1078 border-right: 5px solid transparent;
1079 border-bottom: 5px solid #000000;
1080}
1081.tooltip.right .tooltip-arrow {
1082 top: 50%;
1083 left: 0;
1084 margin-top: -5px;
1085 border-top: 5px solid transparent;
1086 border-bottom: 5px solid transparent;
1087 border-right: 5px solid #000000;
1088}
1089.tooltip-inner {
1090 max-width: 200px;
1091 padding: 3px 8px;
1092 color: #ffffff;
1093 text-align: center;
1094 text-decoration: none;
1095 background-color: #000000;
1096 -webkit-border-radius: 4px;
1097 -moz-border-radius: 4px;
1098 border-radius: 4px;
1099}
1100.tooltip-arrow {
1101 position: absolute;
1102 width: 0;
1103 height: 0;
1104}
1105.popover {
1106 position: absolute;
1107 top: 0;
1108 left: 0;
1109 z-index: 1010;
1110 display: none;
1111 padding: 5px;
1112}
1113.popover.top {
1114 margin-top: -5px;
1115}
1116.popover.right {
1117 margin-left: 5px;
1118}
1119.popover.bottom {
1120 margin-top: 5px;
1121}
1122.popover.left {
1123 margin-left: -5px;
1124}
1125.popover.top .arrow {
1126 bottom: 0;
1127 left: 50%;
1128 margin-left: -5px;
1129 border-left: 5px solid transparent;
1130 border-right: 5px solid transparent;
1131 border-top: 5px solid #000000;
1132}
1133.popover.right .arrow {
1134 top: 50%;
1135 left: 0;
1136 margin-top: -5px;
1137 border-top: 5px solid transparent;
1138 border-bottom: 5px solid transparent;
1139 border-right: 5px solid #000000;
1140}
1141.popover.bottom .arrow {
1142 top: 0;
1143 left: 50%;
1144 margin-left: -5px;
1145 border-left: 5px solid transparent;
1146 border-right: 5px solid transparent;
1147 border-bottom: 5px solid #000000;
1148}
1149.popover.left .arrow {
1150 top: 50%;
1151 right: 0;
1152 margin-top: -5px;
1153 border-top: 5px solid transparent;
1154 border-bottom: 5px solid transparent;
1155 border-left: 5px solid #000000;
1156}
1157.popover .arrow {
1158 position: absolute;
1159 width: 0;
1160 height: 0;
1161}
1162.popover-inner {
1163 padding: 3px;
1164 width: 280px;
1165 overflow: hidden;
1166 background: #000000;
1167 background: rgba(0, 0, 0, 0.8);
1168 -webkit-border-radius: 6px;
1169 -moz-border-radius: 6px;
1170 border-radius: 6px;
1171 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1172 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1173 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1174}
1175.popover-title {
1176 padding: 9px 15px;
1177 line-height: 1;
1178 background-color: #f5f5f5;
1179 border-bottom: 1px solid #eee;
1180 -webkit-border-radius: 3px 3px 0 0;
1181 -moz-border-radius: 3px 3px 0 0;
1182 border-radius: 3px 3px 0 0;
1183}
1184.popover-content {
1185 padding: 14px;
1186 background-color: #ffffff;
1187 -webkit-border-radius: 0 0 3px 3px;
1188 -moz-border-radius: 0 0 3px 3px;
1189 border-radius: 0 0 3px 3px;
1190 -webkit-background-clip: padding-box;
1191 -moz-background-clip: padding-box;
1192 background-clip: padding-box;
1193}
1194.popover-content p, .popover-content ul, .popover-content ol {
1195 margin-bottom: 0;
1196}
Rushabh Mehta519f70b2012-03-09 16:44:21 +05301197
Rushabh Mehtad0251332012-02-21 17:26:50 +05301198/*
Rushabh Mehta702473d2012-04-26 19:01:35 +05301199 * lib/css/bootstrap/icons.css
1200 */
1201[class^="icon-"], [class*=" icon-"] {
1202 display: inline-block;
1203 width: 14px;
1204 height: 14px;
1205 line-height: 14px;
1206 vertical-align: text-top;
1207 background-image: url("../lib/images/icons/glyphicons-halflings.png");
1208 background-position: 14px 14px;
1209 background-repeat: no-repeat;
1210 *margin-right: .3em;
1211}
1212[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
1213 *margin-left: 0;
1214}
1215.icon-white {
1216 background-image: url("../lib/images/icons/glyphicons-halflings-white.png");
1217}
1218.icon-glass {
1219 background-position: 0 0;
1220}
1221.icon-music {
1222 background-position: -24px 0;
1223}
1224.icon-search {
1225 background-position: -48px 0;
1226}
1227.icon-envelope {
1228 background-position: -72px 0;
1229}
1230.icon-heart {
1231 background-position: -96px 0;
1232}
1233.icon-star {
1234 background-position: -120px 0;
1235}
1236.icon-star-empty {
1237 background-position: -144px 0;
1238}
1239.icon-user {
1240 background-position: -168px 0;
1241}
1242.icon-film {
1243 background-position: -192px 0;
1244}
1245.icon-th-large {
1246 background-position: -216px 0;
1247}
1248.icon-th {
1249 background-position: -240px 0;
1250}
1251.icon-th-list {
1252 background-position: -264px 0;
1253}
1254.icon-ok {
1255 background-position: -288px 0;
1256}
1257.icon-remove {
1258 background-position: -312px 0;
1259}
1260.icon-zoom-in {
1261 background-position: -336px 0;
1262}
1263.icon-zoom-out {
1264 background-position: -360px 0;
1265}
1266.icon-off {
1267 background-position: -384px 0;
1268}
1269.icon-signal {
1270 background-position: -408px 0;
1271}
1272.icon-cog {
1273 background-position: -432px 0;
1274}
1275.icon-trash {
1276 background-position: -456px 0;
1277}
1278.icon-home {
1279 background-position: 0 -24px;
1280}
1281.icon-file {
1282 background-position: -24px -24px;
1283}
1284.icon-time {
1285 background-position: -48px -24px;
1286}
1287.icon-road {
1288 background-position: -72px -24px;
1289}
1290.icon-download-alt {
1291 background-position: -96px -24px;
1292}
1293.icon-download {
1294 background-position: -120px -24px;
1295}
1296.icon-upload {
1297 background-position: -144px -24px;
1298}
1299.icon-inbox {
1300 background-position: -168px -24px;
1301}
1302.icon-play-circle {
1303 background-position: -192px -24px;
1304}
1305.icon-repeat {
1306 background-position: -216px -24px;
1307}
1308.icon-refresh {
1309 background-position: -240px -24px;
1310}
1311.icon-list-alt {
1312 background-position: -264px -24px;
1313}
1314.icon-lock {
1315 background-position: -287px -24px;
1316}
1317.icon-flag {
1318 background-position: -312px -24px;
1319}
1320.icon-headphones {
1321 background-position: -336px -24px;
1322}
1323.icon-volume-off {
1324 background-position: -360px -24px;
1325}
1326.icon-volume-down {
1327 background-position: -384px -24px;
1328}
1329.icon-volume-up {
1330 background-position: -408px -24px;
1331}
1332.icon-qrcode {
1333 background-position: -432px -24px;
1334}
1335.icon-barcode {
1336 background-position: -456px -24px;
1337}
1338.icon-tag {
1339 background-position: 0 -48px;
1340}
1341.icon-tags {
1342 background-position: -25px -48px;
1343}
1344.icon-book {
1345 background-position: -48px -48px;
1346}
1347.icon-bookmark {
1348 background-position: -72px -48px;
1349}
1350.icon-print {
1351 background-position: -96px -48px;
1352}
1353.icon-camera {
1354 background-position: -120px -48px;
1355}
1356.icon-font {
1357 background-position: -144px -48px;
1358}
1359.icon-bold {
1360 background-position: -167px -48px;
1361}
1362.icon-italic {
1363 background-position: -192px -48px;
1364}
1365.icon-text-height {
1366 background-position: -216px -48px;
1367}
1368.icon-text-width {
1369 background-position: -240px -48px;
1370}
1371.icon-align-left {
1372 background-position: -264px -48px;
1373}
1374.icon-align-center {
1375 background-position: -288px -48px;
1376}
1377.icon-align-right {
1378 background-position: -312px -48px;
1379}
1380.icon-align-justify {
1381 background-position: -336px -48px;
1382}
1383.icon-list {
1384 background-position: -360px -48px;
1385}
1386.icon-indent-left {
1387 background-position: -384px -48px;
1388}
1389.icon-indent-right {
1390 background-position: -408px -48px;
1391}
1392.icon-facetime-video {
1393 background-position: -432px -48px;
1394}
1395.icon-picture {
1396 background-position: -456px -48px;
1397}
1398.icon-pencil {
1399 background-position: 0 -72px;
1400}
1401.icon-map-marker {
1402 background-position: -24px -72px;
1403}
1404.icon-adjust {
1405 background-position: -48px -72px;
1406}
1407.icon-tint {
1408 background-position: -72px -72px;
1409}
1410.icon-edit {
1411 background-position: -96px -72px;
1412}
1413.icon-share {
1414 background-position: -120px -72px;
1415}
1416.icon-check {
1417 background-position: -144px -72px;
1418}
1419.icon-move {
1420 background-position: -168px -72px;
1421}
1422.icon-step-backward {
1423 background-position: -192px -72px;
1424}
1425.icon-fast-backward {
1426 background-position: -216px -72px;
1427}
1428.icon-backward {
1429 background-position: -240px -72px;
1430}
1431.icon-play {
1432 background-position: -264px -72px;
1433}
1434.icon-pause {
1435 background-position: -288px -72px;
1436}
1437.icon-stop {
1438 background-position: -312px -72px;
1439}
1440.icon-forward {
1441 background-position: -336px -72px;
1442}
1443.icon-fast-forward {
1444 background-position: -360px -72px;
1445}
1446.icon-step-forward {
1447 background-position: -384px -72px;
1448}
1449.icon-eject {
1450 background-position: -408px -72px;
1451}
1452.icon-chevron-left {
1453 background-position: -432px -72px;
1454}
1455.icon-chevron-right {
1456 background-position: -456px -72px;
1457}
1458.icon-plus-sign {
1459 background-position: 0 -96px;
1460}
1461.icon-minus-sign {
1462 background-position: -24px -96px;
1463}
1464.icon-remove-sign {
1465 background-position: -48px -96px;
1466}
1467.icon-ok-sign {
1468 background-position: -72px -96px;
1469}
1470.icon-question-sign {
1471 background-position: -96px -96px;
1472}
1473.icon-info-sign {
1474 background-position: -120px -96px;
1475}
1476.icon-screenshot {
1477 background-position: -144px -96px;
1478}
1479.icon-remove-circle {
1480 background-position: -168px -96px;
1481}
1482.icon-ok-circle {
1483 background-position: -192px -96px;
1484}
1485.icon-ban-circle {
1486 background-position: -216px -96px;
1487}
1488.icon-arrow-left {
1489 background-position: -240px -96px;
1490}
1491.icon-arrow-right {
1492 background-position: -264px -96px;
1493}
1494.icon-arrow-up {
1495 background-position: -289px -96px;
1496}
1497.icon-arrow-down {
1498 background-position: -312px -96px;
1499}
1500.icon-share-alt {
1501 background-position: -336px -96px;
1502}
1503.icon-resize-full {
1504 background-position: -360px -96px;
1505}
1506.icon-resize-small {
1507 background-position: -384px -96px;
1508}
1509.icon-plus {
1510 background-position: -408px -96px;
1511}
1512.icon-minus {
1513 background-position: -433px -96px;
1514}
1515.icon-asterisk {
1516 background-position: -456px -96px;
1517}
1518.icon-exclamation-sign {
1519 background-position: 0 -120px;
1520}
1521.icon-gift {
1522 background-position: -24px -120px;
1523}
1524.icon-leaf {
1525 background-position: -48px -120px;
1526}
1527.icon-fire {
1528 background-position: -72px -120px;
1529}
1530.icon-eye-open {
1531 background-position: -96px -120px;
1532}
1533.icon-eye-close {
1534 background-position: -120px -120px;
1535}
1536.icon-warning-sign {
1537 background-position: -144px -120px;
1538}
1539.icon-plane {
1540 background-position: -168px -120px;
1541}
1542.icon-calendar {
1543 background-position: -192px -120px;
1544}
1545.icon-random {
1546 background-position: -216px -120px;
1547}
1548.icon-comment {
1549 background-position: -240px -120px;
1550}
1551.icon-magnet {
1552 background-position: -264px -120px;
1553}
1554.icon-chevron-up {
1555 background-position: -288px -120px;
1556}
1557.icon-chevron-down {
1558 background-position: -313px -119px;
1559}
1560.icon-retweet {
1561 background-position: -336px -120px;
1562}
1563.icon-shopping-cart {
1564 background-position: -360px -120px;
1565}
1566.icon-folder-close {
1567 background-position: -384px -120px;
1568}
1569.icon-folder-open {
1570 background-position: -408px -120px;
1571}
1572.icon-resize-vertical {
1573 background-position: -432px -119px;
1574}
1575.icon-resize-horizontal {
1576 background-position: -456px -118px;
1577}
1578
1579/*
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301580 * lib/css/legacy/body.css
1581 */
1582html {
1583 margin: 0px;
1584 padding: 0px;
1585}
1586
1587body {
1588 margin: 0px;
1589 padding: 0px;
1590 font-size: 14px;
1591 color: #000;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301592}
1593
1594/* font settings */
1595
1596h1, h2, h3, h4, h5 {
1597 font-family: "Helvetica Neue", Helvetica, "Helvetica Neue", sans-serif;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301598 margin-top: 0.2em;
1599}
1600
1601body {
1602 font-family: "Helvetica Neue", Helvetica, "Helvetica Neue", sans-serif;
1603 font-size: 13px;
1604}
1605
1606span, div, td, input, textarea, button, select {
1607 font-family: inherit;
1608}
1609
1610
1611pre { margin: 0px; padding: 0px; }
1612
1613button { margin: 2px; margin-left: 0px; }
1614
1615label {
1616 padding-top: 15px;
1617 color: #404040;
1618}
1619
1620select, input, textarea {
1621 border: 1px solid #ccc;
1622 -moz-border-radius: 4px;
1623 -webkit-border-radius: 4px;
1624 font-size: inherit;
1625 padding: 4px;
1626 color: #444;
1627 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1628 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1629 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1630}
1631
1632textarea {
1633 font-family: inherit;
1634 height: 120px;
1635 width: 90%;
1636 font-size: inherit;
1637 white-space: normal;
1638}
1639
1640table { padding: 0px; border-collapse: 'collapse'}
1641
1642td {
1643 padding:0px;
1644 margin: 0px;
1645 vertical-align: top;
1646}
1647
1648p {
1649 margin: 0px 0px 9px 0px;
1650 line-height: 1.5em;
1651}
1652
1653li {
1654 line-height: 1.5em;
1655}
1656
1657hr {
1658 margin: 18px 0;
1659 border: 0;
1660 border-top: 1px solid #e5e5e5;
1661 border-bottom: 1px solid #ffffff;
1662}
1663
1664/* links */
1665
1666a:active { outline:none; }
1667
1668a {
1669 color: #0088cc;
1670 text-decoration: none;
1671}
1672a:hover {
1673 color: #005580;
1674 text-decoration: underline;
1675}
1676
1677.link_type {
1678 padding:2px;
1679 color: #0088cc;
1680 cursor: pointer;
1681}
1682
1683.link_type:hover {
1684 color: #005580;
1685 text-decoration: underline;
1686}
1687
1688:focus { -moz-outline-style:none; }
1689
1690table.simpletable { border-collapse: collapse; margin-bottom: 10px;}
1691table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; }
1692
1693div.fix_ff_cursor { overflow: auto; }
1694
1695/* --- Layout --- */
1696
1697div.comment { color: #444; }
1698
1699.small {
1700 font-size: 11px;
1701}
1702
1703.help {
1704 margin-bottom: 3px;
1705 color: #888;
1706}
1707
1708div#body_div {
1709 display: none;
1710 padding-right: 7px;
Rushabh Mehta702473d2012-04-26 19:01:35 +05301711 padding-top: 70px;
1712 padding-bottom: 50px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301713}
1714
1715.content {
Rushabh Mehta702473d2012-04-26 19:01:35 +05301716 margin: auto;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301717 width: 900px;
1718}
1719
1720.background-fade-in {
1721 -webkit-transition: background 1s ease-in; /* property duration timing-function delay */
1722 -moz-transition: background 1s ease-in;
1723 -o-transition: background 1s ease-in;
1724 transition: background 1s ease-in;
1725}
1726
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301727header .container {
1728 width: 900px;
1729 margin: auto;
1730}
1731
1732@media (max-width: 1200px) {
Rushabh Mehta702473d2012-04-26 19:01:35 +05301733 header .container, .content {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301734 width: 900px;
1735 }
1736}
1737
1738@media (min-width: 1200px) {
Rushabh Mehta702473d2012-04-26 19:01:35 +05301739 header .container, .content {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301740 width: 1100px;
1741 }
1742}
1743
1744div.no_script {
1745 display: none;
1746}
1747
1748div.loading_div {
1749 background-color: #FFFFCC;
1750 z-index: 1999;
1751 right: 5px;
1752 width: 90px;
1753 display: none;
1754 text-align: center;
1755 padding: 2px;
1756 border: 1px solid #FF4;
1757}
1758
1759div.std-footer {
1760 margin: 13px -15px;
1761 border-top: 1px solid #AAA;
1762 padding: 13px;
1763}
1764
1765div.std-footer-item {
1766 margin: 0px 13px 13px 0px;
1767}
1768
1769.shadow {
1770 -moz-box-shadow: 0px 2px 2px #888;
1771 -webkit-box-shadow: 0px 2px 2px #888;
1772 box-shadow: 0px 2px 2px #888;
1773}
1774
1775.round {
1776 -webkit-border-radius: 5px;
1777 -moz-border-radius: 5px;
1778 border-radius: 5px;
1779}
1780
1781.layout_wrapper, .layout-wrapper {
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05301782 -moz-box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
1783 -webkit-box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
1784 box-shadow: 0px 0px 9px rgba(0,0,0,0.5);
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301785 background-color: #fff;
1786 padding: 15px;
1787 -webkit-border-radius: 5px;
1788 -moz-border-radius: 5px;
1789 border-radius: 5px;
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301790 overflow: hidden;
1791}
1792
1793.layout-wrapper-appframe {
1794 padding: 0px;
1795}
1796
1797.layout-wrapper-background {
1798 background-color: #fafafa !important;
1799 padding: 0px;
1800}
1801
Rushabh Mehta2146fd12012-04-17 12:40:37 +05301802.layout-main {
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05301803 padding: 15px;
1804 background-color: #fff;
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05301805}
1806
Rushabh Mehta0c18b182012-04-16 11:18:45 +05301807.layout-main-section {
1808 width: 71%;
1809 float: left;
1810 padding: 15px;
1811 background-color: #FFF;
1812 min-height: 600px;
1813 -moz-box-shadow: 2px 0px 1px #ddd;
1814 -webkit-box-shadow: 2px 0px 1px #ddd;
1815 box-shadow: 2px 0px 1px #ddd;
1816}
1817
1818.layout-side-section {
1819 width: 22%;
1820 /*float: right;*/
1821 color: #606060;
1822 overflow-x: hidden;
1823 padding: 15px;
1824 min-height: 600px;
1825}
1826
1827/* from bootstrap */
1828.container {
1829 margin-left: auto;
1830 margin-right: auto;
1831 zoom: 1;
1832}
1833.container:before, .container:after {
1834 display: table;
1835 content: "";
1836 zoom: 1;
1837}
1838.container:after {
1839 clear: both;
1840}
1841
1842.well {
1843 min-height: 20px;
1844 padding: 19px;
1845 margin-bottom: 20px;
1846 background-color: #f5f5f5;
1847 border: 1px solid #eee;
1848 border: 1px solid rgba(0, 0, 0, 0.05);
1849 -webkit-border-radius: 4px;
1850 -moz-border-radius: 4px;
1851 border-radius: 4px;
1852 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1853 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1854 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1855}
1856
1857.avatar-small {
1858 display: inline-block;
1859 width: 24px;
1860 height: 20px;
1861 vertical-align: middle;
1862 overflow: hidden;
1863 margin: 0px 3px;
1864}
1865.avatar-small img {
1866 width: 24px;
1867}
1868
1869/*
1870 * lib/css/legacy/messages.css
1871 */
1872
1873/* FLOATING MESSAGE */
1874
1875.btn-img { cursor: pointer; }
1876
1877div.fetching { color: #888; text-align:right; }
1878
1879div.notice {
1880 postion: absolute;
1881 background-color: #000;
1882 -moz-border-radius: 5px; -webkit-border-radius: 5px;
1883 opacity: 0.6;
1884 right: 0;
1885 top: 0;
1886 margin-top: 8px;
1887 z-index: -1;
1888 padding: 8px;
1889}
1890
1891/** help **/
1892
1893.info-box {
1894 background-color: #F8F8F8;
1895 border: 1px solid #CCCCCC;
1896 border-radius: 3px 3px 3px 3px;
1897 line-height: 1.6em;
1898 overflow: auto;
1899 padding: 6px 10px;
1900 margin-bottom: 9px;
1901}
1902
1903.help_box, .help-box {
1904 background-color:#FFC;
1905 font-size: 13px;
1906 color: #864;
1907 padding: 7px;
1908 margin: 11px 0px;
1909 border: 1px solid #EEB;
1910}
1911
1912.help_box_big {
1913 background-color:#FFC;
1914 color: #864;
1915 padding: 7px;
1916 margin: 7px 0px;
1917 border: 1px solid #EEB;
1918 text-align: center;
1919 font-size: 14px;
1920}
1921
1922/*
1923 * lib/css/legacy/dialog.css
1924 */
1925/***** Dialogs *******/
1926
1927div.dialog_wrapper {
1928 position: absolute;
1929 width: 440px;
1930 display: none;
1931 z-index: 90;
1932 background-color: #FFF;
1933 box-shadow:1px 1px 8px #444;
1934 -moz-box-shadow: 1px 1px 8px #444;
1935 -webkit-box-shadow: 1px 1px 8px #444;
1936
1937 border-radius: 5px;
1938 -moz-border-radius: 5px;
1939 -webkit-border-radius: 5px;
1940
1941 overflow: hidden;
1942}
1943
1944div.dialog_head {
1945 height: 22px;
1946 padding: 4px;
1947 background-color: #222;
1948 color: #FFF;
1949}
1950
1951div.dialog_body {
1952 padding: 8px 8px 16px;
1953 border-radius: 5px;
1954 -moz-border-radius: 5px;
1955 -webkit-border-radius: 5px;
1956}
1957
1958div.dialog_back {
1959 position: fixed;
1960 display: none;
1961 top: 0px;
1962 left: 0px;
1963 bottom: 0px;
1964 right: 0px;
1965 background-color: #aaa;
1966 opacity: 0.6;
1967 z-index: 50;
1968 text-align: center;
1969}
1970
1971div.dialog_message {
1972 display: none;
1973 position: absolute;
1974 width: 250px;
1975 font-size: 12px;
1976 z-index: 91;
1977 background-color:#FFF;
1978 padding: 12px;
1979 border: 1px solid #444;
1980}
1981
1982div.dialog_row {
1983 padding: 8px 8px 0px 8px;
1984}
1985
1986div.dialog_row table {
1987 width: 100%;
1988}
1989
1990div.dialog_row table td {
1991}
1992
1993div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select {
1994 width: 80%;
1995 font-size: 14px;
1996}
1997
1998div.dialog_row table td textarea {
1999 width: 80%;
2000 height: 200px;
2001 font-size: 12px;
2002}
2003
2004
2005/*
2006 * lib/css/ui/common.css
2007 */
2008.navbar-icon-home {
2009 vertical-align: middle;
2010 opacity: 0.4;
2011 Filter:alpha(opacity=40); /* For IE8 and earlier */
2012}
2013
2014.navbar-icon-home:hover,
2015.navbar-icon-home:focus,
2016.navbar-icon-home:active,
2017.navbar-icon-home-hover{
2018 opacity:1;
2019 Filter:alpha(opacity=100); /* For IE8 and earlier */
2020}
2021
2022
2023/*
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302024 * lib/css/ui/fonts.css
2025 */
2026@font-face {
2027 font-family: 'Pontano Sans';
2028 font-style: normal;
2029 font-weight: 800;
2030 src: url('../lib/css/fonts/pontanosans.woff') format('woff');
2031}
2032
2033@font-face {
2034 font-family: 'Droid Sans';
2035 font-style: normal;
2036 font-weight: normal;
2037 src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff');
2038}
2039
2040@font-face {
2041 font-family: 'PT Sans';
2042 font-style: normal;
2043 font-weight: normal;
2044 src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff');
2045}
2046
2047@font-face {
2048 font-family: 'Open Sans';
2049 font-style: normal;
2050 font-weight: 400;
2051 src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff');
2052}
Rushabh Mehtab43f9492012-04-08 20:33:51 +05302053
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302054@font-face {
2055 font-family: 'Lato';
2056 font-style: normal;
2057 font-weight: 400;
2058 src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff');
2059}
2060
Rushabh Mehtab43f9492012-04-08 20:33:51 +05302061@font-face {
2062 font-family: 'Cabin';
2063 font-style: normal;
2064 font-weight: 400;
2065 src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff');
2066}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302067
Rushabh Mehtaf7f7f632012-04-11 15:18:24 +05302068@font-face {
2069 font-family: 'Pacifico';
2070 font-style: normal;
2071 font-weight: normal;
2072 src: local('Pacifico Regular'), local('Pacifico-Regular'), url('../lib/css/fonts/pacifico.woff') format('woff');
2073}
2074
2075
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302076
2077/*
2078 * lib/css/ui/list.css
2079 */
2080.hide {
2081 display: none;
2082}
2083
2084.list-filters {
2085 margin: 7px 0px;
2086}
2087
2088.wnlist .img-load {
2089 display: none;
2090 float: left;
2091 margin-bottom: 8px;
2092}
2093
2094/* list-row */
2095div.list-row {
2096 border-bottom: 1px solid #eee;
2097 padding: 5px 0px;
2098}
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302099
2100div.list-row .label {
2101 margin-right: 4px;
2102}
2103
2104div.list-row table {
2105 table-layout: fixed;
2106 border-collapse: collapse;
2107 width: 100%;
2108}
2109
2110div.list-row table td {
2111 overflow: hidden;
Anand Doshic9456c12012-03-28 17:48:30 +05302112 /*padding-right: 3px;*/
2113 padding: 0px 3px;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302114 vertical-align: middle;
2115 height: 24px;
2116 max-height: 24px;
Anand Doshic9456c12012-03-28 17:48:30 +05302117 word-wrap: break-word;
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302118}
2119
2120div.paging-button {
2121 text-align: center;
2122 padding: 11px 0px;
2123}
2124
2125div.show_filters {
2126 display: none;
2127}
2128
2129div.filter_list {
2130 padding: 13px;
2131}
2132
2133div.show_filters.well {
2134 margin-top: 11px;
2135 margin-bottom: 11px;
2136}
2137
2138div.filter_list .run_btn {
2139 text-align: right;
2140}
2141
2142div.filter_list .add_filter {
2143 margin: 3px 0px;
2144}
2145
2146div.list_filter {
2147 margin: 7px 0px;
2148}
2149
2150div.list_filter input, div.list_filter select {
2151 width: 130px;
2152 margin-right: 7px;
2153}
2154
2155/* bar */
2156
2157span.bar-outer {
2158 display: inline-block;
2159 margin: 0px 7px;
2160 margin-top: 3px;
2161 background-color: #fff;
2162 border: 1px solid #aaa;
2163 height: 10px;
2164}
2165
2166span.bar-inner {
2167 display: inline-block;
2168 background-color: #bdf;
2169 height: 100%;
2170 margin-bottom: 2px;
2171 float: left;
2172}
2173span.bar-complete {
2174 background-color: #009900;
2175}
2176span.bar-empty {
2177 background-color: #990000;
2178}
2179
2180
2181/* stats */
2182
2183div.stat-wrapper {
2184 margin-bottom: 19px;
2185}
2186
2187div.stat-grid {
2188 border: 2px solid #bbb;
2189 background-color: white;
2190 border-radius: 5px;
2191 -moz-border-radius: 5px;
2192 -webkit-border-radius: 5px;
2193 overflow: hidden;
2194}
2195
2196div.stat-label {
2197 position: relative;
2198 padding: 3px;
2199 text-align: center;
2200}
2201div.stat-label, div.stat-label a {
2202 z-index: 5;
2203}
2204
2205div.stat-item {
2206 position: relative;
2207 border-bottom: 1px solid #ddd;
2208}
2209div.stat-item:last-child {
2210 border-bottom: 0px solid #ddd;
2211}
2212
2213div.stat-bar {
2214 position: absolute;
2215 left: 0px;
2216 background-color: #def;
2217 height: 100%;
2218 z-index: 0;
2219}
2220
2221
2222
2223
2224
2225/*
Rushabh Mehta6820dbf2012-04-16 13:33:14 +05302226 * lib/css/ui/views.css
2227 */
2228
2229.breadcrumbs {
2230 color: #000000;
2231}
2232
2233.breadcrumbs a {
2234 color: #000000;
2235}
2236
2237div.appframe-titlebar {
2238 padding: 6px;
2239 background: #eeeeee; /* Old browsers */
2240 background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
2241 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
2242 background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
2243 background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
2244 background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */
2245 background: linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* W3C */
2246 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
2247 border-bottom: 1px solid #aaa;
2248 min-height: 1.2em;
2249}
2250
2251div.appframe-toolbar {
2252 padding: 4px;
2253 background: #eeeeee;
2254 border-top: 1px solid #f8f8f8;
2255 border-bottom: 1px solid #ccc;
2256}
2257
2258/*
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302259 * erpnext/startup/startup.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302260 */
2261h1, h2, h3, h4, h5 {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302262 font-family: "Helvetica Neue", "Open Sans", Helvetica, sans-serif;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302263 margin-top: 0.2em;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302264}
2265
2266body {
Rushabh Mehta0c18b182012-04-16 11:18:45 +05302267 font-family: "Helvetica Neue", "Open Sans", Helvetica, sans-serif;
Rushabh Mehta983a1712012-03-21 13:35:34 +05302268 font-size: 13px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302269}
2270
2271span, div, td, input, textarea, button, select {
2272 font-family: inherit;
2273}
2274
2275body {
Rushabh Mehtab43f9492012-04-08 20:33:51 +05302276 color: #616161;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302277}
2278
Rushabh Mehta983a1712012-03-21 13:35:34 +05302279.small {
2280 font-size: 11.5px;
2281}
2282
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302283.erpnext-footer {
Rushabh Mehta4c1e9e72012-03-01 13:30:34 +05302284 margin: 11px auto;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302285 text-align: center;
2286}
2287
Anand Doshidb628762012-02-24 17:56:00 +05302288.navbar-new-comments {
Anand Doshic3023be2012-02-20 16:31:55 +05302289 margin: -3px 0px;
2290 padding: 2px;
Anand Doshic3023be2012-02-20 16:31:55 +05302291 min-width: 20px;
2292 text-align: center;
2293 display: inline-block;
2294 border-radius: 2px;
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302295 color: #999999;
2296 background-color: #333131;
2297}
2298
2299.navbar-new-comments:hover,
2300.navbar-new-comments:active,
2301.navbar-new-comments:focus {
2302 color: #fff;
2303}
2304
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302305.navbar-new-comments-true {
2306 color: #fff;
2307 background-color: #B00D07;
2308}
2309
Anand Doshi5b1beeb2012-02-27 17:17:48 +05302310/*extra size menus for recent*/
2311.dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{
2312 min-width: 160px !important;
2313 max-width: 260px !important;
Anand Doshic3023be2012-02-20 16:31:55 +05302314}
2315
Anand Doshi1ed4ef12012-04-27 15:30:23 +05302316.expiry-info {
2317 margin-top: 40px;
2318 margin-bottom: -40px;
2319 text-align: center;
2320 background-color: rgb(255, 255, 204);
2321 padding: 7px;
2322 z-index: 1;
2323}
2324
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302325
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302326/*
2327 * erpnext/website/css/website.css
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302328 */
Rushabh Mehta702473d2012-04-26 19:01:35 +05302329header .container, .content {
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302330 width: 900px;
2331}
2332
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302333div#body_div {
Rushabh Mehta702473d2012-04-26 19:01:35 +05302334 padding-top: 90px;
2335 min-height: 400px;
Rushabh Mehtaaa848be2012-02-17 12:06:33 +05302336}
2337
Rushabh Mehtab6f80882012-03-23 14:19:49 +05302338p, li {
2339 line-height: 1.6em;
2340}
2341
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302342pre {
2343 background-color: #F8F8F8;
2344 border: 1px solid #CCCCCC;
2345 border-radius: 3px 3px 3px 3px;
2346 font-size: 13px;
2347 line-height: 19px;
2348 overflow: auto;
2349 padding: 6px 10px;
2350 margin-bottom: 9px;
2351}
2352
Rushabh Mehta13531b72012-02-20 12:35:23 +05302353.web-head-section {
2354 margin-bottom: 20px
2355}
2356
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302357.web-main-section {
2358 width: 65%;
2359 float: left;
2360 margin-bottom: 20px;
2361}
2362
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302363.web-side-section {
2364 width: 30%;
2365 float: right;
2366 margin-bottom: 20px;
2367 margin-right: 15px;
2368 color: #606060;
2369 overflow-x: hidden;
Rushabh Mehtab43f9492012-04-08 20:33:51 +05302370 font-size: 90%;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302371}
2372
2373.web-page-status {
2374 padding: 7px;
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302375 margin-top: -20px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302376 color: #777;
2377 clear: both;
2378 text-align: right;
2379}
2380
2381.web-page-status a,
2382.web-page-status a:hover,
2383.web-page-status a:visited {
2384 padding: 2px;
2385 background-color: #777;
2386 color: #FFF;
2387 text-decoration: none;
2388}
2389
2390.web-page-status a:hover {
2391 background-color: #444;
2392}
2393
Rushabh Mehta702473d2012-04-26 19:01:35 +05302394
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302395footer {
Rushabh Mehta702473d2012-04-26 19:01:35 +05302396 background-color: #eee;
2397 box-shadow: inset 0 10px 10px rgba(0,0,0,0.3), inset 0 3px 3px rgba(0,0,0,0.3);
2398 border-top: 1px solid #555;
2399 padding-top: 10px;
2400 text-align: center;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302401}
2402
2403.web-footer {
2404 color: inherit;
Rushabh Mehta702473d2012-04-26 19:01:35 +05302405 padding: 10px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302406 line-height: 1.7;
2407}
2408
2409.web-footer div, .web-footer a {
Rushabh Mehta702473d2012-04-26 19:01:35 +05302410 font-size: 12px;
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302411}
2412
2413.web-footer-menu {
2414 margin-bottom: 7px;
2415}
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302416
2417.web-footer-menu ul {
2418 list-style: none;
2419 margin: 0px;
2420 padding: 0px;
2421}
2422
2423.web-footer-menu ul li {
2424 display: inline;
2425 padding: 2px 15px;
2426 border-right: 1px solid #999;
2427}
2428
Rushabh Mehta702473d2012-04-26 19:01:35 +05302429.web-footer-menu ul li:first-child {
2430 padding-left: 0px;
2431}
2432
Rushabh Mehtaafaac602012-02-14 11:44:13 +05302433.web-footer-menu ul li:last-child {
2434 border-right: 0px solid #777 !important;
Rushabh Mehta519f70b2012-03-09 16:44:21 +05302435}
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302436
Rushabh Mehta702473d2012-04-26 19:01:35 +05302437.web-footer-powered {
2438 color: #888;
2439 float: right;
2440 margin-top: -12px;
2441}
2442
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302443/* slide view */
2444
2445.next-slide {
2446 margin: 0px -27px 100px -27px;
2447 background: #ffffff; /* Old browsers */
2448 background: -moz-linear-gradient(top, #eeeeee 0%, #fff 100%); /* FF3.6+ */
2449 background: -webkit-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Chrome10+,Safari5.1+ */
2450 background: -o-linear-gradient(top, #eeeeee 0%, #fff 100%); /* Opera 11.10+ */
2451 background: -ms-linear-gradient(top, #eeeeee 0%, #fff 100%); /* IE10+ */
2452 background: linear-gradient(top, #eeeeee 0%, #fff 100%); /* W3C */
2453 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#fff',GradientType=0 ); /* IE6-9 */
2454 height: 36px;
2455}
2456
2457.slide-shadow {
2458 background: #eeeeee; /* Old browsers */
2459 background: -moz-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* FF3.6+ */
2460 background: -webkit-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
2461 background: -o-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* Opera 11.10+ */
2462 background: -ms-linear-gradient(top, #bababa 0%,#eeeeee 100%); /* IE10+ */
2463 background: linear-gradient(top, #bababa 0%,#eeeeee 100%); /* W3C */
2464 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bababa', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
2465 height: 3px;
2466 margin: 100px -27px 0px -27px;
2467 border-top: 1px solid #bababa;
2468}
2469
2470.two-column {
Rushabh Mehtadcfdfc32012-04-25 18:24:44 +05302471 width: 50%;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302472 float: left;
Rushabh Mehtad2cec5b2012-04-10 11:51:08 +05302473}
2474
2475.clear {
2476 clear: both;
2477}
2478
2479/* */