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