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