[MERGE] forward port of branch saas-4 up to 5087612
[odoo/odoo.git] / addons / web / static / src / css / base.css
1 @charset "utf-8";
2 @font-face {
3   font-family: "mnmliconsRegular";
4   src: url("/web/static/src/font/mnmliconsv21-webfont.eot") format("eot");
5   src: url("/web/static/src/font/mnmliconsv21-webfont.woff") format("woff");
6   src: url("/web/static/src/font/mnmliconsv21-webfont.ttf") format("truetype");
7   src: url("/web/static/src/font/mnmliconsv21-webfont.svg") format("svg") active;
8   font-weight: normal;
9   font-style: normal;
10 }
11
12 @font-face {
13   font-family: "EntypoRegular";
14   src: url("/web/static/src/font/entypo-webfont.eot") format("eot");
15   src: url("/web/static/src/font/entypo-webfont.eot?#iefix") format("embedded-opentype");
16   src: url("/web/static/src/font/entypo-webfont.woff") format("woff");
17   src: url("/web/static/src/font/entypo-webfont.ttf") format("truetype");
18   src: url("/web/static/src/font/entypo-webfont.svg") format("svg") active;
19   font-weight: normal;
20   font-style: normal;
21 }
22
23 .openerp {
24   padding: 0;
25   margin: 0;
26   font-family: "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
27   color: #4c4c4c;
28   font-size: 13px;
29   background: white;
30   /* http://www.quirksmode.org/dom/inputfile.html
31    * http://stackoverflow.com/questions/2855589/replace-input-type-file-by-an-image
32    */
33 }
34 .openerp.openerp_webclient_container {
35   height: 100%;
36 }
37 .openerp :-moz-placeholder {
38   color: #afafb6 !important;
39   font-style: italic !important;
40 }
41 .openerp ::-webkit-input-placeholder {
42   color: #afafb6 !important;
43   font-style: italic !important;
44 }
45 .openerp :-ms-input-placeholder {
46   color: #afafb6 !important;
47   font-style: italic !important;
48 }
49 .openerp a {
50   text-decoration: none;
51   cursor: pointer !important;
52 }
53 .openerp table {
54   padding: 0;
55   border-collapse: collapse;
56 }
57 .openerp thead {
58   font-weight: bold;
59   background-color: #f0f0f0;
60 }
61 .openerp thead th {
62   border-left: 1px solid #dfdfdf;
63 }
64 .openerp thead th:first-child {
65   border-left: none;
66 }
67 .openerp thead th.null {
68   border-left: none;
69 }
70 .openerp th, .openerp td {
71   padding: 0;
72   text-align: left;
73 }
74 .openerp th {
75   font-weight: bold;
76   vertical-align: middle;
77 }
78 .openerp td {
79   vertical-align: top;
80 }
81 .openerp .oe_title {
82   width: 38%;
83   float: left;
84 }
85 .openerp .oe_title:after {
86   content: ".";
87   display: block;
88   height: 0;
89   clear: both;
90   visibility: hidden;
91 }
92 .openerp .oe_form_group {
93   clear: both;
94 }
95 .openerp .zebra tbody tr:nth-child(odd) td {
96   background-color: #f0f0fa;
97   background-color: #efeff8;
98   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
99   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
100   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
101   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
102   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
103   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
104 }
105 .openerp .zebra tbody tr:hover td {
106   background-color: #e6e6e6;
107   background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dedede));
108   background-image: -webkit-linear-gradient(top, #eeeeee, #dedede);
109   background-image: -moz-linear-gradient(top, #eeeeee, #dedede);
110   background-image: -ms-linear-gradient(top, #eeeeee, #dedede);
111   background-image: -o-linear-gradient(top, #eeeeee, #dedede);
112   background-image: linear-gradient(to bottom, #eeeeee, #dedede);
113 }
114 .openerp input, .openerp textarea, .openerp select {
115   padding: 2px 4px;
116   border: 1px solid #cccccc;
117   -moz-border-radius: 3px;
118   -webkit-border-radius: 3px;
119   border-radius: 3px;
120   background: white;
121 }
122 .openerp img {
123   vertical-align: middle;
124 }
125 .openerp h4 {
126   margin: 4px 0;
127   font-weight: bold;
128   font-size: inherit;
129 }
130 .openerp a.button:link, .openerp a.button:visited, .openerp button, .openerp .oe_button, .openerp input[type='submit'] {
131   display: inline-block;
132   border: 1px solid rgba(0, 0, 0, 0.4);
133   color: #4c4c4c;
134   margin: 0;
135   padding: 3px 12px;
136   font-size: 13px;
137   text-align: center;
138   background-color: #e3e3e3;
139   background-image: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#d8d8d8));
140   background-image: -webkit-linear-gradient(top, #efefef, #d8d8d8);
141   background-image: -moz-linear-gradient(top, #efefef, #d8d8d8);
142   background-image: -ms-linear-gradient(top, #efefef, #d8d8d8);
143   background-image: -o-linear-gradient(top, #efefef, #d8d8d8);
144   background-image: linear-gradient(to bottom, #efefef, #d8d8d8);
145   -moz-border-radius: 3px;
146   -webkit-border-radius: 3px;
147   border-radius: 3px;
148   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
149   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
150   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
151   text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
152   -webkit-font-smoothing: antialiased;
153   outline: none;
154 }
155 .openerp a.button:hover, .openerp button:hover, .openerp .oe_button:hover, .openerp input[type='submit']:hover {
156   background-color: #ececec;
157   background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e3e3e3));
158   background-image: -webkit-linear-gradient(top, #f6f6f6, #e3e3e3);
159   background-image: -moz-linear-gradient(top, #f6f6f6, #e3e3e3);
160   background-image: -ms-linear-gradient(top, #f6f6f6, #e3e3e3);
161   background-image: -o-linear-gradient(top, #f6f6f6, #e3e3e3);
162   background-image: linear-gradient(to bottom, #f6f6f6, #e3e3e3);
163   cursor: pointer;
164   background-position: 0;
165 }
166 .openerp a.button:focus, .openerp button:focus, .openerp .oe_button:focus, .openerp input[type='submit']:focus {
167   border: 1px solid #80bfff;
168   background-position: 0;
169   background-color: #ececec;
170   background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e3e3e3));
171   background-image: -webkit-linear-gradient(top, #f6f6f6, #e3e3e3);
172   background-image: -moz-linear-gradient(top, #f6f6f6, #e3e3e3);
173   background-image: -ms-linear-gradient(top, #f6f6f6, #e3e3e3);
174   background-image: -o-linear-gradient(top, #f6f6f6, #e3e3e3);
175   background-image: linear-gradient(to bottom, #f6f6f6, #e3e3e3);
176   -moz-box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
177   -webkit-box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
178   box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
179 }
180 .openerp a.button:active, .openerp a.button.active, .openerp button:active, .openerp .oe_button:active, .openerp .oe_button.active, .openerp input[type='submit']:active, .openerp input[type='submit'].active {
181   background-color: #ececec;
182   background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#f6f6f6));
183   background-image: -webkit-linear-gradient(top, #e3e3e3, #f6f6f6);
184   background-image: -moz-linear-gradient(top, #e3e3e3, #f6f6f6);
185   background-image: -ms-linear-gradient(top, #e3e3e3, #f6f6f6);
186   background-image: -o-linear-gradient(top, #e3e3e3, #f6f6f6);
187   background-image: linear-gradient(to bottom, #e3e3e3, #f6f6f6);
188   -moz-box-shadow: none;
189   -webkit-box-shadow: none;
190   box-shadow: none;
191 }
192 .openerp a.button.disabled, .openerp button:disabled, .openerp .oe_button:disabled, .openerp input[type='submit']:disabled {
193   background: #efefef !important;
194   border: 1px solid #d1d1d1 !important;
195   -moz-box-shadow: none !important;
196   -webkit-box-shadow: none !important;
197   box-shadow: none !important;
198   color: #aaaaaa !important;
199   cursor: default;
200   text-shadow: 0 1px 1px white !important;
201 }
202 .openerp .ui-widget-content a {
203   color: #7c7bad;
204 }
205 .openerp .oe_bounce_container {
206   display: inline-block;
207 }
208 .openerp .text-tag .text-button {
209   height: auto !important;
210   min-height: 16px;
211 }
212 .openerp .ui-tabs {
213   position: static;
214 }
215 .openerp .oe_i {
216   font-family: "mnmliconsRegular" !important;
217   font-size: 21px;
218   font-weight: 300 !important;
219 }
220 .openerp .oe_e {
221   font-family: "entypoRegular" !important;
222   font-size: 34px;
223   font-weight: 300 !important;
224   line-height: 100%;
225 }
226 .openerp .oe_left {
227   float: left;
228   margin-right: 8px;
229   width: 305px;
230 }
231 .openerp .oe_right {
232   float: right;
233   margin-left: 8px;
234 }
235 .openerp .oe_text_center {
236   text-align: center;
237 }
238 .openerp .oe_text_left {
239   text-align: left;
240 }
241 .openerp .oe_text_right {
242   text-align: right;
243 }
244 .openerp .oe_clear {
245   clear: both;
246 }
247 .openerp .oe_wait {
248   cursor: wait;
249 }
250 .openerp .oe_fade {
251   color: #888888;
252   font-weight: normal;
253 }
254 .openerp .oe_bold {
255   font-weight: bold;
256 }
257 .openerp .oe_inline {
258   width: auto !important;
259 }
260 .openerp .oe_highlight {
261   color: white;
262   background: #dc5f59;
263 }
264 .openerp button.oe_highlight {
265   background-color: #c02c2c;
266   background-image: -webkit-gradient(linear, left top, left bottom, from(#df3f3f), to(#a21a1a));
267   background-image: -webkit-linear-gradient(top, #df3f3f, #a21a1a);
268   background-image: -moz-linear-gradient(top, #df3f3f, #a21a1a);
269   background-image: -ms-linear-gradient(top, #df3f3f, #a21a1a);
270   background-image: -o-linear-gradient(top, #df3f3f, #a21a1a);
271   background-image: linear-gradient(to bottom, #df3f3f, #a21a1a);
272   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
273   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
274   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
275 }
276 .openerp button.oe_highlight:hover {
277   background-color: #c63939;
278   background-image: -webkit-gradient(linear, left top, left bottom, from(#e25858), to(#ab1b1b));
279   background-image: -webkit-linear-gradient(top, #e25858, #ab1b1b);
280   background-image: -moz-linear-gradient(top, #e25858, #ab1b1b);
281   background-image: -ms-linear-gradient(top, #e25858, #ab1b1b);
282   background-image: -o-linear-gradient(top, #e25858, #ab1b1b);
283   background-image: linear-gradient(to bottom, #e25858, #ab1b1b);
284 }
285 .openerp button.oe_highlight:active {
286   background-color: #cb2121;
287   background-image: -webkit-gradient(linear, left top, left bottom, from(#c52020), to(#d22323));
288   background-image: -webkit-linear-gradient(top, #c52020, #d22323);
289   background-image: -moz-linear-gradient(top, #c52020, #d22323);
290   background-image: -ms-linear-gradient(top, #c52020, #d22323);
291   background-image: -o-linear-gradient(top, #c52020, #d22323);
292   background-image: linear-gradient(to bottom, #c52020, #d22323);
293 }
294 .openerp .oe_background_grey {
295   background: #eeeeee !important;
296 }
297 .openerp .oe_form_dirty .oe_highlight_on_dirty {
298   color: white;
299   background: #dc5f59;
300   font-weight: bold;
301 }
302 .openerp .oe_form_dirty button.oe_highlight_on_dirty {
303   background-color: #c74a44;
304   background-image: -webkit-gradient(linear, left top, left bottom, from(#dc5f59), to(#b33630));
305   background-image: -webkit-linear-gradient(top, #dc5f59, #b33630);
306   background-image: -moz-linear-gradient(top, #dc5f59, #b33630);
307   background-image: -ms-linear-gradient(top, #dc5f59, #b33630);
308   background-image: -o-linear-gradient(top, #dc5f59, #b33630);
309   background-image: linear-gradient(to bottom, #dc5f59, #b33630);
310   -moz-box-shadow: none;
311   -webkit-box-shadow: none;
312   box-shadow: none;
313 }
314 .openerp .oe_form_dirty button.oe_highlight_on_dirty:hover {
315   background: #ed6f6a;
316 }
317 .openerp .oe_stat_button {
318   font-weight: normal;
319   width: 132px !important;
320   height: 40px;
321   color: #666666;
322   margin: 0px -1px -1px 0px;
323   padding: 0;
324   border: 1px solid #dddddd;
325   border-radius: 0;
326   box-shadow: none;
327   background: white;
328 }
329 .openerp .oe_stat_button > div {
330   display: table-cell;
331   vertical-align: middle;
332   text-align: left;
333   padding: 0;
334   line-height: 120%;
335 }
336 .openerp .oe_stat_button .stat_button_icon {
337   color: #7c7bad;
338   font-size: 24px;
339   padding: 0px 3px;
340   width: 37px;
341   text-align: center;
342 }
343 .openerp .oe_stat_button .oe_form_field_percent_pie {
344   width: 42px;
345 }
346 .openerp .oe_stat_button .oe_form_field_bar_chart {
347   width: 42px;
348 }
349 .openerp .oe_stat_button svg {
350   width: 38px;
351   height: 38px;
352   display: inline;
353   vertical-align: middle;
354 }
355 .openerp .oe_stat_button:hover {
356   background: #7c7bad;
357   color: white;
358 }
359 .openerp .oe_stat_button:hover .fa {
360   color: white;
361 }
362 .openerp .oe_button_box {
363   width: 400px;
364   text-align: right;
365 }
366 .openerp .oe_button_box .oe_stat_button {
367   display: inline-table;
368 }
369 .openerp .oe_avatar > img {
370   max-height: 90px;
371   max-width: 90px;
372   -moz-border-radius: 3px;
373   -webkit-border-radius: 3px;
374   border-radius: 3px;
375   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
376   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
377   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
378   border: none;
379   margin-bottom: 10px;
380 }
381 .openerp .oe_avatar + div {
382   margin-left: 5px;
383 }
384 .openerp .oe_image_small > img {
385   max-width: 50px;
386   max-height: 50px;
387 }
388 .openerp .oe_image_medium > img {
389   max-width: 180px;
390   max-height: 180px;
391 }
392 .openerp .oe_button.oe_link {
393   border: none;
394   padding: 0;
395   margin: 0;
396   background: none;
397   -moz-border-radius: 0;
398   -webkit-border-radius: 0;
399   border-radius: 0;
400   -moz-box-shadow: none;
401   -webkit-box-shadow: none;
402   box-shadow: none;
403 }
404 .openerp .oe_button.oe_link img {
405   display: inline-block;
406 }
407 .openerp .oe_button.oe_link span {
408   border: none;
409   padding: 0;
410   margin: 0;
411   background: none;
412   -moz-border-radius: 0;
413   -webkit-border-radius: 0;
414   border-radius: 0;
415   -moz-box-shadow: none;
416   -webkit-box-shadow: none;
417   box-shadow: none;
418   color: #7c7bad;
419   font-weight: bold;
420 }
421 .openerp .oe_button.oe_link span:hover {
422   text-decoration: underline;
423 }
424 .openerp .oe_webclient .oe_star_on, .openerp .oe_webclient .oe_star_off {
425   color: #cccccc;
426   text-shadow: 0 0 2px black;
427   vertical-align: top;
428   position: relative;
429   top: -8px;
430 }
431 .openerp .oe_webclient .oe_star_on:hover, .openerp .oe_webclient .oe_star_off:hover {
432   text-decoration: none;
433 }
434 .openerp .oe_webclient .oe_star_on {
435   color: gold;
436 }
437 .openerp p.oe_grey {
438   max-width: 650px;
439 }
440 .openerp .oe_grey {
441   color: #aaaaaa;
442 }
443 .openerp .oe_error_detail hr {
444   display: block;
445   -webkit-margin-before: 0.5em;
446   -webkit-margin-after: 0.5em;
447   -webkit-margin-start: auto;
448   -webkit-margin-end: auto;
449   border-style: inset;
450   border-width: 1px;
451 }
452 .openerp .oe_kanban_status {
453   position: relative;
454   display: inline-block;
455   height: 12px;
456   width: 12px;
457   -moz-border-radius: 6px;
458   -webkit-border-radius: 6px;
459   border-radius: 6px;
460   background-position: center center;
461   background-image: -webkit-radial-gradient(circle, #eeeeee 0%, #cccccc 40%, #bbbbbb 100%);
462   background-image: -moz-radial-gradient(#eeeeee 0%, #cccccc 40%, #bbbbbb 100%);
463   background-image: -ms-radial-gradient(#eeeeee 0%, #cccccc 40%, #bbbbbb 100%);
464   background-image: radial-gradient(#eeeeee 0%, #cccccc 40%, #bbbbbb 100%);
465 }
466 .openerp .oe_kanban_status_green {
467   background: green;
468   background-position: center center;
469   background-image: -webkit-radial-gradient(circle, #55dd55 0%, #44aa44 40%, #339933 100%);
470   background-image: -moz-radial-gradient(#55dd55 0%, #44aa44 40%, #339933 100%);
471   background-image: -ms-radial-gradient(#55dd55 0%, #44aa44 40%, #339933 100%);
472   background-image: radial-gradient(#55dd55 0%, #44aa44 40%, #339933 100%);
473 }
474 .openerp .oe_kanban_status_red {
475   background: red;
476   background-position: center center;
477   background-image: -webkit-radial-gradient(circle, #ee7777 0%, #cc3333 40%, #bb0808 100%);
478   background-image: -moz-radial-gradient(#ee7777 0%, #cc3333 40%, #bb0808 100%);
479   background-image: -ms-radial-gradient(#ee7777 0%, #cc3333 40%, #bb0808 100%);
480   background-image: radial-gradient(#ee7777 0%, #cc3333 40%, #bb0808 100%);
481 }
482 .openerp .btn-group.kanban_state {
483   padding-top: 8px;
484   margin-right: 4px !important;
485 }
486 .openerp .btn-group.kanban_state .dropdown-menu {
487   min-width: 100%;
488   padding-right: 10px !important;
489 }
490 .openerp .btn-group.kanban_state .dropdown-menu li a, .openerp .btn-group.kanban_state .dropdown-menu li a:hover, .openerp .btn-group.kanban_state .dropdown-menu li a:focus {
491   padding-left: 5px;
492   padding-right: 0px;
493 }
494 .openerp .btn-group.kanban_state a {
495   color: #333333;
496 }
497 .openerp .oe_tag {
498   border: 1px solid #afafb6;
499   font-size: 11px;
500   padding: 2px 4px;
501   margin: 0 2px 2px 0;
502   -moz-border-radius: 3px;
503   -webkit-border-radius: 3px;
504   border-radius: 3px;
505   background: #f0f0fa;
506   color: #4c4c4c;
507 }
508 .openerp .oe_tag_dark {
509   background: #7c7bad;
510   color: #eeeeee;
511 }
512 .openerp .oe_form_field_radio.oe_horizontal {
513   white-space: nowrap;
514 }
515 .openerp .oe_form_field_radio.oe_horizontal label {
516   display: inline-block;
517   text-align: center;
518   height: 16px;
519 }
520 .openerp .oe_form_field_radio.oe_vertical label {
521   margin-left: 4px;
522 }
523 .openerp .oe_form_field_radio.oe_form_required .oe_radio_input {
524   border: 2px solid transparent;
525   display: inline-block;
526   height: 12px;
527   width: 12px;
528   vertical-align: top;
529   border-radius: 10px;
530   margin: 1px 0;
531 }
532 .openerp .oe_form_field_radio.oe_form_required.oe_form_invalid .oe_radio_input {
533   border-color: red;
534 }
535 .openerp .oe_tags {
536   margin-bottom: 1px;
537 }
538 .openerp .oe_tags.oe_inline {
539   min-width: 250px;
540 }
541 .openerp .oe_tags .text-wrap {
542   width: 100% !important;
543 }
544 .openerp .oe_tags .text-wrap textarea {
545   width: 100% !important;
546 }
547 .openerp .oe_tags .text-core {
548   min-height: 22px;
549 }
550 .openerp .oe_tags .text-core .text-wrap .text-dropdown .text-list .text-suggestion em {
551   font-style: italic;
552   text-decoration: none;
553 }
554 .openerp .oe_notebook {
555   margin: 8px 0;
556   padding: 0 16px;
557   list-style: none;
558   zoom: 1;
559 }
560 .openerp .oe_notebook.ui-corner-all {
561   -moz-border-radius: 0;
562   -webkit-border-radius: 0;
563   border-radius: 0;
564 }
565 .openerp .oe_notebook:before, .openerp .oe_notebook:after {
566   display: table;
567   content: "";
568   zoom: 1;
569 }
570 .openerp .oe_notebook:after {
571   clear: both;
572 }
573 .openerp .oe_notebook > li {
574   float: left;
575 }
576 .openerp .oe_notebook > li > a {
577   display: block;
578   color: gray;
579 }
580 .openerp .oe_notebook > li.ui-tabs-active > a {
581   color: #4c4c4c;
582 }
583 .openerp .oe_notebook {
584   border-color: #dddddd;
585   border-style: solid;
586   border-width: 0 0 1px;
587 }
588 .openerp .oe_notebook > li {
589   position: relative;
590 }
591 .openerp .oe_notebook > li > a {
592   padding: 0 12px;
593   margin-right: 2px;
594   line-height: 30px;
595   border: 1px solid transparent;
596   -moz-border-radius: 4px 4px 0 0;
597   -webkit-border-radius: 4px 4px 0 0;
598   border-radius: 4px 4px 0 0;
599 }
600 .openerp .oe_notebook > li > a:hover {
601   text-decoration: none;
602   background-color: #eeeeee;
603   border-color: #eeeeee #eeeeee #dddddd;
604 }
605 .openerp .ui-tabs .oe_notebook.ui-tabs-nav li.ui-tabs-active {
606   border-bottom: none;
607   padding-bottom: 1px;
608 }
609 .openerp .oe_notebook > li.ui-state-active > a, .openerp .oe_notebook > li.ui-state-active > a:hover {
610   background-color: white;
611   border: 1px solid #dddddd;
612   border-bottom-color: transparent;
613   cursor: default;
614 }
615 .openerp .oe_notebook_page {
616   padding: 0;
617 }
618 .openerp .oe_notebook_page > label:not([for]) {
619   font-weight: normal !important;
620 }
621 .openerp div.ui-tabs {
622   padding: 3px 0px 3px 0px;
623 }
624 .openerp .ui-tabs-hide {
625   display: none;
626 }
627 .openerp .oe_dropdown, .openerp .oe_dropdown_hover, .openerp .oe_dropdown_toggle {
628   position: relative;
629   cursor: pointer;
630 }
631 .openerp .oe_dropdown_toggle {
632   color: #2b2b2b;
633   font-weight: normal;
634 }
635 .openerp .oe_dropdown_hover:hover .oe_dropdown_menu, .openerp .oe_dropdown_menu.oe_opened {
636   display: block;
637 }
638 .openerp .oe_dropdown_menu {
639   display: none;
640   position: absolute;
641   z-index: 3;
642   margin: 0;
643   border: 1px solid #afafb6;
644   background: white;
645   padding: 4px 0;
646   min-width: 140px;
647   text-align: left;
648   -moz-border-radius: 3px;
649   -webkit-border-radius: 3px;
650   border-radius: 3px;
651   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
652   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
653   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
654 }
655 .openerp .oe_dropdown_menu > li {
656   list-style-type: none;
657   float: none;
658   display: block;
659   position: relative;
660   margin: 0;
661   padding: 2px 8px;
662 }
663 .openerp .oe_dropdown_menu > li:hover {
664   background-color: #efeff8;
665   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
666   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
667   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
668   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
669   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
670   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
671   -moz-box-shadow: none;
672   -webkit-box-shadow: none;
673   box-shadow: none;
674 }
675 .openerp .oe_dropdown_menu > li > a {
676   white-space: nowrap;
677   display: block;
678   color: #4c4c4c;
679   text-decoration: none;
680 }
681 .openerp .oe_dropdown_menu > li > a:hover {
682   text-decoration: none;
683 }
684 .openerp .oe_dropdown_arrow:after {
685   width: 0;
686   height: 0;
687   display: inline-block;
688   content: "&darr";
689   text-indent: -99999px;
690   vertical-align: top;
691   margin-top: 8px;
692   margin-left: 3px;
693   border-left: 4px solid transparent;
694   border-right: 4px solid transparent;
695   border-top: 4px solid #404040;
696   filter: alpha(opacity=50);
697   opacity: 0.5;
698 }
699 .openerp .oe_sidebar {
700   white-space: nowrap;
701 }
702 .openerp .oe_sidebar .oe_dropdown_menu .oe_sidebar_add_attachment {
703   height: 20px;
704   cursor: pointer;
705   padding-left: 6px;
706   margin-top: 6px;
707 }
708 .openerp .oe_sidebar .oe_dropdown_menu .oe_sidebar_add_attachment span {
709   font-weight: bold;
710 }
711 .openerp .oe_sidebar .oe_dropdown_menu .oe_sidebar_add_attachment .oe_hidden_input_file {
712   width: 200px;
713 }
714 .openerp .oe_sidebar .oe_dropdown_menu .oe_sidebar_add_attachment:hover {
715   background-color: #efeff8;
716   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
717   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
718   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
719   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
720   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
721   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
722   -moz-box-shadow: none;
723   -webkit-box-shadow: none;
724   box-shadow: none;
725 }
726 .openerp .oe_sidebar .oe_dropdown_menu li .oe_sidebar_delete_item {
727   position: absolute;
728   top: 4px;
729   right: 4px;
730   display: none;
731   width: 12px;
732   height: 12px;
733   padding: 1px;
734   color: #8786b7;
735   line-height: 8px;
736   text-align: center;
737   font-weight: bold;
738   text-shadow: 0 1px 1px white;
739 }
740 .openerp .oe_sidebar .oe_dropdown_menu li .oe_sidebar_delete_item:hover {
741   text-decoration: none;
742   color: white;
743   background: #8786b7;
744   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
745   -moz-border-radius: 2px;
746   -webkit-border-radius: 2px;
747   border-radius: 2px;
748 }
749 .openerp .oe_sidebar .oe_dropdown_menu li:hover .oe_sidebar_delete_item {
750   display: inline-block;
751 }
752 .openerp .oe_loading {
753   display: none;
754   z-index: 100;
755   position: fixed;
756   top: 0;
757   right: 50%;
758   padding: 4px 12px;
759   background: #a61300;
760   color: white;
761   text-align: center;
762   border: 1px solid #990000;
763   border-top: none;
764   -moz-border-radius-bottomright: 8px;
765   -moz-border-radius-bottomleft: 8px;
766   border-bottom-right-radius: 8px;
767   border-bottom-left-radius: 8px;
768 }
769 .openerp .oe_notification {
770   z-index: 1500;
771 }
772 .openerp .oe_webclient_timezone_notification a {
773   color: white;
774   text-decoration: underline;
775 }
776 .openerp .oe_webclient_timezone_notification p {
777   margin-top: 1em;
778 }
779 .openerp .oe_webclient_timezone_notification dt {
780   font-weight: bold;
781 }
782 .openerp .oe_timezone_systray span {
783   margin-top: 1px;
784   background-color: #f6cf3b;
785 }
786 .openerp .oe_dialog_warning {
787   width: 100%;
788 }
789 .openerp .oe_dialog_warning p {
790   text-align: center;
791 }
792 .openerp .oe_dialog_icon {
793   padding: 5px;
794   width: 32px;
795 }
796 .openerp .oe_database_manager {
797   background: white;
798   color: black;
799   text-align: left;
800 }
801 .openerp .oe_database_manager .oe_database_manager_menu {
802   color: black;
803 }
804 .openerp .oe_webclient {
805   width: 100%;
806   height: 100%;
807   border-spacing: 0px;
808 }
809 .openerp .oe_content_full_screen .oe_application {
810   top: 0;
811   left: 0;
812 }
813 .openerp .oe_content_full_screen .oe_topbar, .openerp .oe_content_full_screen .oe_leftbar {
814   display: none;
815 }
816 .openerp .navbar .oe_topbar_anonymous_login {
817   background-color: #dc5f59;
818   color: #eeeeee;
819   background-color: #be4343;
820   background-image: -webkit-gradient(linear, left top, left bottom, from(#fc8787), to(maroon));
821   background-image: -webkit-linear-gradient(top, #fc8787, maroon);
822   background-image: -moz-linear-gradient(top, #fc8787, maroon);
823   background-image: -ms-linear-gradient(top, #fc8787, maroon);
824   background-image: -o-linear-gradient(top, #fc8787, maroon);
825   background-image: linear-gradient(to bottom, #fc8787, maroon);
826 }
827 .openerp .navbar .oe_topbar_anonymous_login a {
828   display: block;
829   padding: 5px 10px 7px;
830   line-height: 20px;
831   height: 30px;
832   text-decoration: none;
833   color: white;
834   background: transparent;
835   -webkit-transition: all 0.2s ease-out;
836   -moz-transition: all 0.2s ease-out;
837   -ms-transition: all 0.2s ease-out;
838   -o-transition: all 0.2s ease-out;
839   transition: all 0.2s ease-out;
840 }
841 .openerp .navbar .oe_topbar_anonymous_login a:hover {
842   background: rgba(0, 0, 0, 0.1);
843   color: white;
844   text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
845   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
846   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
847   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
848 }
849 .openerp .navbar .oe_topbar_item {
850   display: block;
851   padding: 5px 10px 26px;
852   line-height: 20px;
853   height: 20px;
854   text-decoration: none;
855   color: #eeeeee;
856   vertical-align: top;
857   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
858   -webkit-transition: all 0.2s ease-out;
859   -moz-transition: all 0.2s ease-out;
860   -ms-transition: all 0.2s ease-out;
861   -o-transition: all 0.2s ease-out;
862   transition: all 0.2s ease-out;
863 }
864 .openerp .navbar .oe_topbar_item:hover {
865   background: rgba(0, 0, 0, 0.2);
866   text-shadow: black 0px 0px 3px;
867   color: white;
868   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
869   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
870   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
871 }
872 .openerp .navbar .oe_topbar_avatar {
873   width: 24px;
874   height: 24px;
875   margin: -2px 2px 0 0;
876   -moz-border-radius: 3px;
877   -webkit-border-radius: 3px;
878   border-radius: 3px;
879 }
880 .openerp .navbar .oe_topbar_avatar {
881   vertical-align: top;
882 }
883 .openerp .navbar .oe_dropdown_arrow:after {
884   border-top: 4px solid white;
885 }
886 .openerp .navbar .dropdown_menu {
887   top: 32px;
888   background: #333333;
889   background: rgba(37, 37, 37, 0.9);
890   border-color: #999999;
891   border-color: rgba(0, 0, 0, 0.2);
892   border-style: solid;
893   border-width: 0 2px 1px;
894   -moz-border-radius: 0 0 6px 6px;
895   -webkit-border-radius: 0 0 6px 6px;
896   border-radius: 0 0 6px 6px;
897   -webkit-background-clip: padding-box;
898   -moz-background-clip: padding-box;
899   background-clip: padding-box;
900 }
901 .openerp .navbar .dropdown_menu li {
902   float: none;
903   padding: 3px 12px;
904 }
905 .openerp .navbar .dropdown_menu li a {
906   color: #eeeeee;
907 }
908 .openerp .navbar .dropdown_menu li:hover {
909   background-color: #212121;
910   background-image: -webkit-gradient(linear, left top, left bottom, from(#292929), to(#191919));
911   background-image: -webkit-linear-gradient(top, #292929, #191919);
912   background-image: -moz-linear-gradient(top, #292929, #191919);
913   background-image: -ms-linear-gradient(top, #292929, #191919);
914   background-image: -o-linear-gradient(top, #292929, #191919);
915   background-image: linear-gradient(to bottom, #292929, #191919);
916   -moz-box-shadow: none;
917   -webkit-box-shadow: none;
918   box-shadow: none;
919 }
920 .openerp .navbar .oe_topbar_name {
921   max-width: 150px;
922   display: inline-block;
923   height: 15px;
924   text-overflow: ellipsis;
925   white-space: nowrap;
926   overflow: hidden;
927 }
928 .openerp .navbar-nav {
929   float: left;
930   padding: 0;
931   margin: 0;
932   font-size: 13px;
933 }
934 .openerp .navbar-nav > li {
935   list-style-type: none;
936   padding: 0;
937   margin: 0;
938   float: left;
939   display: block;
940   color: #eeeeee;
941 }
942 .openerp .navbar-nav > li > a {
943   display: block;
944   padding: 5px 10px 26px !important;
945   line-height: 20px;
946   height: 20px;
947   text-decoration: none;
948   color: #eeeeee !important;
949   vertical-align: top;
950   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
951   -webkit-transition: all 0.2s ease-out;
952   -moz-transition: all 0.2s ease-out;
953   -ms-transition: all 0.2s ease-out;
954   -o-transition: all 0.2s ease-out;
955   transition: all 0.2s ease-out;
956 }
957 .openerp .navbar-nav > li > a:hover {
958   background: rgba(0, 0, 0, 0.2);
959   text-shadow: black 0px 0px 3px;
960   color: white;
961   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
962   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
963   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
964 }
965 .openerp .navbar-nav > li > .active {
966   background: rgba(0, 0, 0, 0.3);
967   text-shadow: black 0px 0px 3px;
968   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
969   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
970   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
971 }
972 .openerp .oe_user_menu {
973   float: right;
974   padding: 0;
975   margin: 0;
976 }
977 .openerp .oe_user_menu li {
978   list-style-type: none;
979   float: left;
980 }
981 .openerp .oe_user_menu .oe_dropdown_menu {
982   right: -1px;
983 }
984 .openerp .oe_systray > div {
985   float: left;
986   padding: 0 4px 0 4px;
987 }
988 .openerp .oe_systray {
989   float: right;
990 }
991 .openerp .oe_leftbar {
992   display: none;
993   width: 220px;
994   background: #f0eeee;
995   border-right: 1px solid #afafb6;
996   text-shadow: none;
997   padding-bottom: 16px;
998 }
999 .openerp a.oe_logo {
1000   position: relative;
1001   width: 220px;
1002   display: block;
1003   text-align: center;
1004 }
1005 .openerp a.oe_logo img {
1006   margin: 14px 0;
1007   border: 0;
1008 }
1009 .openerp a.oe_logo .oe_logo_edit {
1010   margin: 14px 0;
1011   position: absolute;
1012   top: 1px;
1013   padding: 4px;
1014   width: 100%;
1015   display: none;
1016   text-align: center;
1017   color: #eeeeee;
1018   background: rgba(37, 37, 37, 0.9);
1019   -webkit-box-sizing: border-box;
1020   -moz-box-sizing: border-box;
1021   -ms-box-sizing: border-box;
1022   box-sizing: border-box;
1023 }
1024 .openerp a.oe_logo:hover .oe_logo_edit_admin {
1025   display: block;
1026 }
1027 .openerp .oe_footer {
1028   position: fixed;
1029   bottom: 0;
1030   padding: 4px 0;
1031   background: #f0eeee;
1032   width: 220px;
1033   text-align: center;
1034 }
1035 .openerp .oe_footer a {
1036   font-weight: bold;
1037   color: black;
1038 }
1039 .openerp .oe_footer a span {
1040   color: #a24689;
1041 }
1042 .openerp .oe_secondary_menu_section {
1043   font-weight: bold;
1044   margin-left: 8px;
1045   color: #7c7bad;
1046 }
1047 .openerp .oe_secondary_submenu {
1048   margin-bottom: 10px !important;
1049   line-height: 1.1em;
1050   margin-top: 3px;
1051 }
1052 .openerp .oe_secondary_submenu .oe_menu_text {
1053   white-space: nowrap;
1054   overflow: hidden;
1055   display: inline-block;
1056   text-overflow: ellipsis;
1057   max-width: 85%;
1058   margin-top: 1px;
1059 }
1060 .openerp .oe_secondary_submenu .badge:hover {
1061   cursor: pointer;
1062   -webkit-transform: scale(1.1);
1063   -moz-transform: scale(1.1);
1064   -ms-transform: scale(1.1);
1065   -o-transform: scale(1.1);
1066   transform: scale(1.1);
1067 }
1068 .openerp .oe_secondary_submenu .oe_menu_toggler:before {
1069   width: 0;
1070   height: 0;
1071   display: inline-block;
1072   content: "&darr";
1073   text-indent: -99999px;
1074   vertical-align: top;
1075   margin-left: -12px;
1076   margin-top: 4px;
1077   margin-right: 4px;
1078   border-top: 4px solid transparent;
1079   border-bottom: 4px solid transparent;
1080   border-left: 4px solid #4c4c4c;
1081   filter: alpha(opacity=50);
1082   opacity: 0.5;
1083 }
1084 .openerp .oe_secondary_submenu .oe_menu_opened:before {
1085   margin-top: 6px;
1086   margin-left: -16px;
1087   margin-right: 4px;
1088   border-left: 4px solid transparent;
1089   border-right: 4px solid transparent;
1090   border-top: 4px solid #4c4c4c;
1091 }
1092 .openerp .oe_secondary_submenu .oe_secondary_submenu li {
1093   margin-left: 20px;
1094 }
1095 .openerp .oe_about {
1096   background-color: white;
1097   background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAKUlEQVQIHWO8e/fufwYsgAUkJigoiCIF5DMyoYggcUiXgNnBiGQKmAkARpcEQeriln4AAAAASUVORK5CYII=);
1098   -moz-border-radius: 0 0 2px 2px;
1099   -webkit-border-radius: 0 0 2px 2px;
1100   border-radius: 0 0 2px 2px;
1101 }
1102 .openerp .oe_about a {
1103   color: #7c7bad;
1104 }
1105 .openerp .oe_about a:hover {
1106   text-decoration: underline;
1107 }
1108 .openerp .oe_about a:focus {
1109   outline: none;
1110 }
1111 .openerp .oe_about .oe_logo {
1112   margin-left: -6px;
1113 }
1114 .openerp .oe_about .oe_bottom {
1115   text-shadow: 0 1px 1px #999999;
1116   background-color: #8a0e0e;
1117   background-image: -webkit-gradient(linear, left top, left bottom, from(#b41616), to(#600606));
1118   background-image: -webkit-linear-gradient(top, #b41616, #600606);
1119   background-image: -moz-linear-gradient(top, #b41616, #600606);
1120   background-image: -ms-linear-gradient(top, #b41616, #600606);
1121   background-image: -o-linear-gradient(top, #b41616, #600606);
1122   background-image: linear-gradient(to bottom, #b41616, #600606);
1123   color: #eeeeee;
1124   padding: 0 16px;
1125   -moz-border-radius: 0 0 2px 2px;
1126   -webkit-border-radius: 0 0 2px 2px;
1127   border-radius: 0 0 2px 2px;
1128 }
1129 .openerp .oe_about .oe_bottom a {
1130   color: #eeeeee;
1131 }
1132 .openerp a.oe_form_uri:hover {
1133   text-decoration: underline;
1134 }
1135 .openerp .oe_application {
1136   width: 100%;
1137   height: 100%;
1138 }
1139 .openerp .oe_application a {
1140   color: #7c7bad;
1141 }
1142 .openerp .oe_application > div {
1143   height: 100%;
1144 }
1145 .openerp .oe_application .oe_breadcrumb_item:not(:last-child) {
1146   max-width: 7em;
1147   white-space: nowrap;
1148   text-overflow: ellipsis;
1149 }
1150 .openerp .oe_application .oe_breadcrumb_title > * {
1151   display: inline-block;
1152   overflow: hidden;
1153   font-weight: bold;
1154 }
1155 .openerp .oe_view_manager {
1156   display: table;
1157   height: inherit;
1158   width: 100%;
1159 }
1160 .openerp .oe_view_manager .oe_view_manager_body {
1161   height: inherit;
1162 }
1163 .openerp .oe_view_manager .oe_view_manager_view_kanban:not(:empty) {
1164   height: inherit;
1165 }
1166 .openerp .oe_view_manager[data-view-type=kanban] .oe_view_manager_body {
1167   display: table-row;
1168 }
1169 .openerp .oe_view_manager table.oe_view_manager_header {
1170   border-collapse: separate;
1171   width: 100%;
1172   table-layout: fixed;
1173 }
1174 .openerp .oe_view_manager table.oe_view_manager_header .oe_header_row {
1175   clear: both;
1176   text-shadow: 0 1px 1px white;
1177 }
1178 .openerp .oe_view_manager table.oe_view_manager_header .oe_header_row:last-child td {
1179   padding-top: 0;
1180 }
1181 .openerp .oe_view_manager table.oe_view_manager_header .oe_header_row:first-child td {
1182   padding-top: 8px;
1183 }
1184 .openerp .oe_view_manager table.oe_view_manager_header .oe_view_manager_sidebar {
1185   margin: 0px auto;
1186   text-align: center;
1187 }
1188 .openerp .oe_view_manager table.oe_view_manager_header .oe_view_manager_sidebar .oe_dropdown_arrow:after {
1189   opacity: 0.9;
1190 }
1191 .openerp .oe_view_manager table.oe_view_manager_header td {
1192   line-height: 26px;
1193 }
1194 .openerp .oe_view_manager table.oe_view_manager_header h2 {
1195   font-size: 18px;
1196   margin: 0;
1197   float: left;
1198   line-height: 30px;
1199 }
1200 .openerp .oe_view_manager table.oe_view_manager_header h2 a {
1201   color: #7c7bad;
1202 }
1203 .openerp .oe_view_manager table.oe_view_manager_header .oe_dropdown_menu {
1204   line-height: normal;
1205 }
1206 .openerp .oe_view_manager table.oe_view_manager_header .oe_button_group {
1207   display: inline-block;
1208   border: 1px solid #ababab;
1209   -moz-border-radius: 5px;
1210   -webkit-border-radius: 5px;
1211   border-radius: 5px;
1212 }
1213 .openerp .oe_view_manager table.oe_view_manager_header .oe_button_group li {
1214   float: left;
1215   border-right: 1px solid #ababab;
1216 }
1217 .openerp .oe_view_manager table.oe_view_manager_header .oe_button_group li:last-child {
1218   border: none;
1219 }
1220 .openerp .oe_view_manager table.oe_view_manager_header .oe_button_group a {
1221   color: #4c4c4c;
1222 }
1223 .openerp .oe_view_manager table.oe_view_manager_header .oe_button_group a:hover {
1224   text-decoration: none;
1225 }
1226 .openerp .oe_view_manager table.oe_view_manager_header .oe_button_group .active {
1227   background: #999999;
1228   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1229   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1230   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1231 }
1232 .openerp .oe_view_manager table.oe_view_manager_header .oe_button_group .active a {
1233   color: white;
1234   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
1235 }
1236 .openerp .oe_view_manager table.oe_view_manager_header .oe_view_manager_buttons {
1237   white-space: nowrap;
1238 }
1239 .openerp .oe_view_manager .oe_view_manager_switch {
1240   padding: 0;
1241   margin: 0 0 0 8px;
1242 }
1243 .openerp .oe_view_manager .oe_view_manager_switch li {
1244   margin: 0;
1245   width: 24px;
1246   height: 24px;
1247   line-height: 16px;
1248   padding: 0;
1249   text-align: center;
1250   list-style-type: none;
1251 }
1252 .openerp .oe_view_manager .oe_view_manager_switch li a {
1253   position: relative;
1254 }
1255 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_list:after, .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_tree:after {
1256   padding: 2px;
1257   content: "i";
1258 }
1259 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_form:after {
1260   content: "m";
1261 }
1262 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_graph:after {
1263   font-family: "mnmliconsRegular" !important;
1264   font-size: 21px;
1265   font-weight: 300 !important;
1266   content: "}";
1267   top: -2px;
1268   position: relative;
1269 }
1270 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_gantt:after {
1271   font-family: "mnmliconsRegular" !important;
1272   font-size: 21px;
1273   font-weight: 300 !important;
1274   content: "y";
1275   top: -2px;
1276   position: relative;
1277 }
1278 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_calendar:after {
1279   content: "P";
1280 }
1281 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_kanban:after {
1282   content: "k";
1283 }
1284 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_diagram:after {
1285   content: "f";
1286 }
1287 .openerp .oe_list_pager {
1288   line-height: 26px;
1289 }
1290 .openerp .oe_pager_value {
1291   float: left;
1292   margin-right: 8px;
1293 }
1294 .openerp ul.oe_pager_group {
1295   padding: 0;
1296   margin: 0;
1297 }
1298 .openerp .oe_pager_group {
1299   float: left;
1300   height: 24px;
1301   line-height: 24px;
1302   display: inline-block;
1303   border: 1px solid #ababab;
1304   cursor: pointer;
1305   -moz-border-radius: 5px;
1306   -webkit-border-radius: 5px;
1307   border-radius: 5px;
1308 }
1309 .openerp .oe_pager_group li {
1310   height: 24px;
1311   line-height: 24px;
1312   padding: 0;
1313   margin: 0;
1314   list-style-type: none;
1315   float: left;
1316   border-right: 1px solid #ababab;
1317 }
1318 .openerp .oe_pager_group li:last-child {
1319   border: none;
1320 }
1321 .openerp .oe_pager_group a {
1322   color: #4c4c4c;
1323   padding: 0 8px;
1324 }
1325 .openerp .oe_pager_group a:hover {
1326   text-decoration: none;
1327 }
1328 .openerp .oe_pager_group .active {
1329   background: #999999;
1330   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1331   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1332   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1333 }
1334 .openerp .oe_pager_group .active a {
1335   color: white;
1336   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
1337 }
1338 .openerp .oe_list_pager.oe_list_pager_single_page .oe_pager_group {
1339   display: none;
1340 }
1341 .openerp .oe_view_manager_current {
1342   height: 100%;
1343 }
1344 .openerp .oe_view_manager_current > .oe_view_manager_header {
1345   border-bottom: 1px solid #cacaca;
1346   background-color: #ededed;
1347   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
1348   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
1349   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
1350   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
1351   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
1352   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
1353   -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
1354   -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
1355   box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
1356 }
1357 .openerp .oe_view_manager_current > .oe_view_manager_header .oe_header_row td {
1358   padding: 8px;
1359 }
1360 .openerp .oe_view_manager_current > .oe_view_manager_header .oe_header_row:first-child td {
1361   padding-top: 8px;
1362 }
1363 .openerp .oe_view_manager_inline, .openerp .oe_view_manager_inlineview {
1364   height: 100%;
1365 }
1366 .openerp .oe_view_manager_inline > .oe_view_manager_header, .openerp .oe_view_manager_inlineview > .oe_view_manager_header {
1367   display: none;
1368 }
1369 .openerp .oe_popup_form .oe_formview .oe_form_pager {
1370   display: none !important;
1371 }
1372 .openerp .oe_popup_form table label {
1373   font-weight: normal;
1374 }
1375 .openerp .oe_popup_list_pager {
1376   float: right;
1377 }
1378 .openerp .oe_searchview {
1379   cursor: text;
1380   position: relative;
1381   float: right;
1382   padding: 1px 0;
1383   line-height: 18px;
1384   width: 400px;
1385   border: 1px solid #ababab;
1386   background: white;
1387   -moz-border-radius: 13px;
1388   -webkit-border-radius: 13px;
1389   border-radius: 13px;
1390   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1391   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1392   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1393 }
1394 .openerp .oe_searchview input, .openerp .oe_searchview textarea {
1395   padding: 3px;
1396   height: 14px;
1397   font-size: 12px;
1398   line-height: 18px;
1399 }
1400 .openerp .oe_searchview input:not([type]), .openerp .oe_searchview input[type="text"], .openerp .oe_searchview input[type="number"] {
1401   width: 156px;
1402   height: 22px;
1403 }
1404 .openerp .oe_searchview input[type="checkbox"] {
1405   margin: 3px 3px 3px 4px;
1406 }
1407 .openerp .oe_searchview select {
1408   margin: 2px 4px 2px 0;
1409 }
1410 .openerp .oe_searchview.oe_focused {
1411   border-color: #a6a6fe;
1412   -moz-box-shadow: 0 1px 2px #a6a6fe inset;
1413   -webkit-box-shadow: 0 1px 2px #a6a6fe inset;
1414   box-shadow: 0 1px 2px #a6a6fe inset;
1415 }
1416 .openerp .oe_searchview .oe_searchview_clear {
1417   cursor: pointer;
1418   position: absolute;
1419   top: 0;
1420   right: 18px;
1421   width: 15px;
1422   height: 24px;
1423   background: url(../img/search_reset.gif) center center no-repeat;
1424 }
1425 .openerp .oe_searchview .oe_searchview_unfold_drawer {
1426   position: absolute;
1427   top: 0;
1428   right: 0;
1429   height: 24px;
1430   padding: 0 7px 0 4px;
1431   color: #cccccc;
1432   cursor: pointer;
1433 }
1434 .openerp .oe_searchview .oe_searchview_unfold_drawer:hover {
1435   color: #999999;
1436 }
1437 .openerp .oe_searchview .oe_searchview_unfold_drawer:before {
1438   position: absolute;
1439   top: 10px;
1440   right: 7px;
1441   width: 0;
1442   height: 0;
1443   display: inline-block;
1444   content: "";
1445   vertical-align: top;
1446   border-top: 5px solid #4c4c4c;
1447   border-left: 5px solid transparent;
1448   border-right: 5px solid transparent;
1449   filter: alpha(opacity=50);
1450   opacity: 0.5;
1451 }
1452 .openerp .oe_searchview .oe_searchview_search {
1453   font-size: 1px;
1454   letter-spacing: -1px;
1455   color: transparent;
1456   text-shadow: none;
1457   font-weight: normal;
1458   -moz-box-shadow: none;
1459   -webkit-box-shadow: none;
1460   box-shadow: none;
1461   -moz-border-radius: 0;
1462   -webkit-border-radius: 0;
1463   border-radius: 0;
1464   position: absolute;
1465   left: 3px;
1466   top: 1px;
1467   padding: 0;
1468   border: none;
1469   background: transparent;
1470 }
1471 .openerp .oe_searchview .oe_searchview_search:before {
1472   font: 21px "mnmliconsRegular";
1473   content: "r";
1474   color: #a3a3a3;
1475 }
1476 .openerp .oe_searchview .oe_searchview_facets {
1477   min-height: 22px;
1478   margin: 0 35px 0 15px;
1479 }
1480 .openerp .oe_searchview .oe_searchview_facets * {
1481   vertical-align: top;
1482   display: inline-block;
1483   line-height: 17px;
1484 }
1485 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet {
1486   margin: 1px 0;
1487   font-size: 11px;
1488 }
1489 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet:focus {
1490   outline: none;
1491 }
1492 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_input {
1493   padding: 0 0 0 6px;
1494   font-size: 12px;
1495   height: 16px;
1496   margin-top: 3px;
1497 }
1498 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_input:focus {
1499   outline: none;
1500 }
1501 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet {
1502   position: relative;
1503   cursor: pointer;
1504   padding: 0;
1505   -webkit-font-smoothing: auto;
1506 }
1507 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet:focus {
1508   border-color: #a6a6fe;
1509   -moz-box-shadow: 0 0 3px 1px #a6a6fe;
1510   -webkit-box-shadow: 0 0 3px 1px #a6a6fe;
1511   box-shadow: 0 0 3px 1px #a6a6fe;
1512 }
1513 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_values {
1514   background: #f0f0fa;
1515   -moz-border-radius: 0 3px 3px 0;
1516   -webkit-border-radius: 0 3px 3px 0;
1517   border-radius: 0 3px 3px 0;
1518 }
1519 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category, .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value {
1520   padding: 0 4px;
1521 }
1522 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category {
1523   color: white;
1524   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1525 }
1526 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category.oe_i {
1527   font-size: 16px;
1528 }
1529 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value {
1530   border-left: 1px solid #afafb6;
1531   text-shadow: 0 1px 1px white;
1532   color: #4c4c4c;
1533 }
1534 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value:last-child {
1535   padding-right: 16px;
1536 }
1537 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_remove {
1538   position: absolute;
1539   top: 3px;
1540   right: 3px;
1541   color: #8786b7;
1542   line-height: 8px;
1543   width: 12px;
1544   height: 12px;
1545   padding-top: 1px;
1546   text-align: center;
1547   font-weight: bold;
1548   cursor: pointer;
1549   text-shadow: 0 1px 1px white;
1550 }
1551 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_remove:hover {
1552   color: white;
1553   background: #8786b7;
1554   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1555   -moz-border-radius: 2px;
1556   -webkit-border-radius: 2px;
1557   border-radius: 2px;
1558 }
1559 .openerp .oe_searchview.oe_searchview_open_drawer .oe_searchview_drawer {
1560   display: block;
1561 }
1562 .openerp .oe_searchview .oe_searchview_drawer {
1563   cursor: default;
1564   position: absolute;
1565   z-index: 2;
1566   margin-top: 4px;
1567   top: 100%;
1568   right: -1px;
1569   background-color: white;
1570   min-width: 100%;
1571   display: none;
1572   border: 1px solid #afafb6;
1573   text-align: left;
1574   -moz-border-radius: 4px;
1575   -webkit-border-radius: 4px;
1576   border-radius: 4px;
1577   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1578   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1579   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1580 }
1581 .openerp .oe_searchview .oe_searchview_drawer > div {
1582   border-top: 1px solid #cccccc;
1583   margin: 0;
1584   padding: 8px;
1585 }
1586 .openerp .oe_searchview .oe_searchview_drawer > div:first-child {
1587   border-top: none;
1588   margin: 0;
1589 }
1590 .openerp .oe_searchview .oe_searchview_drawer h3 {
1591   margin: 8px 4px 4px 0px;
1592   color: #7c7bad;
1593   font-size: 13px;
1594 }
1595 .openerp .oe_searchview .oe_searchview_drawer h4, .openerp .oe_searchview .oe_searchview_drawer h4 * {
1596   margin: 0 0 0 2px;
1597   cursor: pointer;
1598   font-weight: normal;
1599   display: inline-block;
1600 }
1601 .openerp .oe_searchview .oe_searchview_drawer h4:hover, .openerp .oe_searchview .oe_searchview_drawer h4 *:hover {
1602   background-color: #f0f0fa;
1603 }
1604 .openerp .oe_searchview .oe_searchview_drawer h4:before {
1605   content: "â–¸ ";
1606   color: #a3a3a3;
1607 }
1608 .openerp .oe_searchview .oe_searchview_drawer button {
1609   margin: 4px 0;
1610 }
1611 .openerp .oe_searchview .oe_searchview_drawer .button {
1612   border: none;
1613   background: transparent;
1614   padding: 0 2px;
1615   -moz-box-shadow: none;
1616   -webkit-box-shadow: none;
1617   box-shadow: none;
1618   -moz-border-radius: 0;
1619   -webkit-border-radius: 0;
1620   border-radius: 0;
1621 }
1622 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section {
1623   display: table;
1624   width: 100%;
1625 }
1626 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section > div {
1627   -webkit-box-sizing: border-box;
1628   -moz-box-sizing: border-box;
1629   -ms-box-sizing: border-box;
1630   box-sizing: border-box;
1631   display: table-cell;
1632   width: 50%;
1633   padding-left: 2px;
1634 }
1635 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section ul {
1636   margin: 0 8px 8px;
1637   padding: 0;
1638   list-style: none;
1639 }
1640 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li {
1641   list-style: none;
1642   padding: 2px 4px 2px 20px;
1643   line-height: 14px;
1644   color: inherit;
1645   cursor: pointer;
1646   position: relative;
1647 }
1648 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li.oe_selected:before {
1649   content: "W";
1650   font-family: "entypoRegular" !important;
1651   font-size: 24px;
1652   font-weight: 300 !important;
1653   color: #a3a3a3;
1654   position: absolute;
1655   left: 4px;
1656   top: -2px;
1657 }
1658 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li:hover {
1659   background-color: #f0f0fa;
1660 }
1661 .openerp .oe_searchview .oe_searchview_drawer form {
1662   margin-left: 12px;
1663 }
1664 .openerp .oe_searchview .oe_searchview_drawer form p {
1665   margin: 4px 0;
1666   line-height: 18px;
1667 }
1668 .openerp .oe_searchview .oe_searchview_drawer form button {
1669   margin: 0 0 8px -3px;
1670 }
1671 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom {
1672   padding: 0 8px 8px 8px;
1673 }
1674 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom div {
1675   padding: 0;
1676 }
1677 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom div h4 {
1678   margin: 0;
1679 }
1680 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom form {
1681   display: none;
1682 }
1683 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li {
1684   cursor: pointer;
1685   position: relative;
1686   line-height: 14px;
1687   padding: 2px 4px 2px 20px;
1688 }
1689 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li:hover {
1690   background-color: #f0f0fa;
1691 }
1692 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li button {
1693   position: absolute;
1694   top: 0;
1695   right: 5px;
1696 }
1697 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom label {
1698   font-weight: normal;
1699 }
1700 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_dashboard form {
1701   display: none;
1702   margin-top: 2px;
1703 }
1704 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced form {
1705   display: none;
1706   margin-top: 8px;
1707 }
1708 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced button.oe_add_condition:before {
1709   content: "Z";
1710   font-family: "entypoRegular" !important;
1711   font-size: 24px;
1712   font-weight: 300 !important;
1713   margin-right: 4px;
1714 }
1715 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced ul {
1716   list-style: none;
1717   padding: 0;
1718 }
1719 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced li {
1720   position: relative;
1721   list-style: none;
1722   margin: 0;
1723   white-space: nowrap;
1724 }
1725 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced li:first-child .searchview_extended_prop_or {
1726   visibility: hidden;
1727   margin-left: -14px;
1728 }
1729 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced .searchview_extended_prop_or {
1730   opacity: 0.5;
1731   margin-left: -14px;
1732 }
1733 .openerp .oe_searchview .oe_searchview_drawer .oe_opened h4:before {
1734   content: "â–¾ ";
1735   position: relative;
1736   top: -1px;
1737 }
1738 .openerp .oe_searchview .oe_searchview_drawer .oe_opened form {
1739   display: block;
1740 }
1741 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete, .openerp .oe_searchview .oe_searchview_drawer .searchview_extended_delete_prop {
1742   display: inline-block;
1743   width: 12px;
1744   height: 12px;
1745   line-height: 12px;
1746   padding: 1px;
1747   color: #8786b7;
1748   line-height: 8px;
1749   text-align: center;
1750   font-weight: bold;
1751   text-shadow: 0 1px 1px white;
1752 }
1753 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete:hover, .openerp .oe_searchview .oe_searchview_drawer .searchview_extended_delete_prop:hover {
1754   text-decoration: none;
1755   color: white;
1756   background: #8786b7;
1757   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1758   -moz-border-radius: 2px;
1759   -webkit-border-radius: 2px;
1760   border-radius: 2px;
1761 }
1762 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete {
1763   display: none;
1764   position: absolute;
1765   bottom: 1px;
1766   right: 4px;
1767 }
1768 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_private:hover .oe_searchview_custom_delete, .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_public:hover .oe_searchview_custom_delete {
1769   display: inline-block;
1770 }
1771 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_public:after {
1772   content: ",";
1773   font-family: "entypoRegular" !important;
1774   font-size: 22px;
1775   font-weight: 300 !important;
1776   margin: 0 0 0 4px;
1777   padding: 0;
1778 }
1779 .openerp .oe_view_nocontent {
1780   padding: 15px;
1781   margin-top: 0;
1782   color: #777777;
1783   font-size: 125%;
1784   max-width: 700px;
1785 }
1786 .openerp .oe_view_nocontent .oe_view_nocontent_create {
1787   margin-top: 0;
1788   padding-top: 35px;
1789   color: #4c4c4c;
1790 }
1791 .openerp .oe_view_nocontent .oe_view_nocontent_create:before {
1792   content: "";
1793   display: inline-block;
1794   position: absolute;
1795   width: 70px;
1796   height: 80px;
1797   margin-left: -70px;
1798   margin-top: -50px;
1799   background: transparent url(/web/static/src/img/view_empty_arrow.png) no-repeat 0px 0px;
1800 }
1801 .openerp .oe_view_nocontent > p {
1802   padding-left: 78px;
1803 }
1804 .openerp .oe_view_nocontent .oe_empty_custom_dashboard {
1805   background: transparent url(/web/static/src/img/graph_background.png) no-repeat 0 0;
1806   margin-top: -15px;
1807   padding: 100px 0 0 137px;
1808   min-height: 327px;
1809   margin-left: -15px;
1810 }
1811 .openerp .oe_view.oe_cannot_create .oe_view_nocontent_create {
1812   display: none;
1813 }
1814 .openerp .oe_formview {
1815   background: white;
1816 }
1817 .openerp .oe_form_dropdown_section {
1818   position: relative;
1819   display: inline-block;
1820 }
1821 .openerp .oe_form_invalid input, .openerp .oe_form_invalid select, .openerp .oe_form_invalid textarea {
1822   background-color: #ff6666 !important;
1823   border: 1px solid #dd0000 !important;
1824 }
1825 .openerp .oe_view_manager_current .oe_form_editable .oe_highlight {
1826   color: #404040;
1827   background: none;
1828 }
1829 .openerp .oe_view_manager_current .oe_form_editable button.oe_highlight {
1830   background-color: #e3e3e3;
1831   background-image: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#d8d8d8));
1832   background-image: -webkit-linear-gradient(top, #efefef, #d8d8d8);
1833   background-image: -moz-linear-gradient(top, #efefef, #d8d8d8);
1834   background-image: -ms-linear-gradient(top, #efefef, #d8d8d8);
1835   background-image: -o-linear-gradient(top, #efefef, #d8d8d8);
1836   background-image: linear-gradient(to bottom, #efefef, #d8d8d8);
1837   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1838   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1839   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1840 }
1841 .openerp .oe_view_manager_current .oe_form_editable button.oe_highlight:active {
1842   background-color: #ececec;
1843   background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#f6f6f6));
1844   background-image: -webkit-linear-gradient(top, #e3e3e3, #f6f6f6);
1845   background-image: -moz-linear-gradient(top, #e3e3e3, #f6f6f6);
1846   background-image: -ms-linear-gradient(top, #e3e3e3, #f6f6f6);
1847   background-image: -o-linear-gradient(top, #e3e3e3, #f6f6f6);
1848   background-image: linear-gradient(to bottom, #e3e3e3, #f6f6f6);
1849   -moz-box-shadow: none;
1850   -webkit-box-shadow: none;
1851   box-shadow: none;
1852 }
1853 .openerp .oe_view_manager_current .oe_form_editable button.oe_highlight:hover {
1854   background-color: #ececec;
1855   background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e3e3e3));
1856   background-image: -webkit-linear-gradient(top, #f6f6f6, #e3e3e3);
1857   background-image: -moz-linear-gradient(top, #f6f6f6, #e3e3e3);
1858   background-image: -ms-linear-gradient(top, #f6f6f6, #e3e3e3);
1859   background-image: -o-linear-gradient(top, #f6f6f6, #e3e3e3);
1860   background-image: linear-gradient(to bottom, #f6f6f6, #e3e3e3);
1861   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1862   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1863   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1864 }
1865 .openerp .oe_form_invisible {
1866   display: none !important;
1867 }
1868 .openerp .oe_form_editable .oe_read_only {
1869   display: none !important;
1870 }
1871 .openerp .oe_form_readonly .oe_edit_only, .openerp .oe_form_readonly .oe_form_field:empty {
1872   display: none !important;
1873 }
1874 .openerp .oe_form_readonly .oe_form .oe_form_field_date {
1875   width: auto;
1876 }
1877 .openerp .oe_form_readonly .oe_form_field_boolean.boolean {
1878   position: relative;
1879   top: -20px;
1880   width: 14px;
1881   height: 14px;
1882   z-index: 10000;
1883   backgroundColor: "#fff";
1884   opacity: 0;
1885 }
1886 .openerp .oe_form_nosheet {
1887   margin: 16px;
1888 }
1889 .openerp .oe_form_nosheet > header {
1890   margin: -16px -16px 0 -16px;
1891   padding: 0;
1892 }
1893 .openerp .oe_form_nosheet.oe_form_nomargin {
1894   margin: 0;
1895 }
1896 .openerp .oe_form_nosheet.oe_form_nomargin > header {
1897   margin: 0;
1898 }
1899 .openerp .oe_form_sheetbg {
1900   padding: 16px 0;
1901 }
1902 .openerp .oe_form_sheet_width {
1903   min-width: 650px;
1904   max-width: 860px;
1905   margin: 0 auto;
1906 }
1907 .openerp .oe_form_sheet {
1908   background: white;
1909   min-height: 330px;
1910   padding: 16px;
1911 }
1912 .openerp .oe_form_sheet .oe_list {
1913   overflow-x: auto;
1914 }
1915 .openerp .oe_application .oe_form_sheetbg {
1916   background: url(/web/static/src/img/form_sheetbg.png);
1917   border-bottom: 1px solid #dddddd;
1918 }
1919 .openerp .oe_application .oe_form_sheetbg .oe_subtotal_footer label {
1920   font-weight: bold;
1921 }
1922 .openerp .oe_application .oe_form_sheetbg table label {
1923   font-weight: normal;
1924 }
1925 .openerp .oe_application .oe_form_sheet {
1926   border: 1px solid #c8c8d3;
1927   -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
1928   -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
1929   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
1930 }
1931 .openerp .oe_application .oe_form_sheet .ui-tabs {
1932   margin: 0 -16px;
1933 }
1934 .openerp .oe_application .oe_form_sheet .oe_notebook_page {
1935   padding: 0 16px;
1936 }
1937 .openerp .oe_form > :not(.oe_form_nosheet) header {
1938   padding-left: 2px;
1939 }
1940 .openerp .oe_form > :not(.oe_form_nosheet) header ul:not(.oe_tooltip_technical):not(.oe_dropdown_menu) {
1941   display: inline-block;
1942   float: right;
1943 }
1944 .openerp .oe_form > :not(.oe_form_nosheet) header .oe_button {
1945   margin: 3px 2px 1px;
1946 }
1947 .openerp .oe_form > :not(.oe_form_nosheet) header .oe_button:first-child {
1948   margin-left: 6px;
1949 }
1950 .openerp .oe_form header {
1951   border-bottom: 1px solid #cacaca;
1952   padding-left: 2px;
1953   background-color: #ededed;
1954   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
1955   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
1956   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
1957   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
1958   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
1959   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
1960 }
1961 .openerp .oe_form header > span {
1962   margin-left: 4px;
1963 }
1964 .openerp .oe_form header .oe_tags {
1965   margin: 5px 0 0 5px;
1966   width: 400px;
1967   padding-bottom: 0;
1968 }
1969 .openerp .oe_form div.oe_chatter {
1970   box-sizing: border-box;
1971   min-width: 682px;
1972   max-width: 892px;
1973   margin: 0 auto;
1974   padding: 16px 16px 48px;
1975 }
1976 .openerp .oe_form div.oe_form_configuration p, .openerp .oe_form div.oe_form_configuration ul, .openerp .oe_form div.oe_form_configuration ol {
1977   color: #aaaaaa;
1978   max-width: 650px;
1979 }
1980 .openerp .oe_form div.oe_form_configuration label {
1981   min-width: 150px;
1982 }
1983 .openerp .oe_form div.oe_form_configuration .oe_form_group_cell_label {
1984   padding: 1px 0;
1985 }
1986 .openerp .oe_form div.oe_form_configuration .oe_form_group_cell div div {
1987   padding: 1px 0;
1988 }
1989 .openerp .oe_form .oe_subtotal_footer {
1990   width: 1% !important;
1991 }
1992 .openerp .oe_form .oe_subtotal_footer td.oe_form_group_cell {
1993   text-align: right;
1994   padding: 0 !important;
1995 }
1996 .openerp .oe_form .oe_subtotal_footer td.oe_form_group_cell_label {
1997   border-right: none;
1998 }
1999 .openerp .oe_form .oe_subtotal_footer .oe_subtotal_footer_separator {
2000   width: 108px;
2001   border-top: 1px solid #cacaca;
2002   margin-top: 4px;
2003   padding-top: 4px;
2004   font-weight: bold;
2005   font-size: 18px;
2006 }
2007 .openerp .oe_form .oe_subtotal_footer label:after {
2008   content: ":";
2009 }
2010 .openerp .oe_form .oe_subtotal_footer label.oe_subtotal_footer_separator {
2011   font-weight: bold !important;
2012   padding: 2px 11px 2px 0px !important;
2013 }
2014 .openerp .oe_form .oe_subtotal_footer label.oe_form_label_help {
2015   font-weight: normal !important;
2016 }
2017 .openerp .oe_form .oe_form_box_info {
2018   background: #ffee99;
2019   border-bottom: 1px solid #ccbb66;
2020   padding: 4px;
2021 }
2022 .openerp .oe_form .oe_form_box_info > p {
2023   margin: auto;
2024 }
2025 .openerp .oe_form .oe_form_box_warning {
2026   background: #bd362f;
2027   border-bottom: 1px solid #990000;
2028   padding: 4px;
2029 }
2030 .openerp .oe_form .oe_form_box_warning * {
2031   color: white;
2032   text-shadow: none;
2033 }
2034 .openerp .oe_form .oe_form_box_warning > p {
2035   margin: auto;
2036 }
2037 .openerp .oe_form .oe_form_button {
2038   margin: 2px;
2039 }
2040 .openerp .oe_form td.oe_form_group_cell_label {
2041   border-right: 1px solid #dddddd;
2042   padding: 2px 0px;
2043 }
2044 .openerp .oe_form td.oe_form_group_cell_label label {
2045   line-height: 18px;
2046   display: block;
2047   min-width: 150px;
2048   font-weight: bold !important;
2049 }
2050 .openerp .oe_form td.oe_form_group_cell + .oe_form_group_cell {
2051   padding: 2px 0 2px 8px;
2052 }
2053 .openerp .oe_form .oe_form_group {
2054   width: 100%;
2055   margin: 9px 0 9px 0;
2056 }
2057 .openerp .oe_form .oe_form_group .oe_form_group_cell.oe_group_right {
2058   padding-left: 20px;
2059 }
2060 .openerp .oe_form .oe_form_label_help[for], .openerp .oe_form .oe_form_label[for] {
2061   white-space: nowrap;
2062   padding-right: 8px;
2063 }
2064 .openerp .oe_form .oe_form_label_help[for] span, .openerp .oe_form .oe_form_label[for] span {
2065   font-size: 80%;
2066   color: darkgreen;
2067   vertical-align: top;
2068   position: relative;
2069   top: -4px;
2070   padding: 0 2px;
2071 }
2072 .openerp .oe_horizontal_border {
2073   border-bottom: 1px solid black;
2074 }
2075 .openerp .oe_horizontal_separator {
2076   font-weight: bold;
2077   font-size: 20px;
2078   margin: 15px 0px 10px 0px;
2079   color: #7c7bad;
2080 }
2081 .openerp .oe_horizontal_separator:empty {
2082   height: 5px;
2083 }
2084 .openerp .oe_vertical_separator {
2085   border-left: 1px solid #666666;
2086   padding: 0 4px 0 4px;
2087 }
2088 .openerp .oe_form_field_progressbar {
2089   display: inline-block;
2090   min-width: 70px;
2091 }
2092 .openerp .oe_form_field_progressbar.ui-progressbar {
2093   height: 22px;
2094   font-size: 10px;
2095   -webkit-box-sizing: border-box;
2096   -moz-box-sizing: border-box;
2097   -ms-box-sizing: border-box;
2098   box-sizing: border-box;
2099   border: 1px solid #999999;
2100   -moz-border-radius: 3px;
2101   -webkit-border-radius: 3px;
2102   border-radius: 3px;
2103   background: white;
2104   min-width: 50px;
2105 }
2106 .openerp .oe_form_field_progressbar.ui-progressbar span {
2107   position: absolute;
2108   margin-left: 10px;
2109   font-weight: bold;
2110 }
2111 .openerp .oe_form_field_progressbar.ui-progressbar .ui-widget-header {
2112   background: #cccccc url(/web/static/lib/jquery.ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
2113 }
2114 .openerp .oe_form .oe_form_field_text {
2115   width: 100%;
2116 }
2117 .openerp .oe_form .oe_form_field_text .oe_form_text_content {
2118   text-overflow: ellipsis;
2119   display: inline-block;
2120   white-space: pre-wrap;
2121   overflow-x: hidden;
2122   width: 100%;
2123 }
2124 .openerp .oe_form .oe_form_field_char input,
2125 .openerp .oe_form .oe_form_field_url input,
2126 .openerp .oe_form .oe_form_field_email input,
2127 .openerp .oe_form .oe_form_field_text textarea,
2128 .openerp .oe_form .oe_form_field_selection select {
2129   width: 100%;
2130 }
2131 .openerp .oe_form .oe_notebook_page .oe_form_field_text textarea {
2132   min-height: 96px;
2133 }
2134 .openerp .oe_form .oe_form_field_text.oe_inline, .openerp .oe_form .oe_form_field_text.oe_inline > textarea {
2135   width: 500px;
2136 }
2137 .openerp .oe_form h1, .openerp .oe_form h2, .openerp .oe_form h3, .openerp .oe_form h4, .openerp .oe_form h5, .openerp .oe_form h6 {
2138   margin: 0 0 4px 0;
2139 }
2140 .openerp .oe_form h1 input, .openerp .oe_form h2 input, .openerp .oe_form h3 input, .openerp .oe_form h4 input, .openerp .oe_form h5 input, .openerp .oe_form h6 input {
2141   height: inherit !important;
2142   font-size: inherit;
2143 }
2144 .openerp .oe_form .oe_title h1, .openerp .oe_form h1 {
2145   font-weight: bold;
2146   font-size: 2em;
2147 }
2148 .openerp .oe_form h2 {
2149   font-size: 1.5em;
2150 }
2151 .openerp .oe_form label {
2152   font-weight: bold;
2153   margin-bottom: 0px;
2154   display: inline;
2155 }
2156 .openerp .oe_form .oe_form_field {
2157   width: 100%;
2158   display: inline-block;
2159   padding: 2px 2px 2px 0px;
2160   vertical-align: top;
2161 }
2162 .openerp .oe_form .oe_form_field input {
2163   margin: 0px;
2164 }
2165 .openerp .oe_form input[type="text"], .openerp .oe_form input[type="password"], .openerp .oe_form input[type="file"], .openerp .oe_form select {
2166   height: 22px;
2167   padding-top: 2px;
2168 }
2169 .openerp .oe_form input[type="text"], .openerp .oe_form input[type="password"], .openerp .oe_form input[type="file"], .openerp .oe_form select, .openerp .oe_form textarea {
2170   -webkit-box-sizing: border-box;
2171   -moz-box-sizing: border-box;
2172   -ms-box-sizing: border-box;
2173   box-sizing: border-box;
2174   background: white;
2175   min-width: 60px;
2176   color: #1f1f1f;
2177   font-family: "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
2178 }
2179 .openerp .oe_form input[readonly], .openerp .oe_form select[readonly], .openerp .oe_form textarea[readonly], .openerp .oe_form input[disabled], .openerp .oe_form select[disabled] {
2180   background: #e5e5e5 !important;
2181   color: #666666;
2182 }
2183 .openerp .oe_form textarea[disabled] {
2184   border: none;
2185   padding-left: 8px;
2186   -moz-box-shadow: none;
2187   -webkit-box-shadow: none;
2188   box-shadow: none;
2189   -moz-border-radius: 0px;
2190   -webkit-border-radius: 0px;
2191   border-radius: 0px;
2192   color: #4c4c4c;
2193 }
2194 .openerp .oe_form textarea.oe_inline[disabled] {
2195   border-left: 8px solid #eeeeee;
2196 }
2197 .openerp .oe_form .oe_form_field_url button img {
2198   vertical-align: top;
2199 }
2200 .openerp .oe_form .oe_form_field_monetary,
2201 .openerp .oe_form .oe_form_field_date,
2202 .openerp .oe_form .oe_form_field_datetime {
2203   white-space: nowrap;
2204 }
2205 .openerp .oe_form .oe_form_field_boolean {
2206   width: auto;
2207 }
2208 .openerp .oe_form .oe_datepicker_container {
2209   display: none;
2210 }
2211 .openerp .oe_form .oe_datepicker_root {
2212   display: inline-block;
2213 }
2214 .openerp .oe_form .oe_form_required input:not([disabled]):not([readonly]), .openerp .oe_form .oe_form_required select:not([disabled]):not([readonly]), .openerp .oe_form .oe_form_required textarea:not([disabled]):not([readonly]) {
2215   background-color: #d2d2ff !important;
2216 }
2217 .openerp .oe_form .oe_form_invalid input, .openerp .oe_form .oe_form_invalid select, .openerp .oe_form .oe_form_invalid textarea {
2218   background-color: #ff6666 !important;
2219   border: 1px solid #dd0000 !important;
2220 }
2221 .openerp .oe_form .oe_input_icon {
2222   cursor: pointer;
2223   margin: 3px 0 0 -21px;
2224   vertical-align: top;
2225 }
2226 .openerp .oe_form .oe_input_icon_disabled {
2227   position: absolute;
2228   cursor: default;
2229   opacity: 0.5;
2230   filter: alpha(opacity=50);
2231   right: 5px;
2232   top: 3px;
2233 }
2234 .openerp .oe_form .oe_form_field_with_button.oe_no_button > .oe_button {
2235   display: none;
2236 }
2237 .openerp .oe_form .oe_form_field_with_button:not(.oe_no_button) > .oe_button {
2238   float: right;
2239   -moz-border-radius: 0;
2240   -webkit-border-radius: 0;
2241   border-radius: 0;
2242   border-bottom-left-radius: 0px;
2243   height: 22px;
2244 }
2245 .openerp .oe_form .oe_form_field_with_button input {
2246   width: 100%;
2247 }
2248 .openerp .oe_form .oe_form_field_with_button > div {
2249   position: relative;
2250   overflow: hidden;
2251 }
2252 .openerp .oe_form .oe_form_embedded_html {
2253   position: relative;
2254   width: 100%;
2255   margin: auto;
2256   overflow: auto;
2257   text-align: justify;
2258 }
2259 .openerp .oe_form .oe_form_field_html .oe_input_icon {
2260   float: right;
2261   margin: 4px 7px;
2262 }
2263 .openerp .oe_form_editable .oe_form .oe_form_field_integer input {
2264   width: 6em;
2265 }
2266 .openerp .oe_form_editable .oe_form .oe_form_field_float input {
2267   width: 7em;
2268 }
2269 .openerp .oe_form_editable .oe_form .oe_form_field_date input {
2270   width: 100px;
2271 }
2272 .openerp .oe_form_editable .oe_form .oe_form_field_datetime input {
2273   width: 150px;
2274 }
2275 .openerp .oe_hidden_input_file {
2276   position: relative;
2277 }
2278 .openerp .oe_hidden_input_file input.oe_form_binary_file {
2279   z-index: 0;
2280   line-height: 0;
2281   font-size: 12px;
2282   position: absolute;
2283   top: 1px;
2284   left: 0;
2285   right: 0;
2286   opacity: 0;
2287   filter: alpha(opacity=0);
2288   -ms-filter: "alpha(opacity=0)";
2289   margin: 0;
2290   padding: 0;
2291 }
2292 .openerp .oe_form .oe_form_field_binary {
2293   display: inline-block;
2294 }
2295 .openerp .oe_form .oe_form_field_image {
2296   padding: 0;
2297   position: relative;
2298   display: inline-block;
2299   width: auto;
2300   vertical-align: top;
2301 }
2302 .openerp .oe_form .oe_form_field_image .oe_form_field_image_controls {
2303   position: absolute;
2304   top: 1px;
2305   padding: 4px 0;
2306   width: 100%;
2307   display: none;
2308   text-align: center;
2309   color: #eeeeee;
2310   background: rgba(37, 37, 37, 0.9);
2311   -moz-border-radius: 3px 3px 0 0;
2312   -webkit-border-radius: 3px 3px 0 0;
2313   border-radius: 3px 3px 0 0;
2314   -webkit-box-sizing: border-box;
2315   -moz-box-sizing: border-box;
2316   -ms-box-sizing: border-box;
2317   box-sizing: border-box;
2318 }
2319 .openerp .oe_form .oe_form_field_image:hover .oe_form_field_image_controls {
2320   display: block;
2321 }
2322 .openerp .oe_fileupload {
2323   display: inline-block;
2324   clear: both;
2325   width: 100%;
2326   margin-bottom: -15px;
2327 }
2328 .openerp .oe_fileupload .oe_add {
2329   float: left;
2330   position: relative;
2331   width: 100%;
2332   left: 2px;
2333   margin: 9px 0;
2334   overflow: hidden;
2335 }
2336 .openerp .oe_fileupload .oe_add button {
2337   display: inline;
2338   height: 24px;
2339   font-size: 12px;
2340   line-height: 12px;
2341   vertical-align: middle;
2342 }
2343 .openerp .oe_fileupload .oe_add button.oe_attach {
2344   width: 24px;
2345   background: transparent;
2346   color: #7c7bad;
2347   box-shadow: none;
2348   border: none;
2349   text-shadow: none;
2350 }
2351 .openerp .oe_fileupload .oe_add button.oe_attach .oe_e {
2352   position: relative;
2353   top: -10px;
2354   left: -9px;
2355 }
2356 .openerp .oe_fileupload .oe_add input.oe_form_binary_file {
2357   display: inline-block;
2358   margin-left: -85px;
2359   height: 22px;
2360   width: 152px;
2361   margin-top: -24px;
2362   cursor: pointer;
2363 }
2364 .openerp .oe_fileupload .oe_add .oe_attach_label {
2365   color: #7c7bad;
2366   margin-left: -3px;
2367 }
2368 .openerp .oe_fileupload .oe_attachments {
2369   margin-bottom: 4px;
2370   margin-right: 0px;
2371   font-size: 12px;
2372   border-radius: 2px;
2373   border: solid 1px rgba(124, 123, 173, 0.14);
2374 }
2375 .openerp .oe_fileupload .oe_attachments .oe_attachment {
2376   padding: 2px;
2377   padding-left: 4px;
2378   padding-right: 4px;
2379 }
2380 .openerp .oe_fileupload .oe_attachments .oe_attachment .oe_e {
2381   font-size: 23px;
2382   margin-top: -5px;
2383 }
2384 .openerp .oe_fileupload .oe_attachments .oe_attachment .oe_e:hover {
2385   text-decoration: none;
2386 }
2387 .openerp .oe_fileupload .oe_attachments .oe_attachment:nth-child(odd) {
2388   background: white;
2389 }
2390 .openerp .oe_fileupload .oe_attachments .oe_attachment:nth-child(even) {
2391   background: #f4f5fa;
2392 }
2393 .openerp .oe_form_field_many2one {
2394   display: inline-block;
2395 }
2396 .openerp .oe_form_field_many2one td:first-child {
2397   position: relative;
2398 }
2399 .openerp .oe_form_field_many2one span.oe_m2o_drop_down_button {
2400   position: absolute;
2401   top: 2px;
2402   right: 0px;
2403 }
2404 .openerp .oe_form_field_many2one .oe_m2o_cm_button {
2405   line-height: 14px;
2406   float: right;
2407   padding-left: 2px;
2408 }
2409 .openerp .oe_form_field_many2one input {
2410   padding-right: 13px;
2411 }
2412 .openerp.ui-autocomplete li.oe_m2o_dropdown_option a {
2413   font-style: italic;
2414   padding-left: 2em;
2415 }
2416 .openerp.ui-autocomplete li:not(.oe_m2o_dropdown_option) + li.oe_m2o_dropdown_option {
2417   margin-top: 10px;
2418 }
2419 .openerp ul.oe_form_status, .openerp ul.oe_form_status_clickable {
2420   display: inline-block;
2421   margin: 0;
2422   padding: 0 18px 0 0;
2423 }
2424 .openerp ul.oe_form_status li, .openerp ul.oe_form_status_clickable li {
2425   display: inline-block;
2426   list-style-type: none;
2427   margin: 0 -18px 0 0;
2428   padding: 0;
2429   background-color: #ededed;
2430   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
2431   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
2432   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
2433   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
2434   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
2435   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
2436 }
2437 .openerp ul.oe_form_status li:first-child > .label, .openerp ul.oe_form_status_clickable li:first-child > .label {
2438   border-left: 1px solid #cacaca;
2439   padding-left: 14px;
2440 }
2441 .openerp ul.oe_form_status li:last-child, .openerp ul.oe_form_status_clickable li:last-child {
2442   border-right: 1px solid #cacaca;
2443 }
2444 .openerp ul.oe_form_status li:last-child > .label, .openerp ul.oe_form_status_clickable li:last-child > .label {
2445   padding-right: 14px;
2446 }
2447 .openerp ul.oe_form_status li:last-child > .arrow, .openerp ul.oe_form_status_clickable li:last-child > .arrow {
2448   display: none;
2449 }
2450 .openerp ul.oe_form_status li > .label, .openerp ul.oe_form_status_clickable li > .label {
2451   color: #4c4c4c;
2452   text-shadow: 0 1px 1px #fcfcfc, 0 -1px 1px #dedede;
2453   padding: 7px;
2454   display: inline-block;
2455   padding-left: 24px;
2456   margin: 0;
2457   position: relative;
2458   line-height: normal;
2459   font-size: 100%;
2460   font-weight: normal;
2461 }
2462 .openerp ul.oe_form_status li > .arrow, .openerp ul.oe_form_status_clickable li > .arrow {
2463   width: 17px;
2464   height: 30px;
2465   display: inline-block;
2466   vertical-align: top;
2467   overflow: hidden;
2468   margin-left: -5px;
2469 }
2470 .openerp ul.oe_form_status li > .arrow span, .openerp ul.oe_form_status_clickable li > .arrow span {
2471   position: relative;
2472   width: 24px;
2473   height: 24px;
2474   display: inline-block;
2475   margin-left: -12px;
2476   margin-top: 3px;
2477   box-shadow: -1px 1px 2px rgba(255, 255, 255, 0.2), inset -1px 1px 1px rgba(0, 0, 0, 0.2);
2478   background-color: #dedede;
2479   background: -moz-linear-gradient(135deg, #dedede, #fcfcfc);
2480   background: -o-linear-gradient(135deg, #fcfcfc, #dedede);
2481   background: -webkit-gradient(linear, left top, right bottom, from(#fcfcfc), to(#dedede));
2482   background: -ms-linear-gradient(top, #fcfcfc, #dedede);
2483   -moz-border-radius: 3px;
2484   -webkit-border-radius: 3px;
2485   border-radius: 3px;
2486   -webkit-transform: rotate(45deg);
2487   -moz-transform: rotate(45deg);
2488   -ms-transform: rotate(45deg);
2489   -o-transform: rotate(45deg);
2490   transform: rotate(45deg);
2491 }
2492 .openerp ul.oe_form_status ul.oe_dropdown_menu, .openerp ul.oe_form_status_clickable ul.oe_dropdown_menu {
2493   display: none;
2494   padding: 0;
2495   min-width: 0;
2496 }
2497 .openerp ul.oe_form_status ul.oe_dropdown_menu.oe_opened, .openerp ul.oe_form_status_clickable ul.oe_dropdown_menu.oe_opened {
2498   display: block;
2499 }
2500 .openerp ul.oe_form_status ul.oe_dropdown_menu li, .openerp ul.oe_form_status_clickable ul.oe_dropdown_menu li {
2501   margin: 0;
2502   width: 100%;
2503 }
2504 .openerp ul.oe_form_status ul.oe_dropdown_menu li span.label, .openerp ul.oe_form_status_clickable ul.oe_dropdown_menu li span.label {
2505   padding-left: 14px;
2506 }
2507 .openerp ul.oe_form_status li.oe_active, .openerp ul.oe_form_status_clickable li.oe_active {
2508   background-color: #5382b9;
2509   background-image: -webkit-gradient(linear, left top, left bottom, from(#729fcf), to(#3465a4));
2510   background-image: -webkit-linear-gradient(top, #729fcf, #3465a4);
2511   background-image: -moz-linear-gradient(top, #729fcf, #3465a4);
2512   background-image: -ms-linear-gradient(top, #729fcf, #3465a4);
2513   background-image: -o-linear-gradient(top, #729fcf, #3465a4);
2514   background-image: linear-gradient(to bottom, #729fcf, #3465a4);
2515 }
2516 .openerp ul.oe_form_status li.oe_active > .arrow span, .openerp ul.oe_form_status_clickable li.oe_active > .arrow span {
2517   background-color: #3465a4;
2518   background: -moz-linear-gradient(135deg, #3465a4, #729fcf);
2519   background: -o-linear-gradient(135deg, #729fcf, #3465a4);
2520   background: -webkit-gradient(linear, left top, right bottom, from(#729fcf), to(#3465a4));
2521   background: -ms-linear-gradient(top, #729fcf, #3465a4);
2522 }
2523 .openerp ul.oe_form_status li.oe_active > .label, .openerp ul.oe_form_status_clickable li.oe_active > .label {
2524   color: white;
2525   text-shadow: 0 1px 1px #729fcf, 0 -1px 1px #3465a4;
2526 }
2527 .openerp ul.oe_form_status_clickable li {
2528   cursor: pointer;
2529 }
2530 .openerp ul.oe_form_status_clickable li:hover {
2531   background-color: #d9d9d9;
2532   background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#cacaca));
2533   background-image: -webkit-linear-gradient(top, #e8e8e8, #cacaca);
2534   background-image: -moz-linear-gradient(top, #e8e8e8, #cacaca);
2535   background-image: -ms-linear-gradient(top, #e8e8e8, #cacaca);
2536   background-image: -o-linear-gradient(top, #e8e8e8, #cacaca);
2537   background-image: linear-gradient(to bottom, #e8e8e8, #cacaca);
2538 }
2539 .openerp ul.oe_form_status_clickable li:hover > .label {
2540   text-shadow: 0 -1px 1px #fcfcfc, 0 1px 1px #dedede;
2541 }
2542 .openerp ul.oe_form_status_clickable li:hover > .arrow span {
2543   background-color: #d9d9d9;
2544   background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#cacaca));
2545   background-image: -webkit-linear-gradient(top, #e8e8e8, #cacaca);
2546   background-image: -moz-linear-gradient(top, #e8e8e8, #cacaca);
2547   background-image: -ms-linear-gradient(top, #e8e8e8, #cacaca);
2548   background-image: -o-linear-gradient(top, #e8e8e8, #cacaca);
2549   background-image: linear-gradient(to bottom, #e8e8e8, #cacaca);
2550 }
2551 .openerp ul.oe_form_status_clickable li > .label {
2552   color: #7c7bad;
2553 }
2554 .openerp ul.oe_form_status_clickable li.oe_active:hover {
2555   background-color: #3a699f;
2556   background-image: -webkit-gradient(linear, left top, left bottom, from(#4c85c2), to(#284d7d));
2557   background-image: -webkit-linear-gradient(top, #4c85c2, #284d7d);
2558   background-image: -moz-linear-gradient(top, #4c85c2, #284d7d);
2559   background-image: -ms-linear-gradient(top, #4c85c2, #284d7d);
2560   background-image: -o-linear-gradient(top, #4c85c2, #284d7d);
2561   background-image: linear-gradient(to bottom, #4c85c2, #284d7d);
2562 }
2563 .openerp ul.oe_form_status_clickable li.oe_active:hover > .label {
2564   text-shadow: 0 -1px 1px #729fcf, 0 1px 1px #3465a4;
2565 }
2566 .openerp ul.oe_form_status_clickable li.oe_active:hover > .arrow span {
2567   background-color: #284d7d;
2568   background: -moz-linear-gradient(135deg, #284d7d, #4c85c2);
2569   background: -o-linear-gradient(135deg, #4c85c2, #284d7d);
2570   background: -webkit-gradient(linear, left top, right bottom, from(#4c85c2), to(#284d7d));
2571   background: -ms-linear-gradient(top, #4c85c2, #284d7d);
2572 }
2573 .openerp .oe_form .oe_form_field_one2many > .oe_view_manager .oe_list_pager_single_page {
2574   display: none;
2575 }
2576 .openerp .oe_form_field_one2many > .oe_view_manager .oe_list_pager_single_page, .openerp .oe_form_field_many2many > .oe_view_manager .oe_list_pager_single_page {
2577   display: none !important;
2578 }
2579 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_view_list, .openerp .oe_form_field_many2many > .oe_view_manager .oe_view_manager_view_list {
2580   min-height: 132px;
2581 }
2582 .openerp .oe_form_field_one2many .oe_form_field_one2many_list_row_add, .openerp .oe_form_field_many2many .oe_form_field_one2many_list_row_add {
2583   font-weight: bold;
2584 }
2585 .openerp .oe_form_field_one2many .oe_list_content > thead, .openerp .oe_form_field_many2many .oe_list_content > thead {
2586   border-bottom: 1px;
2587 }
2588 .openerp .oe_form_field_one2many .oe_list_content > tbody tr:nth-child(odd), .openerp .oe_form_field_many2many .oe_list_content > tbody tr:nth-child(odd) {
2589   background: transparent;
2590 }
2591 .openerp .oe_form_field_one2many .oe_list .oe_list_edit_row_save, .openerp .oe_form_field_many2many .oe_list .oe_list_edit_row_save {
2592   background: url(/web/static/src/img/iconset-b-remove.png) 50% 50% no-repeat;
2593 }
2594 .openerp .oe_form_field_one2many .oe_list .oe_list_edit_row_save:before, .openerp .oe_form_field_many2many .oe_list .oe_list_edit_row_save:before {
2595   visibility: hidden;
2596 }
2597 .openerp .oe_form_field_one2many > .oe_view_manager .oe_header_row_top, .openerp .oe_form_field_many2many > .oe_view_manager .oe_header_row_top {
2598   display: none;
2599 }
2600 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_header2 td, .openerp .oe_form_field_many2many > .oe_view_manager .oe_view_manager_header2 td {
2601   padding: 0px 8px;
2602   line-height: 16px;
2603 }
2604 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_header2 td .oe_i, .openerp .oe_form_field_many2many > .oe_view_manager .oe_view_manager_header2 td .oe_i {
2605   font-size: 13px;
2606 }
2607 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_header2 td .oe_pager_group, .openerp .oe_form_field_many2many > .oe_view_manager .oe_view_manager_header2 td .oe_pager_group {
2608   height: auto;
2609   line-height: 16px;
2610 }
2611 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_header2 td .oe_pager_group li, .openerp .oe_form_field_many2many > .oe_view_manager .oe_view_manager_header2 td .oe_pager_group li {
2612   height: auto;
2613   line-height: 16px;
2614 }
2615 .openerp .oe_form_field_one2many .oe_list_buttons.oe_editing .oe_list_save, .openerp .oe_form_field_many2many .oe_list_buttons.oe_editing .oe_list_save {
2616   visibility: hidden;
2617 }
2618 .openerp .oe_form_editable .oe_list_editable .oe_list_content td.oe_required {
2619   background-color: #d2d2ff;
2620 }
2621 .openerp .oe_form_editable .oe_list_editable .oe_list_content td.oe_readonly {
2622   background-color: #eeeeee;
2623 }
2624 .openerp .oe_list_editable .oe_list_content td.oe_list_field_cell {
2625   padding: 4px 6px 3px;
2626 }
2627 .openerp .oe_list.oe_list_editable.oe_editing .oe_edition .oe_list_field_cell:not(.oe_readonly) {
2628   color: transparent;
2629   text-shadow: none;
2630 }
2631 .openerp .oe_list.oe_list_editable.oe_editing .oe_edition .oe_list_field_cell:not(.oe_readonly) * {
2632   visibility: hidden;
2633 }
2634 .openerp .oe_list.oe_list_editable.oe_editing .oe_m2o_drop_down_button {
2635   top: 5px;
2636 }
2637 .openerp .oe_list.oe_list_editable.oe_editing .oe_m2o_cm_button {
2638   line-height: 19px;
2639 }
2640 .openerp .oe_list.oe_list_editable.oe_editing .oe_input_icon {
2641   margin-top: 5px;
2642 }
2643 .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field {
2644   min-width: 0;
2645   max-width: none;
2646 }
2647 .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field input, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field textarea {
2648   height: 27px;
2649   -moz-border-radius: 0;
2650   -webkit-border-radius: 0;
2651   border-radius: 0;
2652   border: 1px solid #aaaaff;
2653   margin: 0;
2654 }
2655 .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field input, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field textarea, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field select {
2656   min-width: 0;
2657 }
2658 .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field.oe_form_field_float input, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field.oe_form_view_integer input {
2659   text-align: right;
2660   width: 100% !important;
2661 }
2662 .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field.oe_form_field_datetime input.oe_datepicker_master, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field.oe_form_field_date input.oe_datepicker_master {
2663   width: 100% !important;
2664 }
2665 .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field.oe_form_field_reference {
2666   display: table;
2667 }
2668 .openerp .oe_list_group_name {
2669   white-space: nowrap;
2670 }
2671 .openerp .oe_form .oe_form_field_many2many > .oe_list .oe_list_pager_single_page {
2672   display: none;
2673 }
2674 .openerp .oe_list_buttons .oe_alternative {
2675   visibility: hidden;
2676 }
2677 .openerp .oe_list_buttons .oe_list_save, .openerp .oe_list_buttons .oe_list_discard {
2678   display: none;
2679 }
2680 .openerp .oe_list_buttons.oe_editing .oe_list_add {
2681   display: none;
2682 }
2683 .openerp .oe_list_buttons.oe_editing .oe_list_save {
2684   display: inline-block;
2685 }
2686 .openerp .oe_list_buttons.oe_editing .oe_list_discard {
2687   display: inline;
2688 }
2689 .openerp .oe_list_buttons.oe_editing .oe_alternative {
2690   visibility: visible;
2691 }
2692 .openerp .oe_list.oe_cannot_edit .oe_list_header_handle, .openerp .oe_list.oe_cannot_edit .oe_list_field_handle {
2693   display: none !important;
2694   padding: 0 !important;
2695 }
2696 .openerp .oe_list.oe_cannot_delete .oe_list_record_delete {
2697   display: none !important;
2698 }
2699 .openerp .oe_list .oe_form .oe_form_nosheet {
2700   margin: 0;
2701   padding: 0;
2702   border: none;
2703 }
2704 .openerp .oe_list .oe_form .oe_form_field {
2705   width: auto;
2706   position: absolute;
2707   margin: 0 !important;
2708   padding: 0;
2709 }
2710 .openerp .oe_list .oe_form .oe_form_field_boolean input {
2711   margin: 1px 0 0 10px !important;
2712 }
2713 .openerp .oe_list .oe_list_content .oe_group_header {
2714   background-color: #ededed;
2715   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
2716   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
2717   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
2718   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
2719   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
2720   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
2721 }
2722 .openerp .oe_list_content {
2723   width: 100%;
2724 }
2725 .openerp .oe_list_content td:first-child:after, .openerp .oe_list_content th:first-child:after {
2726   border-width: 0;
2727 }
2728 .openerp .oe_list_content td.oe_number {
2729   text-align: right !important;
2730   max-width: 100px;
2731 }
2732 .openerp .oe_list_content td.oe_list_field_date, .openerp .oe_list_content th.oe_list_header_date {
2733   min-width: 6em;
2734 }
2735 .openerp .oe_list_content > thead {
2736   border-bottom: 2px solid #cacaca;
2737   background: #eeeeee;
2738   vertical-align: top;
2739 }
2740 .openerp .oe_list_content td, .openerp .oe_list_content th {
2741   padding: 3px 6px;
2742   line-height: 18px;
2743 }
2744 .openerp .oe_list_content th.oe_sortable, .openerp .oe_list_content th.oe_sortable div {
2745   cursor: pointer;
2746 }
2747 .openerp .oe_list_content th.oe_sortable div {
2748   position: relative;
2749 }
2750 .openerp .oe_list_content th.oe_sortable div:after {
2751   margin-right: 6px;
2752   content: "";
2753   margin-top: 7px;
2754   border-width: 0 4px 4px;
2755   border-style: solid;
2756   border-color: black transparent;
2757   visibility: hidden;
2758 }
2759 .openerp .oe_list_content th.sortup div:after {
2760   float: right;
2761   visibility: visible;
2762   filter: alpha(opacity=60);
2763   opacity: 0.6;
2764 }
2765 .openerp .oe_list_content .oe_list_header_many2many_tags {
2766   min-width: 70px;
2767 }
2768 .openerp .oe_list_content th.sortdown div:after {
2769   float: right;
2770   border-bottom: none;
2771   border-left: 4px solid transparent;
2772   border-right: 4px solid transparent;
2773   border-top: 4px solid black;
2774   visibility: visible;
2775   -moz-box-shadow: none;
2776   -webkit-box-shadow: none;
2777   box-shadow: none;
2778   filter: alpha(opacity=60);
2779   opacity: 0.6;
2780 }
2781 .openerp .oe_list_content > tbody {
2782   cursor: pointer;
2783 }
2784 .openerp .oe_list_content > tbody > tr {
2785   height: 27px;
2786   border-top: 1px solid #dddddd;
2787 }
2788 .openerp .oe_list_content > tbody > tr > td.oe_list_field_cell {
2789   padding: 3px 6px;
2790   white-space: pre-line;
2791 }
2792 .openerp .oe_list_content > tbody > tr > td > button, .openerp .oe_list_content > tbody > tr > th > button {
2793   border: none;
2794   background: transparent;
2795   padding: 0;
2796 }
2797 .openerp .oe_list_content > tbody > tr > td > button.btn_txt, .openerp .oe_list_content > tbody > tr > th > button.btn_txt {
2798   border: 1px solid rgba(0, 0, 0, 0.4);
2799   background: #e3e3e3;
2800   padding: 3px 12px;
2801 }
2802 .openerp .oe_list_content > tbody > tr > td.oe_list_checkbox:first-child, .openerp .oe_list_content > tbody > tr th.oe_list_checkbox:first-child {
2803   width: 17px;
2804 }
2805 .openerp .oe_list_content > tbody > tr > td.oe_list_checkbox:first-child:after, .openerp .oe_list_content > tbody > tr th.oe_list_checkbox:first-child:after {
2806   border-width: 0;
2807 }
2808 .openerp .oe_list_content > tbody > tr > td.oe_list_field_boolean input {
2809   filter: alpha(opacity=50);
2810   opacity: 0.5;
2811 }
2812 .openerp .oe_list_content > tbody > tr:nth-child(odd) {
2813   background-color: #f0f0fa;
2814   background-color: #efeff8;
2815   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
2816   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
2817   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
2818   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
2819   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
2820   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
2821 }
2822 .openerp .oe_list_content > tfoot {
2823   border-top: 2px solid #cacaca;
2824   border-bottom: 1px solid #cacaca;
2825   background: #eeeeee;
2826   font-weight: bold;
2827 }
2828 .openerp .oe_list_content .numeric {
2829   text-align: right;
2830   width: 82px;
2831 }
2832 .openerp .oe_list_content .numeric input {
2833   text-align: right;
2834 }
2835 .openerp .oe_list_content th.oe_list_header_handle {
2836   font-size: 1px;
2837   overflow: hidden;
2838   text-indent: -9001px;
2839 }
2840 .openerp .oe_list_content td.oe_list_field_handle {
2841   width: 1em;
2842   padding: 0 !important;
2843   cursor: ns-resize;
2844 }
2845 .openerp .oe_list_content td.oe_list_field_handle .oe_list_handle {
2846   font-size: 1px;
2847   letter-spacing: -1px;
2848   color: transparent;
2849   text-shadow: none;
2850   font-weight: normal;
2851   margin-right: 7px;
2852 }
2853 .openerp .oe_list_content td.oe_list_field_handle .oe_list_handle:before {
2854   font: 18px "entypoRegular";
2855   content: "}";
2856   color: #e0e0e0;
2857 }
2858 .openerp .oe_list_content .oe_list_field_progressbar progress {
2859   width: 100%;
2860 }
2861 .openerp .tree_header {
2862   background-color: #f0f0f0;
2863   border-bottom: 1px solid #cacaca;
2864   color: #4c4c4c;
2865   padding: 5px;
2866   height: 25px;
2867 }
2868 .openerp .tree_header button {
2869   float: right;
2870   height: 27px;
2871   margin-right: 5px;
2872 }
2873 .openerp .oe-treeview-table {
2874   width: 100%;
2875   background-color: white;
2876   border-spacing: 0;
2877   color: #4c4c4c;
2878 }
2879 .openerp .oe-treeview-table th {
2880   padding: 10px;
2881   font-weight: bold;
2882   background-color: #f0f0f0;
2883   border-bottom: 2px solid #cacaca;
2884 }
2885 .openerp .oe-treeview-table td {
2886   cursor: pointer;
2887   vertical-align: middle;
2888   text-align: left;
2889   vertical-align: middle;
2890   height: 20px;
2891   padding-left: 4px;
2892   padding-right: 4px;
2893   border-right: 1px solid #e7e7e7;
2894 }
2895 .openerp .oe-treeview-table td.oe_number {
2896   text-align: right !important;
2897 }
2898 .openerp .oe-treeview-table tr {
2899   border-bottom: 1px solid #d6d6d6;
2900 }
2901 .openerp .oe-treeview-table tr:hover {
2902   background-color: #e7e7e7;
2903 }
2904 .openerp .oe-treeview-table span {
2905   font-size: 90%;
2906   font-weight: normal;
2907   white-space: nowrap;
2908   display: block;
2909 }
2910 .openerp .oe-treeview-table .treeview-tr.oe-treeview-first {
2911   background: transparent url(/web/static/src/img/expand.gif) 0 50% no-repeat;
2912 }
2913 .openerp .oe-treeview-table .oe_open .treeview-tr.oe-treeview-first {
2914   background-image: url(/web/static/src/img/collapse.gif);
2915 }
2916 .openerp .oe-treeview-table .treeview-tr.oe-treeview-first span, .openerp .oe-treeview-table .treeview-td.oe-treeview-first span {
2917   margin-left: 16px;
2918 }
2919 .openerp .oe_layout_debugging .oe_form_group {
2920   outline: 2px dashed green;
2921 }
2922 .openerp .oe_layout_debugging .oe_form_group_cell {
2923   outline: 1px solid blue;
2924 }
2925 .openerp .oe_layout_debugging .oe_form_group:hover, .openerp .oe_layout_debugging .oe_form_group_cell:hover {
2926   outline-color: red;
2927 }
2928 .openerp .oe_layout_debugging .oe_form_group_row_incomplete > td:last-child:after {
2929   content: "[Incomplete Row]";
2930   background: red;
2931   padding: 2px;
2932   font-weight: bold;
2933   color: white;
2934   float: right;
2935 }
2936 .openerp .oe_layout_debugging .oe_form_group_row_incomplete.oe_form_group_row_newline > td:last-child:after {
2937   content: "[newline]";
2938 }
2939 .openerp .oe_debug_view {
2940   float: left;
2941 }
2942 .openerp .oe_debug_view_log {
2943   font-size: 95%;
2944   line-height: 1.2em;
2945 }
2946 .openerp .navbar {
2947   min-height: 32px;
2948   margin-bottom: 0px;
2949   border: none;
2950   z-index: 1;
2951   position: static;
2952   background-color: #414141;
2953   background-color: #454343;
2954   background-image: -webkit-gradient(linear, left top, left bottom, from(#646060), to(#262626));
2955   background-image: -webkit-linear-gradient(top, #646060, #262626);
2956   background-image: -moz-linear-gradient(top, #646060, #262626);
2957   background-image: -ms-linear-gradient(top, #646060, #262626);
2958   background-image: -o-linear-gradient(top, #646060, #262626);
2959   background-image: linear-gradient(to bottom, #646060, #262626);
2960 }
2961 .openerp .navbar-default .navbar-nav li a:hover, .openerp .navbar-default .navbar-nav li a:focus {
2962   background: rgba(0, 0, 0, 0.3);
2963 }
2964 .openerp .navbar-default .navbar-nav .open > a, .openerp .navbar-default .navbar-nav a:hover, .openerp .navbar-default .navbar-nav a:focus {
2965   background: rgba(0, 0, 0, 0.3) !important;
2966 }
2967 .openerp .navbar-default .navbar-nav .dropdown > a .caret {
2968   border-top-color: #777777 !important;
2969   border-bottom-color: #777777 !important;
2970 }
2971 .openerp .navbar-nav li a {
2972   padding: 4px 32px 4px 12px;
2973 }
2974 .openerp .oe_navbar .dropdown-menu {
2975   font-size: 13px;
2976   padding: 4px 0;
2977   background: #333333 !important;
2978   background: rgba(37, 37, 37, 0.9) !important;
2979   border-color: #999999;
2980   border-color: rgba(0, 0, 0, 0.2);
2981   background-color: #414141;
2982   text-shadow: none;
2983   background-color: #454343;
2984   background-image: -webkit-gradient(linear, left top, left bottom, from(#646060), to(#262626));
2985   background-image: -webkit-linear-gradient(top, #646060, #262626);
2986   background-image: -moz-linear-gradient(top, #646060, #262626);
2987   background-image: -ms-linear-gradient(top, #646060, #262626);
2988   background-image: -o-linear-gradient(top, #646060, #262626);
2989   background-image: linear-gradient(to bottom, #646060, #262626);
2990   -moz-border-radius: 3px;
2991   -webkit-border-radius: 3px;
2992   border-radius: 3px;
2993 }
2994 .openerp .oe_navbar .dropdown-menu li a, .openerp .oe_navbar .dropdown-menu li a:hover, .openerp .oe_navbar .dropdown-menu li a:focus {
2995   color: #eeeeee;
2996 }
2997 .openerp .oe_view_manager_new .oe_form_nosheet {
2998   margin-top: 8px;
2999 }
3000 .openerp .oe_view_manager_new .oe_form_nosheet .oe_form_label {
3001   font-weight: normal;
3002 }
3003 .openerp .nav li > a {
3004   padding: 3px 4px 2px 18px;
3005   color: #4c4c4c;
3006 }
3007 .openerp .nav nav-pills.nav-stacked > li > ul {
3008   padding-left: 16px;
3009 }
3010 .openerp .nav-pills > li.active > a, .openerp a.list-group-item.active > a {
3011   background-color: #7c7bad;
3012   color: white;
3013   border-radius: 0;
3014 }
3015 .openerp .nav-pills > li.active a:hover, .openerp .nav-pills > li.active a:focus, .openerp a.list-group-item.active a:hover, .openerp a.list-group-item.active a:focus {
3016   background-color: #7c7bad;
3017 }
3018 .openerp .nav-pills > li.active .badge, .openerp a.list-group-item.active .badge {
3019   background-color: white;
3020   color: #7c7bad;
3021   text-shadow: none;
3022 }
3023 .openerp .badge {
3024   font-weight: normal;
3025   font-size: 11px;
3026   background-color: #7c7bad;
3027 }
3028 .openerp button, .openerp body {
3029   line-height: normal;
3030 }
3031 .openerp h1, .openerp h2 {
3032   font-weight: bold;
3033 }
3034 .openerp h3 {
3035   font-size: 1.17em;
3036   font-weight: bold;
3037 }
3038 .openerp p {
3039   display: block;
3040   -webkit-margin-before: 1em;
3041   -webkit-margin-after: 1em;
3042   -webkit-margin-start: 0px;
3043   -webkit-margin-end: 0px;
3044 }
3045 .openerp pre {
3046   background-color: white;
3047   border: none;
3048   padding: 10px 0 3px 0;
3049 }
3050 .openerp h5 {
3051   font-weight: bold;
3052   font-size: smaller;
3053 }
3054 .openerp .oe_form .oe_subtype label, .openerp .oe_subtype label {
3055   font-weight: normal;
3056 }
3057 .openerp .oe_msg_subtype_check {
3058   margin: 3px 3px 0 !important;
3059 }
3060
3061 .jqstooltip {
3062   height: auto !important;
3063   width: auto !important;
3064   padding: 0;
3065 }
3066
3067 @-moz-document url-prefix() {
3068   .openerp .oe_searchview .oe_searchview_search {
3069     top: -1px;
3070   }
3071   .openerp .oe_form_field_many2one .oe_m2o_cm_button {
3072     line-height: 18px;
3073   }
3074   .openerp .oe_webclient .oe_star_on, .openerp .oe_webclient .oe_star_off {
3075     top: 0px;
3076   }
3077 }
3078
3079 .kitten-mode-activated {
3080   background-size: cover;
3081   background-attachment: fixed;
3082 }
3083 .kitten-mode-activated > * {
3084   opacity: 0.7;
3085 }
3086
3087 .loading-kitten {
3088   -moz-border-radius: 15px;
3089   -webkit-border-radius: 15px;
3090   border-radius: 15px;
3091   -moz-box-shadow: 0 0 5px 5px #999999;
3092   -webkit-box-shadow: 0 0 5px 5px #999999;
3093   box-shadow: 0 0 5px 5px #999999;
3094 }
3095
3096 div.ui-widget-overlay {
3097   background: black;
3098   filter: alpha(opacity=30);
3099   opacity: 0.3;
3100 }
3101
3102 .ui-widget {
3103   font-family: "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
3104   color: #4c4c4c;
3105   font-size: 13px;
3106 }
3107
3108 .ui-menu {
3109   padding: 2px 0;
3110   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
3111   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
3112   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
3113   margin-top: 4px;
3114   border: 1px solid #afafb6;
3115 }
3116 .ui-menu .ui-menu-item {
3117   width: 100%;
3118   padding: 0;
3119 }
3120 .ui-menu .ui-menu-item a {
3121   padding: 1px 16px;
3122 }
3123 .ui-menu .ui-menu-item a.ui-corner-all {
3124   -moz-border-radius: 0;
3125   -webkit-border-radius: 0;
3126   border-radius: 0;
3127 }
3128 .ui-menu .ui-menu-item a.ui-state-active {
3129   background: #f0f0fa;
3130 }
3131 .ui-menu .ui-menu-item a.ui-state-hover, .ui-menu .ui-menu-item a.ui-state-active {
3132   background: #7c7bad;
3133 }
3134
3135 .ui-corner-all {
3136   -moz-border-radius: 3px;
3137   -webkit-border-radius: 3px;
3138   border-radius: 3px;
3139 }
3140
3141 .openerp .db_option_table td {
3142   padding-bottom: 10px !important;
3143 }
3144
3145 body.oe_single_form {
3146   background: #eeeeee url(/web/static/src/img/form_sheetbg.png);
3147   height: 100%;
3148 }
3149 body.oe_single_form .oe_single_form_logo {
3150   padding: 10px;
3151   text-align: center;
3152   margin-bottom: 10px;
3153 }
3154 body.oe_single_form .oe_single_form_footer {
3155   position: absolute;
3156   bottom: -30px;
3157   right: 0px;
3158   width: 100%;
3159   text-align: center;
3160 }
3161 body.oe_single_form .oe_single_form_container {
3162   padding: 10px;
3163   position: absolute;
3164   left: 50%;
3165   top: 50%;
3166   width: 400px;
3167   /* Set margins to offset 50% of the w/h */
3168   margin-top: -200px;
3169   margin-left: -200px;
3170 }
3171
3172 .openerp_ie .placeholder {
3173   color: #afafb6 !important;
3174   font-style: italic !important;
3175 }
3176 .openerp_ie .oe_form_binary_file {
3177   width: 80px;
3178 }
3179 .openerp_ie .oe_form_field_boolean input {
3180   background: white;
3181 }
3182 .openerp_ie .db_option_table .oe_form_field_selection {
3183   width: auto;
3184 }
3185 .openerp_ie input[type='checkbox'] {
3186   border: none;
3187   background: none;
3188   box-shadow: none;
3189 }
3190 .openerp_ie .oe_logo img {
3191   border: none;
3192 }
3193 .openerp_ie .oe_header_row button.oe_highlight {
3194   padding-top: 0;
3195   padding-bottom: 0;
3196 }
3197 .openerp_ie .oe_view_manager_view_kanban {
3198   display: table-cell;
3199 }
3200 .openerp_ie .oe_view_manager_buttons button.oe_write_full {
3201   padding-top: 0;
3202   padding-bottom: 0;
3203 }
3204 .openerp_ie .oe_view_manager_buttons button.oe_highlight {
3205   padding-top: 0;
3206   padding-bottom: 0;
3207 }
3208 .openerp_ie .oe_view_manager_buttons button .oe_form_button_edit {
3209   padding-top: 0;
3210   padding-bottom: 0;
3211 }
3212 .openerp_ie .oe_view_manager_buttons button .oe_form_button_create {
3213   padding-top: 0;
3214   padding-bottom: 0;
3215 }
3216 .openerp_ie .oe_kanban_image {
3217   border: none;
3218 }
3219 .openerp_ie .oe_msg_icon {
3220   border: none;
3221 }
3222 .openerp_ie .oe_form header ul {
3223   height: 29px;
3224 }
3225 .openerp_ie .oe_attach {
3226   filter: none;
3227 }
3228 .openerp_ie .oe_link {
3229   filter: none;
3230 }
3231 .openerp_ie .oe_kanban_show_more {
3232   clear: both;
3233   text-align: center;
3234 }
3235 .openerp_ie.oe_kanban_grouped .oe_kanban_show_more .oe_button {
3236   width: 100%;
3237   padding: 3px 12px;
3238 }
3239 .openerp_ie .oe_form_buttons button {
3240   padding-top: 0;
3241   padding-bottom: 0;
3242 }
3243 .openerp_ie .oe_sidebar button {
3244   padding-top: 0;
3245   padding-bottom: 0;
3246 }
3247 .openerp_ie img {
3248   border: none;
3249 }
3250 .openerp_ie .oe_dropdown_arrow {
3251   line-height: 1.7em;
3252 }
3253 .openerp_ie .oe_form_buttons button, .openerp_ie .oe_view_manager_buttons button {
3254   line-height: 1.7em;
3255 }
3256 .openerp_ie .oe_form_buttons .oe_highlight, .openerp_ie .oe_view_manager_buttons .oe_highlight {
3257   line-height: 1.7em;
3258 }
3259 .openerp_ie .oe_topbar {
3260   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#646060', endColorstr='#262626');
3261 }
3262 .openerp_ie .ui-state-error, .openerp_ie .ui-widget-content .ui-state-error, .openerp_ie .ui-widget-header .ui-state-error {
3263   filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3264 }
3265 .openerp_ie .oe_popup_form {
3266   width: 99% !important;
3267 }
3268 .openerp_ie .oe_form_label {
3269   white-space: normal !important;
3270 }
3271 .openerp_ie ul.oe_form_status li, .openerp_ie ul.oe_form_status_clickable li {
3272   display: inline-block;
3273   clear: both;
3274 }
3275 .openerp_ie ul.oe_form_status li:last-child, .openerp_ie ul.oe_form_status_clickable li:last-child {
3276   overflow: hidden;
3277   border-right: 1px solid #cacaca;
3278 }
3279 .openerp_ie ul.oe_form_status li:last-child > .label, .openerp_ie ul.oe_form_status_clickable li:last-child > .label {
3280   padding-right: 14px;
3281   border-right: none;
3282 }
3283 .openerp_ie ul.oe_form_status li:last-child > .arrow, .openerp_ie ul.oe_form_status_clickable li:last-child > .arrow {
3284   display: inline-block;
3285   opacity: 0;
3286   filter: alpha(opacity=0);
3287   border: none;
3288   width: 0;
3289   border-right: none;
3290 }
3291 .openerp_ie ul.oe_form_status li > .label, .openerp_ie ul.oe_form_status_clickable li > .label {
3292   border-bottom: 1px solid #cacaca;
3293   background: transparent;
3294 }
3295 .openerp_ie ul.oe_form_status li > .arrow span, .openerp_ie ul.oe_form_status_clickable li > .arrow span {
3296   background-color: #eeeeee !important;
3297 }
3298 .openerp_ie ul.oe_form_status li.oe_active > .label, .openerp_ie ul.oe_form_status_clickable li.oe_active > .label {
3299   border-bottom: 1px solid #729fcf;
3300 }
3301 .openerp_ie ul.oe_form_status li.oe_active > .arrow span, .openerp_ie ul.oe_form_status_clickable li.oe_active > .arrow span {
3302   background-color: #729fcf !important;
3303 }
3304 }
3305 .openerp_ie .oe_webclient {
3306   height: auto !important;
3307
3308 @media print {
3309   .openerp {
3310     text-shadow: none;
3311   }
3312   .openerp .oe_header_row, .openerp ul.oe_header, .openerp div.oe_mail_thread_action, .openerp .oe_mail_recthread_actions, .openerp .oe_button_box, .openerp .oe_form button, .openerp button.oe_invite, .openerp .oe_form header, .openerp .openerp .oe_notebook > li.ui-state-default, .openerp .oe_topbar, .openerp .oe_leftbar, .openerp .oe_loading {
3313     display: none !important;
3314   }
3315   .openerp .oe_list_content button, .openerp .oe_list_content input[type=checkbox] {
3316     visibility: hidden;
3317   }
3318   .openerp .tree_header button, .openerp .oe_mail .oe_mail_thread_msg .oe_mail_unread, .openerp .oe_mail_fetch_more, .openerp .oe_m2o_drop_down_button img, .openerp .oe_form_field_one2many_list_row_add {
3319     visibility: hidden;
3320   }
3321   .openerp a.oe_m2o_cm_button, .openerp a.oe_e {
3322     visibility: hidden;
3323   }
3324   .openerp .oe_form .oe_form_field_date img, .openerp .oe_form .oe_form_field_datetime img {
3325     visibility: hidden;
3326   }
3327   .openerp .oe_notebook > li.ui-tabs-selected {
3328     display: block;
3329   }
3330   .openerp .oe_application .oe_form_sheet, .openerp .oe_application .oe_form_sheetbg {
3331     border: 0px !important;
3332     box-shadow: 0px 0px 0px;
3333   }
3334   .openerp .oe_application .oe_form_sheet .oe_list, .openerp .oe_application .oe_form_sheetbg .oe_list {
3335     overflow-x: visible;
3336   }
3337   .openerp .oe_view_manager_current > .oe_view_manager_header {
3338     border: 0px !important;
3339     box-shadow: 0px 0px 0px;
3340   }
3341   .openerp .text-core .text-wrap .text-arrow {
3342     background: none;
3343   }
3344   .openerp .openerp div.oe_mail_wall {
3345     overflow: hidden !important;
3346   }
3347 }
3348 .tooltip {
3349   padding: 0;
3350   margin: 0;
3351   font-family: "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
3352   color: #4c4c4c;
3353   font-size: 12px;
3354   background: white;
3355   text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
3356   background-color: transparent;
3357 }
3358 .tooltip .tooltip-inner {
3359   text-align: left !important;
3360   max-width: 350px;
3361 }
3362 .tooltip .tooltip-inner .oe_tooltip_string {
3363   color: #ffdd55;
3364   font-weight: bold;
3365   font-size: 13px;
3366 }
3367 .tooltip .tooltip-inner .oe_tooltip_help {
3368   white-space: pre-wrap;
3369 }
3370 .tooltip .tooltip-inner .oe_tooltip_technical {
3371   padding: 0 0 4px 0;
3372   margin: 5px 0 0 15px;
3373 }
3374 .tooltip .tooltip-inner .oe_tooltip_technical li {
3375   list-style: circle;
3376 }
3377 .tooltip .tooltip-inner .oe_tooltip_technical_title {
3378   font-weight: bold;
3379 }
3380 .tooltip .tooltip-inner .oe_tooltip_close {
3381   margin: -5px 0 0 2px;
3382   cursor: default;
3383   float: right;
3384   color: white;
3385 }
3386 .tooltip .tooltip-inner .oe_tooltip_close:hover {
3387   color: #999999;
3388   cursor: pointer;
3389 }
3390 .tooltip .tooltip-inner .oe_tooltip_message {
3391   max-width: 310px;
3392 }
3393
3394 .ui-icon {
3395   width: 18px;
3396   height: 18px;
3397 }
3398
3399 .modal .modal-header button.close {
3400   border: none;
3401   background: none;
3402   padding: 1px;
3403   height: 18px;
3404   font-size: 20px;
3405 }
3406 .modal .modal-footer {
3407   text-align: left;
3408 }
3409 .modal .oe_button {
3410   margin: 0 4px 0 0;
3411 }
3412 .modal .oe_act_window.modal-body {
3413   padding: 0;
3414 }
3415
3416 .ui-datepicker {
3417   z-index: 1500 !important;
3418 }
3419
3420 input[type="radio"], input[type="checkbox"] {
3421   margin-right: 4px;
3422   margin-left: 4px;
3423 }
3424
3425 .blockUI.blockOverlay {
3426   background-color: black;
3427   opacity: 0.6;
3428 }