[ADD] Add class on oe_form when no <sheet> is present
[odoo/odoo.git] / addons / web / static / src / css / base.css
1 @charset "utf-8";
2 @font-face {
3   font-family: "mnmliconsRegular";
4   src: url("/web/static/src/font/mnmliconsv21-webfont.eot") format("eot");
5   src: url("/web/static/src/font/mnmliconsv21-webfont.woff") format("woff");
6   src: url("/web/static/src/font/mnmliconsv21-webfont.ttf") format("truetype");
7   src: url("/web/static/src/font/mnmliconsv21-webfont.svg") format("svg") active;
8   font-weight: normal;
9   font-style: normal;
10 }
11
12 @font-face {
13   font-family: "EntypoRegular";
14   src: url("/web/static/src/font/entypo-webfont.eot") format("eot");
15   src: url("/web/static/src/font/entypo-webfont.eot?#iefix") format("embedded-opentype");
16   src: url("/web/static/src/font/entypo-webfont.woff") format("woff");
17   src: url("/web/static/src/font/entypo-webfont.ttf") format("truetype");
18   src: url("/web/static/src/font/entypo-webfont.svg") format("svg") active;
19   font-weight: normal;
20   font-style: normal;
21 }
22
23 .openerp.openerp-web-client-container {
24   height: 100%;
25   position: relative;
26 }
27
28 .openerp {
29   padding: 0;
30   margin: 0;
31   font-family: "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
32   color: #4c4c4c;
33   font-size: 13px;
34   background: white;
35   /* http://www.quirksmode.org/dom/inputfile.html
36    * http://stackoverflow.com/questions/2855589/replace-input-type-file-by-an-image
37    */
38 }
39 .openerp a {
40   text-decoration: none;
41 }
42 .openerp table {
43   padding: 0;
44   font-size: 13px;
45   border-collapse: collapse;
46 }
47 .openerp thead {
48   font-weight: bold;
49   background-color: #f0f0f0;
50 }
51 .openerp thead th {
52   border-right: 1px dotted #afafb6;
53 }
54 .openerp thead th:last-child {
55   border-right: none;
56 }
57 .openerp th, .openerp td {
58   padding: 0;
59   text-align: left;
60 }
61 .openerp th {
62   font-weight: bold;
63   vertical-align: middle;
64 }
65 .openerp td {
66   vertical-align: top;
67 }
68 .openerp .zebra tbody tr:nth-child(odd) td {
69   background-color: #f0f0fa;
70   background-color: #f0f0fa;
71   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
72   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
73   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
74   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
75   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
76   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
77 }
78 .openerp .zebra tbody tr:hover td {
79   background-color: #eeeeee;
80   background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dedede));
81   background-image: -webkit-linear-gradient(top, #eeeeee, #dedede);
82   background-image: -moz-linear-gradient(top, #eeeeee, #dedede);
83   background-image: -ms-linear-gradient(top, #eeeeee, #dedede);
84   background-image: -o-linear-gradient(top, #eeeeee, #dedede);
85   background-image: linear-gradient(to bottom, #eeeeee, #dedede);
86 }
87 .openerp .numeric {
88   text-align: right;
89   width: 82px;
90 }
91 .openerp .numeric input {
92   text-align: right;
93 }
94 .openerp ul, .openerp li, .openerp ol {
95   margin: 0;
96   padding: 0;
97 }
98 .openerp li {
99   list-style-type: none;
100 }
101 .openerp input, .openerp textarea {
102   border: 1px solid #cccccc;
103   -moz-border-radius: 3px;
104   -webkit-border-radius: 3px;
105   border-radius: 3px;
106 }
107 .openerp .oe_i {
108   font-family: "mnmliconsRegular" !important;
109   font-size: 21px;
110   font-weight: 300 !important;
111 }
112 .openerp .oe_e {
113   font-family: "entypoRegular" !important;
114   font-size: 34px;
115   font-weight: 300 !important;
116 }
117 .openerp .oe_left {
118   float: left;
119   margin-right: 8px;
120 }
121 .openerp .oe_right {
122   float: right;
123   margin-left: 8px;
124 }
125 .openerp .oe_text_right {
126   text-align: right;
127 }
128 .openerp .oe_clear {
129   clear: both;
130 }
131 .openerp .oe_wait {
132   cursor: wait;
133 }
134 .openerp .oe_fade {
135   color: #888888;
136 }
137 .openerp .oe_bold {
138   font-weight: bold;
139 }
140 .openerp a.button:link, .openerp a.button:visited, .openerp button, .openerp input[type='submit'] {
141   display: inline-block;
142   border: 1px solid #ababab;
143   color: #404040;
144   margin: 0;
145   padding: 3px 12px;
146   font-size: 13px;
147   text-align: center;
148   background-color: #efefef;
149   background-image: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#d8d8d8));
150   background-image: -webkit-linear-gradient(top, #efefef, #d8d8d8);
151   background-image: -moz-linear-gradient(top, #efefef, #d8d8d8);
152   background-image: -ms-linear-gradient(top, #efefef, #d8d8d8);
153   background-image: -o-linear-gradient(top, #efefef, #d8d8d8);
154   background-image: linear-gradient(to bottom, #efefef, #d8d8d8);
155   -moz-border-radius: 3px;
156   -webkit-border-radius: 3px;
157   border-radius: 3px;
158   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
159   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
160   -box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
161   text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
162   -webkit-font-smoothing: antialiased;
163   outline: none;
164 }
165 .openerp a.button:hover, .openerp button:hover, .openerp input[type='submit']:hover {
166   background-color: #f6f6f6;
167   background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e3e3e3));
168   background-image: -webkit-linear-gradient(top, #f6f6f6, #e3e3e3);
169   background-image: -moz-linear-gradient(top, #f6f6f6, #e3e3e3);
170   background-image: -ms-linear-gradient(top, #f6f6f6, #e3e3e3);
171   background-image: -o-linear-gradient(top, #f6f6f6, #e3e3e3);
172   background-image: linear-gradient(to bottom, #f6f6f6, #e3e3e3);
173   cursor: pointer;
174 }
175 .openerp a.button:focus, .openerp button:focus, .openerp input[type='submit']:focus {
176   border: 1px solid #80bfff;
177   background-color: #f6f6f6;
178   background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e3e3e3));
179   background-image: -webkit-linear-gradient(top, #f6f6f6, #e3e3e3);
180   background-image: -moz-linear-gradient(top, #f6f6f6, #e3e3e3);
181   background-image: -ms-linear-gradient(top, #f6f6f6, #e3e3e3);
182   background-image: -o-linear-gradient(top, #f6f6f6, #e3e3e3);
183   background-image: linear-gradient(to bottom, #f6f6f6, #e3e3e3);
184   -moz-box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
185   -webkit-box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
186   -box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
187 }
188 .openerp a.button:active, .openerp a.button.active, .openerp button:active, .openerp button.active, .openerp input[type='submit']:active, .openerp input[type='submit'].active {
189   background: #e3e3e3;
190   background: -moz-linear-gradient(top, #e3e3e3, #f6f6f6) #1b468f;
191   background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#f6f6f6)) #1b468f;
192   background: linear-gradient(top, #e3e3e3, #f6f6f6) #1b468f;
193   -moz-box-shadow: none;
194   -webkit-box-shadow: none;
195   -box-shadow: none;
196 }
197 .openerp a.button.disabled, .openerp button:disabled, .openerp input[type='submit']:disabled {
198   background: #efefef !important;
199   border: 1px solid #d1d1d1 !important;
200   -moz-box-shadow: none !important;
201   -webkit-box-shadow: none !important;
202   -box-shadow: none !important;
203   color: #aaaaaa !important;
204   cursor: default;
205   text-shadow: 0 1px 1px white !important;
206 }
207 .openerp button.primary {
208   color: white;
209   background-color: #dc5f59;
210   background-image: -webkit-gradient(linear, left top, left bottom, from(#dc5f59), to(#b33630));
211   background-image: -webkit-linear-gradient(top, #dc5f59, #b33630);
212   background-image: -moz-linear-gradient(top, #dc5f59, #b33630);
213   background-image: -ms-linear-gradient(top, #dc5f59, #b33630);
214   background-image: -o-linear-gradient(top, #dc5f59, #b33630);
215   background-image: linear-gradient(to bottom, #dc5f59, #b33630);
216   -moz-box-shadow: none;
217   -webkit-box-shadow: none;
218   -box-shadow: none;
219 }
220 .openerp button.primary:hover {
221   background-color: #df6b66;
222   background-image: -webkit-gradient(linear, left top, left bottom, from(#df6b66), to(#bf3a33));
223   background-image: -webkit-linear-gradient(top, #df6b66, #bf3a33);
224   background-image: -moz-linear-gradient(top, #df6b66, #bf3a33);
225   background-image: -ms-linear-gradient(top, #df6b66, #bf3a33);
226   background-image: -o-linear-gradient(top, #df6b66, #bf3a33);
227   background-image: linear-gradient(to bottom, #df6b66, #bf3a33);
228   -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
229   -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
230   -box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
231 }
232 .openerp button.primary:active {
233   background-color: #b33630;
234   background-image: -webkit-gradient(linear, left top, left bottom, from(#b33630), to(#dc5f59));
235   background-image: -webkit-linear-gradient(top, #b33630, #dc5f59);
236   background-image: -moz-linear-gradient(top, #b33630, #dc5f59);
237   background-image: -ms-linear-gradient(top, #b33630, #dc5f59);
238   background-image: -o-linear-gradient(top, #b33630, #dc5f59);
239   background-image: linear-gradient(to bottom, #b33630, #dc5f59);
240   -moz-box-shadow: none;
241   -webkit-box-shadow: none;
242   -box-shadow: none;
243 }
244 .openerp button.following {
245   color: white;
246   width: 120px;
247   background-color: #8a89ba;
248   background-image: -webkit-gradient(linear, left top, left bottom, from(#8a89ba), to(#807fb4));
249   background-image: -webkit-linear-gradient(top, #8a89ba, #807fb4);
250   background-image: -moz-linear-gradient(top, #8a89ba, #807fb4);
251   background-image: -ms-linear-gradient(top, #8a89ba, #807fb4);
252   background-image: -o-linear-gradient(top, #8a89ba, #807fb4);
253   background-image: linear-gradient(to bottom, #8a89ba, #807fb4);
254 }
255 .openerp button.unfollow {
256   display: none;
257   color: white;
258   width: 120px;
259   background-color: #dc5f59;
260   background-image: -webkit-gradient(linear, left top, left bottom, from(#dc5f59), to(#b33630));
261   background-image: -webkit-linear-gradient(top, #dc5f59, #b33630);
262   background-image: -moz-linear-gradient(top, #dc5f59, #b33630);
263   background-image: -ms-linear-gradient(top, #dc5f59, #b33630);
264   background-image: -o-linear-gradient(top, #dc5f59, #b33630);
265   background-image: linear-gradient(to bottom, #dc5f59, #b33630);
266 }
267 .openerp .oe_loading {
268   display: none;
269   z-index: 100;
270   position: fixed;
271   top: 0;
272   right: 50%;
273   padding: 4px 12px;
274   background: #a61300;
275   color: white;
276   text-align: center;
277   border: 1px solid #990000;
278   border-top: none;
279   -moz-border-radius-bottomright: 8px;
280   -moz-border-radius-bottomleft: 8px;
281   border-bottom-right-radius: 8px;
282   border-bottom-left-radius: 8px;
283 }
284 .openerp .oe_notification {
285   z-index: 1050;
286 }
287 .openerp .oe_login {
288   background: url("/web/static/src/img/pattern.png") repeat;
289   text-align: center;
290   font-size: 14px;
291   height: 100%;
292 }
293 .openerp .oe_login li {
294   list-style-type: none;
295   padding-bottom: 4px;
296 }
297 .openerp .oe_login button {
298   float: right;
299   display: inline-block;
300   cursor: pointer;
301   padding: 6px 16px;
302   border: 1px solid #222222;
303   color: white;
304   margin: 0;
305   background-color: #b92020;
306   background-image: -webkit-gradient(linear, left top, left bottom, from(#b92020), to(#600606));
307   background-image: -webkit-linear-gradient(top, #b92020, #600606);
308   background-image: -moz-linear-gradient(top, #b92020, #600606);
309   background-image: -ms-linear-gradient(top, #b92020, #600606);
310   background-image: -o-linear-gradient(top, #b92020, #600606);
311   background-image: linear-gradient(to bottom, #b92020, #600606);
312   -moz-border-radius: 4px;
313   -webkit-border-radius: 4px;
314   border-radius: 4px;
315   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
316   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
317   -box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
318 }
319 .openerp .oe_login input, .openerp .oe_login select {
320   width: 252px;
321   font-family: "Lucida Grande", Helvetica, Verdana, Arial;
322   border: 1px solid #999999;
323   background: whitesmoke;
324   -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
325   -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
326   -box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
327   -moz-border-radius: 3px;
328   -webkit-border-radius: 3px;
329   border-radius: 3px;
330 }
331 .openerp .oe_login input {
332   margin-bottom: 9px;
333   padding: 5px 6px;
334 }
335 .openerp .oe_login select {
336   padding: 1px;
337 }
338 .openerp .oe_login .oe_login_dbpane {
339   position: fixed;
340   top: 0;
341   right: 8px;
342   padding: 5px 10px;
343   color: #eeeeee;
344   border: solid 1px #333333;
345   background: #1e1e1e;
346   background: rgba(30, 30, 30, 0.94);
347   -moz-border-radius: 0 0 8px 8px;
348   -webkit-border-radius: 0 0 8px 8px;
349   border-radius: 0 0 8px 8px;
350 }
351 .openerp .oe_login .oe_login_dbpane input {
352   padding: 2px 4px;
353   margin: 4px 0;
354 }
355 .openerp .oe_login .oe_login_bottom {
356   position: absolute;
357   top: 50%;
358   left: 0;
359   right: 0;
360   bottom: 0;
361   text-shadow: 0 1px 1px #999999;
362   background-color: #b41616;
363   background-image: -webkit-gradient(linear, left top, left bottom, from(#b41616), to(#600606));
364   background-image: -webkit-linear-gradient(top, #b41616, #600606);
365   background-image: -moz-linear-gradient(top, #b41616, #600606);
366   background-image: -ms-linear-gradient(top, #b41616, #600606);
367   background-image: -o-linear-gradient(top, #b41616, #600606);
368   background-image: linear-gradient(to bottom, #b41616, #600606);
369 }
370 .openerp .oe_login .oe_login_pane {
371   position: absolute;
372   top: 50%;
373   left: 50%;
374   margin: -160px -166px;
375   border: solid 1px #333333;
376   background: #1e1e1e;
377   background: rgba(30, 30, 30, 0.94);
378   padding: 22px 32px;
379   color: #eeeeee;
380   text-align: left;
381   -moz-border-radius: 8px;
382   -webkit-border-radius: 8px;
383   border-radius: 8px;
384   -moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
385   -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
386   -box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
387 }
388 .openerp .oe_login .oe_login_pane h2 {
389   margin-top: 0;
390   font-size: 18px;
391 }
392 .openerp .oe_login .oe_login_logo {
393   position: absolute;
394   top: -70px;
395   left: 0;
396   width: 100%;
397   margin: 0 auto;
398   text-align: center;
399 }
400 .openerp .oe_login .oe_login_footer {
401   position: absolute;
402   bottom: -40px;
403   left: 0;
404   width: 100%;
405   text-align: center;
406 }
407 .openerp .oe_login .oe_login_footer a {
408   color: #eeeeee;
409   margin: 0 8px;
410 }
411 .openerp .oe_login .oe_login_footer a:hover {
412   text-decoration: underline;
413 }
414 .openerp .oe_login .oe_login_footer span {
415   font-weight: bold;
416   font-size: 16px;
417 }
418 .openerp .oe_login .oe_login_error_message {
419   display: none;
420   background-color: #b41616;
421   color: #eeeeee;
422   padding: 14px 18px;
423   margin-top: 15px;
424   text-align: center;
425   -moz-border-radius: 4px;
426   -webkit-border-radius: 4px;
427   border-radius: 4px;
428   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
429   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
430   -box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
431 }
432 .openerp .oe_login_invalid .oe_login_error_message {
433   display: inline-block;
434 }
435 .openerp .oe_database_manager {
436   background: white;
437   color: black;
438   text-align: left;
439 }
440 .openerp .oe_database_manager .oe_database_manager_menu {
441   color: black;
442 }
443 .openerp .oe_webclient {
444   width: 100%;
445   height: 100%;
446   border-spacing: 0px;
447 }
448 .openerp .oe_content_full_screen .oe_application {
449   top: 0;
450   left: 0;
451 }
452 .openerp .oe_content_full_screen .oe_topbar, .openerp .oe_content_full_screen .oe_leftbar {
453   display: none;
454 }
455 .openerp .oe_topbar {
456   width: 100%;
457   height: 31px;
458   border-top: solid 1px #d3d3d3;
459   background-color: #646060;
460   background-image: -webkit-gradient(linear, left top, left bottom, from(#646060), to(#262626));
461   background-image: -webkit-linear-gradient(top, #646060, #262626);
462   background-image: -moz-linear-gradient(top, #646060, #262626);
463   background-image: -ms-linear-gradient(top, #646060, #262626);
464   background-image: -o-linear-gradient(top, #646060, #262626);
465   background-image: linear-gradient(to bottom, #646060, #262626);
466 }
467 .openerp .oe_topbar .oe_topbar_item li {
468   float: left;
469 }
470 .openerp .oe_topbar .oe_topbar_item li a {
471   display: block;
472   padding: 5px 10px 7px;
473   line-height: 20px;
474   height: 20px;
475   color: #eeeeee;
476   vertical-align: top;
477   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
478 }
479 .openerp .oe_topbar .oe_topbar_item li a:hover {
480   background: #303030;
481   color: white;
482   -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
483   -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
484   -box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
485 }
486 .openerp .oe_topbar .oe_topbar_item .oe_active {
487   background: #303030;
488   font-weight: bold;
489   color: white;
490   -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
491   -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
492   -box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
493 }
494 .openerp .oe_topbar .oe_topbar_avatar {
495   width: 24px;
496   height: 24px;
497   margin: -2px 2px 0 0;
498   -moz-border-radius: 4px;
499   -webkit-border-radius: 4px;
500   border-radius: 4px;
501 }
502 .openerp .oe_topbar .oe_topbar_avatar {
503   vertical-align: top;
504 }
505 .openerp .oe_topbar .oe_dropdown_toggle:after {
506   width: 0;
507   height: 0;
508   display: inline-block;
509   content: "&darr";
510   text-indent: -99999px;
511   vertical-align: top;
512   margin-top: 8px;
513   margin-left: 4px;
514   border-left: 4px solid transparent;
515   border-right: 4px solid transparent;
516   border-top: 4px solid white;
517   filter: alpha(opacity=50);
518   opacity: 0.5;
519 }
520 .openerp .oe_leftbar {
521   display: none;
522   width: 220px;
523   background: #f0eeee;
524   border-right: 1px solid #afafb6;
525   text-shadow: 0 1px 1px white;
526   padding-bottom: 16px;
527   line-height: 18px;
528 }
529 .openerp a.oe_logo {
530   width: 220px;
531   display: block;
532   text-align: center;
533   height: 70px;
534   line-height: 70px;
535 }
536 .openerp a.oe_logo img {
537   height: 40px;
538   width: 157px;
539   margin: 14px 0;
540 }
541 .openerp .oe_footer {
542   position: fixed;
543   bottom: 0;
544   padding: 4px 0;
545   background: #f0eeee;
546   width: 220px;
547   text-align: center;
548 }
549 .openerp .oe_footer a {
550   font-weight: 800;
551   font-family: serif;
552   font-size: 16px;
553   color: black;
554 }
555 .openerp .oe_footer a span {
556   color: #c81010;
557   font-style: italic;
558 }
559 .openerp .oe_user_menu {
560   float: right;
561   padding: 0;
562   margin: 0;
563 }
564 .openerp .oe_user_menu li {
565   list-style-type: none;
566   float: left;
567 }
568 .openerp .oe_user_menu .oe_dropdown {
569   position: relative;
570 }
571 .openerp .oe_user_menu .oe_dropdown_options {
572   float: left;
573   background: #333333;
574   background: rgba(37, 37, 37, 0.9);
575   display: none;
576   position: absolute;
577   top: 32px;
578   right: -1px;
579   border: 0;
580   z-index: 900;
581   margin-left: 0;
582   margin-right: 0;
583   padding: 6px 0;
584   zoom: 1;
585   border-color: #999999;
586   border-color: rgba(0, 0, 0, 0.2);
587   border-style: solid;
588   border-width: 0 1px 1px;
589   -moz-border-radius: 0 0 6px 6px;
590   -webkit-border-radius: 0 0 6px 6px;
591   border-radius: 0 0 6px 6px;
592   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
593   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
594   -box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
595   -webkit-background-clip: padding-box;
596   -moz-background-clip: padding-box;
597   background-clip: padding-box;
598 }
599 .openerp .oe_user_menu .oe_dropdown_options li {
600   float: none;
601   display: block;
602   background-color: none;
603 }
604 .openerp .oe_user_menu .oe_dropdown_options li a {
605   white-space: nowrap;
606   display: block;
607   padding: 4px 15px;
608   clear: both;
609   font-weight: normal;
610   line-height: 18px;
611   color: #eeeeee;
612 }
613 .openerp .oe_user_menu .oe_dropdown_options li a:hover {
614   background-color: #292929;
615   background-image: -webkit-gradient(linear, left top, left bottom, from(#292929), to(#191919));
616   background-image: -webkit-linear-gradient(top, #292929, #191919);
617   background-image: -moz-linear-gradient(top, #292929, #191919);
618   background-image: -ms-linear-gradient(top, #292929, #191919);
619   background-image: -o-linear-gradient(top, #292929, #191919);
620   background-image: linear-gradient(to bottom, #292929, #191919);
621   -moz-box-shadow: none;
622   -webkit-box-shadow: none;
623   -box-shadow: none;
624 }
625 .openerp .oe_user_menu .oe_dropdown_options li hr {
626   border-top: 1px solid #999999;
627   border-bottom: 0;
628 }
629 .openerp .oe_systray > div {
630   float: left;
631   padding: 0 4px 0 4px;
632 }
633 .openerp .oe_systray {
634   float: right;
635 }
636 .openerp .oe_systray .oe_systray_dropdown {
637   position: relative;
638 }
639 .openerp .oe_systray .oe_systray_dropdown:hover .oe_systray_dropdown_options {
640   display: block;
641 }
642 .openerp .oe_systray .oe_systray_dropdown_options {
643   background: #333333;
644   background: rgba(37, 37, 37, 0.9);
645   display: none;
646   position: absolute;
647   z-index: 900;
648   border: 0;
649   margin-left: 0;
650   margin-right: 0;
651   padding: 6px 0;
652   border-color: #999999;
653   border-color: rgba(0, 0, 0, 0.2);
654   border-style: solid;
655   border-width: 0 1px 1px;
656   -moz-border-radius: 0 0 6px 6px;
657   -webkit-border-radius: 0 0 6px 6px;
658   border-radius: 0 0 6px 6px;
659   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
660   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
661   -box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
662   -webkit-background-clip: padding-box;
663   -moz-background-clip: padding-box;
664   background-clip: padding-box;
665 }
666 .openerp .oe_systray .oe_systray_dropdown_options li {
667   float: none;
668   display: block;
669   background-color: none;
670 }
671 .openerp .oe_systray .oe_systray_dropdown_options li a {
672   display: block;
673   padding: 4px 15px;
674   clear: both;
675   font-weight: normal;
676   line-height: 18px;
677   color: #eeeeee;
678 }
679 .openerp .oe_systray .oe_systray_dropdown_options li a:hover {
680   background-color: #292929;
681   background-image: -webkit-gradient(linear, left top, left bottom, from(#292929), to(#191919));
682   background-image: -webkit-linear-gradient(top, #292929, #191919);
683   background-image: -moz-linear-gradient(top, #292929, #191919);
684   background-image: -ms-linear-gradient(top, #292929, #191919);
685   background-image: -o-linear-gradient(top, #292929, #191919);
686   background-image: linear-gradient(to bottom, #292929, #191919);
687   -moz-box-shadow: none;
688   -webkit-box-shadow: none;
689   -box-shadow: none;
690 }
691 .openerp .oe_menu {
692   float: left;
693   padding: 0;
694   margin: 0;
695 }
696 .openerp .oe_menu li {
697   float: left;
698 }
699 .openerp .oe_menu a {
700   display: block;
701   padding: 5px 10px 7px;
702   line-height: 20px;
703   height: 20px;
704   color: #eeeeee;
705   vertical-align: top;
706   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
707 }
708 .openerp .oe_menu a:hover {
709   background: #303030;
710   color: white;
711   -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
712   -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
713   -box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
714 }
715 .openerp .oe_menu .oe_active {
716   background: #303030;
717   font-weight: bold;
718   color: white;
719   -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
720   -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
721   -box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
722 }
723 .openerp .oe_menu_more_container {
724   position: relative;
725 }
726 .openerp .oe_menu_more_container .oe_menu_more {
727   position: absolute;
728   padding: 0;
729   background-color: #646060;
730   z-index: 1;
731   border: 1px solid black;
732   border-bottom-left-radius: 5px;
733   border-bottom-right-radius: 5px;
734 }
735 .openerp .oe_menu_more_container .oe_menu_more li {
736   float: none;
737 }
738 .openerp .oe_menu_more_container .oe_menu_more li a {
739   white-space: nowrap;
740 }
741 .openerp .oe_secondary_menu_section {
742   font-weight: bold;
743   margin-left: 8px;
744   color: #8a89ba;
745 }
746 .openerp .oe_secondary_submenu {
747   padding: 2px 0 8px 0;
748   margin: 0;
749   width: 100%;
750   display: inline-block;
751 }
752 .openerp .oe_secondary_submenu > li {
753   position: relative;
754   padding: 1px 0 1px 20px;
755 }
756 .openerp .oe_secondary_submenu > li a {
757   display: block;
758   color: #4c4c4c;
759   padding: 2px 4px 2px 0;
760 }
761 .openerp .oe_secondary_submenu > li .oe_menu_label {
762   position: absolute;
763   top: 1px;
764   right: 1px;
765   font-size: 10px;
766   background: #8a89ba;
767   color: white;
768   padding: 2px 4px;
769   margin: 1px 6px 0 0;
770   border: 1px solid lightGray;
771   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
772   -moz-border-radius: 4px;
773   -webkit-border-radius: 4px;
774   border-radius: 4px;
775   -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
776   -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
777   -box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
778 }
779 .openerp .oe_secondary_submenu .oe_menu_counter {
780   float: right;
781   background: #8a89ba;
782   color: #eeeeee;
783   font-size: 12px;
784   border: 1px solid lightgray;
785   padding: 0px 4px 0px 4px;
786   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
787   margin: 0px;
788   -moz-border-radius: 4px;
789   -webkit-border-radius: 4px;
790   border-radius: 4px;
791 }
792 .openerp .oe_secondary_submenu .oe_active {
793   background: #8a89ba;
794   border-top: 1px solid lightGray;
795   border-bottom: 1px solid lightGray;
796   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
797   -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
798   -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
799   -box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
800 }
801 .openerp .oe_secondary_submenu .oe_active a {
802   color: white;
803 }
804 .openerp .oe_secondary_submenu .oe_active .oe_menu_label {
805   background: #eeeeee;
806   color: #8a89ba;
807   text-shadow: 0 1px 1px white;
808   -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
809   -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
810   -box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
811 }
812 .openerp .oe_secondary_submenu .oe_active .oe_menu_counter {
813   background: #eeeeee;
814   color: #8a89ba;
815 }
816 .openerp .oe_secondary_submenu .oe_menu_toggler:before {
817   width: 0;
818   height: 0;
819   display: inline-block;
820   content: "&darr";
821   text-indent: -99999px;
822   vertical-align: top;
823   margin-left: -12px;
824   margin-top: 4px;
825   margin-right: 4px;
826   border-top: 4px solid transparent;
827   border-bottom: 4px solid transparent;
828   border-left: 4px solid #4c4c4c;
829   filter: alpha(opacity=50);
830   opacity: 0.5;
831 }
832 .openerp .oe_secondary_submenu .oe_menu_opened:before {
833   margin-top: 6px;
834   margin-left: -16px;
835   margin-right: 4px;
836   border-left: 4px solid transparent;
837   border-right: 4px solid transparent;
838   border-top: 4px solid #4c4c4c;
839 }
840 .openerp .oe_application {
841   width: 100%;
842 }
843 .openerp .oe_application a {
844   color: #8a89ba;
845 }
846 .openerp .oe_application a:hover {
847   text-decoration: underline;
848 }
849 .openerp .oe-view-manager-header {
850   border-top: 1px solid #cacaca;
851   border-bottom: 1px solid #cacaca;
852   background-color: #fcfcfc;
853   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
854   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
855   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
856   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
857   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
858   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
859   -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
860   -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
861   -box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
862 }
863 .openerp .oe-view-manager-header h2 {
864   float: left;
865   font-size: 18px;
866   margin: 1px 0;
867 }
868 .openerp .oe-view-manager-header h2 a {
869   color: #8a89ba;
870 }
871 .openerp .oe-view-manager-header .buttons {
872   padding-right: 8px;
873 }
874 .openerp .oe-view-manager-header .buttons li {
875   float: left;
876   margin-right: 12px;
877 }
878 .openerp .oe-view-manager-header .filter {
879   vertical-align: top;
880 }
881 .openerp .oe-view-manager-header .filter li {
882   height: 24px;
883   line-height: 24px;
884   padding: 0 8px;
885 }
886 .openerp .oe-view-manager-header .header-row {
887   height: 26px;
888   line-height: 26px;
889   margin: 8px;
890   clear: both;
891   text-shadow: 0 1px 1px white;
892 }
893 .openerp .oe-view-manager-header .header-row .dropdown-toggle:after {
894   margin-top: 7px;
895   margin-left: 6px;
896   border-top-color: #404040;
897 }
898 .openerp .oe-view-manager-header .oe_vm_switch li {
899   padding-left: 1px;
900   text-align: center;
901   width: 24px;
902   height: 24px;
903   line-height: 24px;
904 }
905 .openerp .oe-view-manager-header .pagination li {
906   height: 24px;
907   line-height: 24px;
908   padding: 0 8px;
909 }
910 .openerp .oe-view-manager-header .button-group {
911   display: inline-block;
912   border: 1px solid #ababab;
913   -moz-border-radius: 5px;
914   -webkit-border-radius: 5px;
915   border-radius: 5px;
916 }
917 .openerp .oe-view-manager-header .button-group li {
918   float: left;
919   border-right: 1px solid #ababab;
920 }
921 .openerp .oe-view-manager-header .button-group li:last-child {
922   border: none;
923 }
924 .openerp .oe-view-manager-header .button-group a {
925   color: #4c4c4c;
926 }
927 .openerp .oe-view-manager-header .button-group a:hover {
928   text-decoration: none;
929 }
930 .openerp .oe-view-manager-header .button-group .active {
931   width: 100%;
932   background: #999999;
933   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
934   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
935   -box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
936   color: white;
937   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
938 }
939 .openerp .oe_view_manager_header {
940   width: 100%;
941   border-top: 1px solid #cacaca;
942   border-bottom: 1px solid #cacaca;
943   background-color: #fcfcfc;
944   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
945   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
946   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
947   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
948   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
949   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
950   -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
951   -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
952   -box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
953 }
954 .openerp .oe_view_manager_header .oe_header_row {
955   clear: both;
956   text-shadow: 0 1px 1px white;
957 }
958 .openerp .oe_view_manager_header .oe_header_row td {
959   padding: 8px;
960 }
961 .openerp .oe_view_manager_header .oe_header_row:last-child td {
962   padding-top: 0;
963 }
964 .openerp .oe_view_manager_header .oe_header_row:first-child td {
965   padding-top: 8px;
966 }
967 .openerp .oe_view_manager_header .oe_view_manager_sidebar {
968   margin: 0px auto;
969   width: 400px;
970   text-align: center;
971 }
972 .openerp .oe_view_manager_header td {
973   line-height: 26px;
974 }
975 .openerp .oe_view_manager_header h2 {
976   font-size: 18px;
977   margin: 0;
978   float: left;
979 }
980 .openerp .oe_view_manager_header h2 a {
981   color: #8a89ba;
982 }
983 .openerp .oe_view_manager_header .oe_button_group {
984   display: inline-block;
985   border: 1px solid #ababab;
986   -moz-border-radius: 5px;
987   -webkit-border-radius: 5px;
988   border-radius: 5px;
989 }
990 .openerp .oe_view_manager_header .oe_button_group li {
991   float: left;
992   border-right: 1px solid #ababab;
993 }
994 .openerp .oe_view_manager_header .oe_button_group li:last-child {
995   border: none;
996 }
997 .openerp .oe_view_manager_header .oe_button_group a {
998   color: #4c4c4c;
999 }
1000 .openerp .oe_view_manager_header .oe_button_group a:hover {
1001   text-decoration: none;
1002 }
1003 .openerp .oe_view_manager_header .oe_button_group .active {
1004   background: #999999;
1005   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1006   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1007   -box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1008 }
1009 .openerp .oe_view_manager_header .oe_button_group .active a {
1010   color: white;
1011   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
1012 }
1013 .openerp .oe_view_manager_header .oe_view_manager_buttons {
1014   white-space: nowrap;
1015 }
1016 .openerp .oe_view_manager_pager {
1017   line-height: 26px;
1018 }
1019 .openerp .oe_pager_value {
1020   float: left;
1021   margin-right: 8px;
1022 }
1023 .openerp .oe_pager_group {
1024   float: left;
1025   height: 24px;
1026   line-height: 24px;
1027   display: inline-block;
1028   border: 1px solid #ababab;
1029   cursor: pointer;
1030   -moz-border-radius: 5px;
1031   -webkit-border-radius: 5px;
1032   border-radius: 5px;
1033 }
1034 .openerp .oe_pager_group li {
1035   height: 24px;
1036   line-height: 24px;
1037   padding: 0;
1038   float: left;
1039   border-right: 1px solid #ababab;
1040 }
1041 .openerp .oe_pager_group li:last-child {
1042   border: none;
1043 }
1044 .openerp .oe_pager_group a {
1045   color: #4c4c4c;
1046   padding: 0 8px;
1047 }
1048 .openerp .oe_pager_group a:hover {
1049   text-decoration: none;
1050 }
1051 .openerp .oe_pager_group .active {
1052   background: #999999;
1053   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1054   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1055   -box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1056 }
1057 .openerp .oe_pager_group .active a {
1058   color: white;
1059   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
1060 }
1061 .openerp .oe_view_manager_switch li {
1062   text-align: center;
1063   width: 24px;
1064   height: 24px;
1065   line-height: 16px;
1066 }
1067 .openerp .oe_view_manager_switch li a {
1068   position: relative;
1069 }
1070 .openerp .oe_view_manager_switch .oe_vm_switch_list:after, .openerp .oe_view_manager_switch .oe_vm_switch_tree:after {
1071   padding: 2px;
1072   content: "i";
1073 }
1074 .openerp .oe_view_manager_switch .oe_vm_switch_graph:after {
1075   font-family: "mnmliconsRegular" !important;
1076   font-size: 21px;
1077   font-weight: 300 !important;
1078   content: "}";
1079   top: -2px;
1080   position: relative;
1081 }
1082 .openerp .oe_view_manager_switch .oe_vm_switch_gantt:after {
1083   font-family: "mnmliconsRegular" !important;
1084   font-size: 21px;
1085   font-weight: 300 !important;
1086   content: "y";
1087   top: -2px;
1088   position: relative;
1089 }
1090 .openerp .oe_view_manager_switch .oe_vm_switch_calendar:after {
1091   content: "P";
1092 }
1093 .openerp .oe_view_manager_switch .oe_vm_switch_kanban:after {
1094   content: "k";
1095 }
1096 .openerp .oe_view_manager_switch .oe_vm_switch_diagram:after {
1097   content: "f";
1098 }
1099 .openerp .oe_form_dropdown_section {
1100   position: relative;
1101   display: inline-block;
1102 }
1103 .openerp .oe_dropdown_toggle:after {
1104   width: 0;
1105   height: 0;
1106   display: inline-block;
1107   content: "&darr";
1108   text-indent: -99999px;
1109   vertical-align: top;
1110   border-left: 4px solid transparent;
1111   border-right: 4px solid transparent;
1112   border-top: 4px solid white;
1113   filter: alpha(opacity=50);
1114   opacity: 0.5;
1115   margin-top: 7px;
1116   margin-left: 6px;
1117   border-top-color: #404040;
1118 }
1119 .openerp .oe_dropdown_menu {
1120   display: none;
1121   position: absolute;
1122   top: 28px;
1123   left: 0px;
1124   padding: 8px;
1125   border: 1px solid #afafb6;
1126   width: 120px;
1127   overflow-x: hidden;
1128   z-index: 900;
1129   text-align: left;
1130   background: white;
1131   -moz-border-radius: 3px;
1132   -webkit-border-radius: 3px;
1133   border-radius: 3px;
1134   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1135   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1136   -box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1137 }
1138 .openerp .oe_dropdown_menu li {
1139   list-style-type: none;
1140   float: none;
1141   display: block;
1142   background-color: none;
1143 }
1144 .openerp .oe_dropdown_menu li a {
1145   display: block;
1146   padding: 3px 6px;
1147   clear: both;
1148   font-weight: normal;
1149   line-height: 14px;
1150   color: #4c4c4c;
1151   text-decoration: none;
1152   cursor: pointer;
1153 }
1154 .openerp .oe_dropdown_menu li a:hover {
1155   text-decoration: none;
1156   background-color: #f0f0fa;
1157   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
1158   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
1159   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
1160   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
1161   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
1162   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
1163   -moz-box-shadow: none;
1164   -webkit-box-shadow: none;
1165   -box-shadow: none;
1166 }
1167 .openerp .oe_sidebar {
1168   white-space: nowrap;
1169 }
1170 .openerp .oe_searchview {
1171   cursor: text;
1172   position: relative;
1173   float: right;
1174   padding: 1px 0;
1175   line-height: 18px;
1176   width: 480px;
1177   border: 1px solid #ababab;
1178   background: white;
1179   -moz-border-radius: 13px;
1180   -webkit-border-radius: 13px;
1181   border-radius: 13px;
1182   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1183   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1184   -box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1185 }
1186 .openerp .oe_searchview input, .openerp .oe_searchview textarea {
1187   padding: 3px;
1188   height: 14px;
1189   font-size: 11px;
1190   line-height: 18px;
1191   border: 1px solid #cccccc;
1192   -moz-border-radius: 3px;
1193   -webkit-border-radius: 3px;
1194   border-radius: 3px;
1195 }
1196 .openerp .oe_searchview.oe_focused {
1197   border-color: #a6a6fe;
1198   -moz-box-shadow: 0 1px 2px #a6a6fe inset;
1199   -webkit-box-shadow: 0 1px 2px #a6a6fe inset;
1200   -box-shadow: 0 1px 2px #a6a6fe inset;
1201 }
1202 .openerp .oe_searchview .oe_searchview_clear {
1203   cursor: pointer;
1204   position: absolute;
1205   top: 0;
1206   right: 18px;
1207   width: 15px;
1208   height: 100%;
1209   background: url(../img/search_reset.gif) center center no-repeat;
1210 }
1211 .openerp .oe_searchview .oe_searchview_unfold_drawer {
1212   position: absolute;
1213   top: 0;
1214   right: 0;
1215   height: 100%;
1216   padding: 0 7px 0 4px;
1217   color: #cccccc;
1218   cursor: pointer;
1219 }
1220 .openerp .oe_searchview .oe_searchview_unfold_drawer:hover {
1221   color: #999999;
1222 }
1223 .openerp .oe_searchview .oe_searchview_unfold_drawer:before {
1224   position: absolute;
1225   top: 10px;
1226   right: 7px;
1227   width: 0;
1228   height: 0;
1229   display: inline-block;
1230   content: "";
1231   vertical-align: top;
1232   border-top: 5px solid #4c4c4c;
1233   border-left: 5px solid transparent;
1234   border-right: 5px solid transparent;
1235   filter: alpha(opacity=50);
1236   opacity: 0.5;
1237 }
1238 .openerp .oe_searchview .oe_searchview_facets {
1239   min-height: 22px;
1240 }
1241 .openerp .oe_searchview .oe_searchview_facets:before {
1242   color: #cccccc;
1243   font-family: "mnmliconsRegular";
1244   content: "r";
1245   font-size: 130%;
1246   display: inline;
1247   position: relative;
1248   left: 6px;
1249   top: 2px;
1250   color: #a3a3a3;
1251   padding-right: 4px;
1252 }
1253 .openerp .oe_searchview .oe_searchview_facets * {
1254   vertical-align: top;
1255   display: inline-block;
1256   line-height: 17px;
1257 }
1258 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_input, .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet {
1259   height: 18px;
1260   margin: 1px 0;
1261   font-size: 11px;
1262 }
1263 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_input:focus, .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet:focus {
1264   outline: none;
1265 }
1266 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_input {
1267   padding: 0 3px;
1268 }
1269 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet {
1270   position: relative;
1271   cursor: pointer;
1272   border: 1px solid #afafb6;
1273   -moz-border-radius: 3px;
1274   -webkit-border-radius: 3px;
1275   border-radius: 3px;
1276   background: #8786b7;
1277   -webkit-font-smoothing: auto;
1278 }
1279 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet:focus {
1280   border-color: #a6a6fe;
1281   -moz-box-shadow: 0 0 3px 1px #a6a6fe;
1282   -webkit-box-shadow: 0 0 3px 1px #a6a6fe;
1283   -box-shadow: 0 0 3px 1px #a6a6fe;
1284 }
1285 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_values {
1286   background: #f0f0fa;
1287   -moz-border-radius: 0 3px 3px 0;
1288   -webkit-border-radius: 0 3px 3px 0;
1289   border-radius: 0 3px 3px 0;
1290 }
1291 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category, .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value {
1292   height: 18px;
1293   padding: 0 4px;
1294 }
1295 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category {
1296   color: white;
1297   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1298 }
1299 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category.oe_i {
1300   font-size: 16px;
1301 }
1302 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value {
1303   border-left: 1px solid #afafb6;
1304   text-shadow: 0 1px 1px white;
1305 }
1306 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value:last-child {
1307   padding-right: 16px;
1308 }
1309 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_remove {
1310   position: absolute;
1311   top: 3px;
1312   right: 3px;
1313   color: #8786b7;
1314   line-height: 8px;
1315   width: 12px;
1316   height: 12px;
1317   text-align: center;
1318   font-weight: bold;
1319   cursor: pointer;
1320   text-shadow: 0 1px 1px white;
1321 }
1322 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_remove:hover {
1323   color: white;
1324   background: #8786b7;
1325   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1326   -moz-border-radius: 2px;
1327   -webkit-border-radius: 2px;
1328   border-radius: 2px;
1329 }
1330 .openerp .oe_searchview.oe_searchview_open_drawer .oe_searchview_drawer {
1331   display: block;
1332 }
1333 .openerp .oe_searchview .oe_searchview_drawer {
1334   position: absolute;
1335   z-index: 1;
1336   margin-top: 4px;
1337   top: 100%;
1338   right: -1px;
1339   background-color: white;
1340   min-width: 100%;
1341   display: none;
1342   border: 1px solid #afafb6;
1343   text-align: left;
1344   -moz-border-radius: 4px;
1345   -webkit-border-radius: 4px;
1346   border-radius: 4px;
1347   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1348   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1349   -box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1350 }
1351 .openerp .oe_searchview .oe_searchview_drawer > div {
1352   border-top: 1px solid #cccccc;
1353   margin: 0;
1354   padding: 8px;
1355 }
1356 .openerp .oe_searchview .oe_searchview_drawer > div:first-child {
1357   border-top: none;
1358   margin: 0;
1359 }
1360 .openerp .oe_searchview .oe_searchview_drawer h3 {
1361   margin: 8px 4px 4px 12px;
1362   color: #8786b7;
1363   font-size: 13px;
1364 }
1365 .openerp .oe_searchview .oe_searchview_drawer h4, .openerp .oe_searchview .oe_searchview_drawer h4 * {
1366   margin: 0;
1367   cursor: pointer;
1368   font-weight: normal;
1369   display: inline-block;
1370 }
1371 .openerp .oe_searchview .oe_searchview_drawer h4:hover, .openerp .oe_searchview .oe_searchview_drawer h4 *:hover {
1372   background-color: #f0f0fa;
1373 }
1374 .openerp .oe_searchview .oe_searchview_drawer h4:before {
1375   content: "â–¸ ";
1376   color: #a3a3a3;
1377 }
1378 .openerp .oe_searchview .oe_searchview_drawer button {
1379   margin: 4px 0;
1380 }
1381 .openerp .oe_searchview .oe_searchview_drawer .button {
1382   border: none;
1383   background: transparent;
1384   padding: 0 2px;
1385   -moz-box-shadow: none;
1386   -webkit-box-shadow: none;
1387   -box-shadow: none;
1388   -moz-border-radius: 0;
1389   -webkit-border-radius: 0;
1390   border-radius: 0;
1391 }
1392 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section {
1393   display: table;
1394   width: 100%;
1395 }
1396 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section > div {
1397   -moz-box-sizing: border-box;
1398   -webkit-box-sizing: border-box;
1399   box-sizing: border-box;
1400   display: table-cell;
1401   width: 50%;
1402 }
1403 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section ul {
1404   margin: 0 8px 8px;
1405   padding: 0;
1406   list-style: none;
1407 }
1408 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li {
1409   list-style: none;
1410   padding: 2px 4px 2px 20px;
1411   line-height: 14px;
1412   color: inherit;
1413   cursor: pointer;
1414   position: relative;
1415 }
1416 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li.oe_selected:before {
1417   content: "W";
1418   font-family: "entypoRegular" !important;
1419   font-size: 24px;
1420   font-weight: 300 !important;
1421   color: #a3a3a3;
1422   position: absolute;
1423   left: 4px;
1424   top: -2px;
1425 }
1426 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li:hover {
1427   background-color: #f0f0fa;
1428 }
1429 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section form {
1430   margin-left: 12px;
1431 }
1432 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section form p {
1433   margin: 4px 0;
1434   line-height: 18px;
1435 }
1436 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section form button {
1437   margin: 0 0 8px 0;
1438 }
1439 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom {
1440   padding: 0 8px 8px 8px;
1441 }
1442 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom form {
1443   display: none;
1444 }
1445 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li {
1446   cursor: pointer;
1447   position: relative;
1448   line-height: 14px;
1449   padding: 2px 4px 2px 20px;
1450 }
1451 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li:hover {
1452   background-color: #f0f0fa;
1453 }
1454 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li button {
1455   position: absolute;
1456   top: 0;
1457   right: 5px;
1458 }
1459 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced form {
1460   display: none;
1461   margin-top: 8px;
1462 }
1463 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced button.oe_add_condition:before {
1464   content: "Z";
1465   font-family: "entypoRegular" !important;
1466   font-size: 24px;
1467   font-weight: 300 !important;
1468   margin-right: 4px;
1469 }
1470 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced ul {
1471   list-style: none;
1472   padding: 0;
1473 }
1474 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced li {
1475   position: relative;
1476   list-style: none;
1477   margin: 0;
1478   white-space: nowrap;
1479 }
1480 .openerp .oe_searchview .oe_searchview_drawer .oe_opened h4:before {
1481   content: "â–¾ ";
1482   position: relative;
1483   top: -1px;
1484 }
1485 .openerp .oe_searchview .oe_searchview_drawer .oe_opened form {
1486   display: block;
1487 }
1488 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete {
1489   position: absolute;
1490   left: 4px;
1491   top: 3px;
1492 }
1493 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete, .openerp .oe_searchview .oe_searchview_drawer .searchview_extended_delete_prop {
1494   width: 12px;
1495   height: 12px;
1496   color: #8786b7;
1497   line-height: 8px;
1498   text-align: center;
1499   font-weight: bold;
1500   text-shadow: 0 1px 1px white;
1501 }
1502 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete:hover, .openerp .oe_searchview .oe_searchview_drawer .searchview_extended_delete_prop:hover {
1503   text-decoration: none;
1504   color: white;
1505   background: #8786b7;
1506   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1507   -moz-border-radius: 2px;
1508   -webkit-border-radius: 2px;
1509   border-radius: 2px;
1510 }
1511 .openerp .oe_view_nocontent > img {
1512   float: left;
1513   margin: 1.5em;
1514 }
1515 .openerp .oe_view_nocontent > div {
1516   overflow: hidden;
1517   padding: 35px 0px 0px 0px;
1518   max-width: 700px;
1519   font-size: 125%;
1520 }
1521 .openerp .oe_view_topbar {
1522   border-bottom: 1px solid #cacaca;
1523   background-color: #fcfcfc;
1524   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
1525   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
1526   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
1527   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
1528   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
1529   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
1530   padding: 0 8px;
1531   line-height: 30px;
1532 }
1533 .openerp .oe_formview {
1534   background: white;
1535 }
1536 .openerp .oe_form_header {
1537   padding: 8px;
1538 }
1539 .openerp .oe_form_invalid input, .openerp .oe_form_invalid select, .openerp .oe_form_invalid textarea {
1540   background-color: #ff6666 !important;
1541   border: 1px solid #dd0000 !important;
1542 }
1543 .openerp .oe_form_button_save_dirty {
1544   color: white;
1545   background: #dc5f59;
1546   background: -moz-linear-gradient(#dc5f59, #b33630);
1547   background: -webkit-gradient(linear, left top, left bottom, from(#dc5f59), to(#b33630));
1548   background: -webkit-linear-gradient(#dc5f59, #b33630);
1549   -moz-box-shadow: none;
1550   -webkit-box-shadow: none;
1551   -box-shadow: none;
1552   font-weight: bold;
1553 }
1554 .openerp .oe_form_button_save_dirty:hover {
1555   background: #ed6f6a;
1556 }
1557 .openerp .oe_form header {
1558   position: relative;
1559   border-bottom: 1px solid #cacaca;
1560   background-color: #fcfcfc;
1561   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
1562   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
1563   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
1564   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
1565   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
1566   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
1567   padding: 0 8px;
1568   line-height: 30px;
1569 }
1570 .openerp .oe_form header button {
1571   font-size: 12px;
1572   float: left;
1573   height: 24px !important;
1574   line-height: 24px;
1575   vertical-align: top;
1576   padding: 0 10px;
1577   margin: 3px 4px 3px 0;
1578 }
1579 .openerp .oe_form header button span.i {
1580   line-height: 20px;
1581   height: 24px;
1582 }
1583 .openerp .oe_form header ul {
1584   height: 30px;
1585   padding: 0;
1586   margin: 0;
1587   text-shadow: 0 1px 1px white;
1588   border-left: 1px solid #cacaca;
1589   border-right: 1px solid #cacaca;
1590 }
1591 .openerp .oe_form header ul li {
1592   padding: 0;
1593   margin: 0;
1594   float: left;
1595   vertical-align: top;
1596   border-right: 1px solid #cacaca;
1597   height: 30px;
1598   padding: 0 12px;
1599 }
1600 .openerp .oe_form header ul li:first-child {
1601   border-left: 1px solid #cacaca;
1602 }
1603 .openerp .oe_form header ul li a {
1604   color: #4c4c4c;
1605 }
1606 .openerp .oe_form header ul li a:hover {
1607   color: black;
1608 }
1609 .openerp .oe_form header .oe_form_steps {
1610   display: inline-block;
1611   float: right;
1612 }
1613 .openerp .oe_form header .oe_form_steps img {
1614   margin: 0 8px;
1615   vertical-align: top;
1616 }
1617 .openerp .oe_form header .oe_form_steps li {
1618   border-right: none;
1619   padding: 0;
1620 }
1621 .openerp .oe_form header .oe_form_steps li:first-child {
1622   margin-left: 12px;
1623   border-left: none;
1624 }
1625 .openerp .oe_form header .oe_form_steps li:last-child {
1626   margin-right: 12px;
1627 }
1628 .openerp .oe_form header .oe_form_steps_active {
1629   font-weight: bold;
1630   color: #b33630;
1631 }
1632 .openerp header.oe_form_topbar_hifirst button:first-child, .openerp button.oe_form_button_hi {
1633   color: white;
1634   background: #dc5f59;
1635   background: -moz-linear-gradient(#dc5f59, #b33630);
1636   background: -webkit-gradient(linear, left top, left bottom, from(#dc5f59), to(#b33630));
1637   background: -webkit-linear-gradient(#dc5f59, #b33630);
1638   -moz-box-shadow: none;
1639   -webkit-box-shadow: none;
1640   -box-shadow: none;
1641 }
1642 .openerp header.oe_form_topbar_hifirst button:first-child:hover, .openerp button.oe_form_button_hi:hover {
1643   background: #df6b66;
1644   background: -moz-linear-gradient(#df6b66, #bf3a33);
1645   background: -webkit-gradient(linear, left top, left bottom, from(#df6b66), to(#bf3a33));
1646   background: -webkit-linear-gradient(#df6b66, #bf3a33);
1647   -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
1648   -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
1649   -box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
1650 }
1651 .openerp .oe_application .oe_form_sheetbg {
1652   background: url(/web/static/src/img/form_sheetbg.png);
1653   padding: 8px 0;
1654   border-bottom: 1px solid #dddddd;
1655 }
1656 .openerp .oe_application .oe_form_sheet_width, .openerp .oe_application footer {
1657   min-width: 650px;
1658   max-width: 960px;
1659   margin: 0 auto;
1660 }
1661 .openerp .oe_application .oe_form_sheet {
1662   padding: 18px;
1663   background: white;
1664   min-height: 330px;
1665   border: 1px solid #afafb6;
1666   -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
1667   -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
1668   -box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
1669 }
1670 .openerp .oe_form_editable .oe_form_editable_hidden {
1671   display: none;
1672 }
1673 .openerp .oe_form_readonly .oe_form_readonly_hidden {
1674   display: none;
1675 }
1676 .openerp .oe_form .oe_form_field_text {
1677   width: 100%;
1678 }
1679 .openerp .oe_form .oe_form_field_char input,
1680 .openerp .oe_form .oe_form_field_text textarea,
1681 .openerp .oe_form .oe_form_field_url input,
1682 .openerp .oe_form .oe_form_field_selection select {
1683   width: inherit;
1684 }
1685 .openerp .oe_form .oe_form_field_float input {
1686   width: 100px;
1687 }
1688 .openerp .oe_form h1 .oe_form_field_float input {
1689   width: 140px;
1690 }
1691 .openerp .oe_form h2 .oe_form_field_float input {
1692   width: 120px;
1693 }
1694 .openerp .oe_form h1, .openerp .oe_form h2, .openerp .oe_form h3, .openerp .oe_form h4, .openerp .oe_form h5, .openerp .oe_form h6 {
1695   margin: 0 0 4px 0;
1696 }
1697 .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 {
1698   height: inherit !important;
1699   font-size: inherit;
1700 }
1701 .openerp .oe_form_nosheet > *:not(.oe_form_topbar) {
1702   margin-left: 10px !important;
1703   margin-right: 10px !important;
1704 }
1705 .openerp .oe_form .oe_form_label_help[for], .openerp .oe_form .oe_form_label[for] {
1706   font-weight: bold;
1707   white-space: nowrap;
1708   padding-right: 8px;
1709 }
1710 .openerp .oe_form .oe_form_label_help[for] span, .openerp .oe_form .oe_form_label[for] span {
1711   font-size: 80%;
1712   color: darkGreen;
1713   vertical-align: top;
1714   position: relative;
1715   top: -4px;
1716   padding: 0 2px;
1717 }
1718 .openerp .oe_form .oe_form_field_text textarea {
1719   resize: vertical;
1720 }
1721 .openerp .oe_form .oe_form_field {
1722   width: 100%;
1723   display: inline-block;
1724   padding: 2px 2px 2px 0px;
1725   line-height: 18px;
1726 }
1727 .openerp .oe_form .oe_form_field input {
1728   margin: 0px;
1729 }
1730 .openerp .oe_form .oe_form_field_integer {
1731   width: 180px;
1732 }
1733 .openerp .oe_form .oe_form_field_float {
1734   width: 180px;
1735 }
1736 .openerp .oe_form .oe_form_field_date {
1737   width: 7em;
1738 }
1739 .openerp .oe_form .oe_form_field_datetime {
1740   width: 11em;
1741 }
1742 .openerp .oe_form .oe_form_inline {
1743   width: auto;
1744 }
1745 .openerp .oe_form input[type="text"],
1746 .openerp .oe_form input[type="password"],
1747 .openerp .oe_form input[type="file"],
1748 .openerp .oe_form select {
1749   height: 22px;
1750   padding-top: 2px;
1751 }
1752 .openerp .oe_form input[type="text"],
1753 .openerp .oe_form input[type="password"],
1754 .openerp .oe_form input[type="file"],
1755 .openerp .oe_form select,
1756 .openerp .oe_form textarea {
1757   -moz-box-sizing: border-box;
1758   -webkit-box-sizing: border-box;
1759   -ms-box-sizing: border-box;
1760   box-sizing: border-box;
1761   padding: 0 2px;
1762   border: 1px solid #999999;
1763   -moz-border-radius: 3px;
1764   -webkit-border-radius: 3px;
1765   border-radius: 3px;
1766   background: white;
1767   min-width: 70px;
1768   color: #1f1f1f;
1769 }
1770 .openerp .oe_form input[readonly],
1771 .openerp .oe_form select[readonly],
1772 .openerp .oe_form textarea[readonly],
1773 .openerp .oe_form input[disabled],
1774 .openerp .oe_form select[disabled] {
1775   background: #e5e5e5 !important;
1776   color: #666666;
1777 }
1778 .openerp .oe_form textarea[disabled] {
1779   border: none;
1780   border-left: 8px solid #eeeeee;
1781   padding-left: 8px;
1782   -moz-box-shadow: none;
1783   -webkit-box-shadow: none;
1784   -box-shadow: none;
1785   -moz-border-radius: 0px;
1786   -webkit-border-radius: 0px;
1787   border-radius: 0px;
1788 }
1789 .openerp .oe_form .oe_form_field_many2one input,
1790 .openerp .oe_form .oe_form_field_binary input,
1791 .openerp .oe_form .oe_form_field_binary input,
1792 .openerp .oe_form .oe_form_field_email input,
1793 .openerp .oe_form .oe_form_field_url input {
1794   border-right: none;
1795   -webkit-border-top-right-radius: 0px;
1796   -webkit-border-bottom-right-radius: 0px;
1797   -moz-border-radius-topright: 0px;
1798   -moz-border-radius-bottomright: 0px;
1799   border-top-right-radius: 0px;
1800   border-bottom-right-radius: 0px;
1801 }
1802 .openerp .oe_form .oe_form_field_email button img,
1803 .openerp .oe_form .oe_form_field_url button img {
1804   vertical-align: top;
1805 }
1806 .openerp .oe_form .oe_form_field_date,
1807 .openerp .oe_form .oe_form_field_datetime {
1808   white-space: nowrap;
1809 }
1810 .openerp .oe_form .oe_form_field_boolean {
1811   padding-top: 4px;
1812 }
1813 .openerp .oe_form .oe_form_field_many2manytags .text-wrap {
1814   width: 100% !important;
1815 }
1816 .openerp .oe_form .oe_form_field_many2manytags .text-wrap textarea {
1817   width: 100% !important;
1818 }
1819 .openerp .oe_form .oe_form_field_many2manytags .oe_form_field_many2manytags_box {
1820   border-radius: 2px;
1821   box-sizing: border-box;
1822   position: relative;
1823   float: left;
1824   border: 1px solid #9daccc;
1825   background: #e2e6f0;
1826   color: black;
1827   padding: 0px 3px 0px 3px;
1828   margin: 0 2px 2px 0;
1829   cursor: pointer;
1830   height: 16px;
1831   font: 11px "lucida grande", tahoma, verdana, arial, sans-serif;
1832 }
1833 .openerp .oe_form .oe_form_field_many2manytags .text-core .text-wrap .text-dropdown .text-list .text-suggestion em {
1834   font-style: italic;
1835   text-decoration: none;
1836 }
1837 .openerp .oe_form .oe_datepicker_container {
1838   display: none;
1839 }
1840 .openerp .oe_form .oe_datepicker_root {
1841   display: inline-block;
1842 }
1843 .openerp .oe_form .oe_form_required input, .openerp .oe_form .oe_form_required select, .openerp .oe_form .oe_form_required textarea {
1844   background-color: #d2d2ff !important;
1845 }
1846 .openerp .oe_form .oe_form_invalid input, .openerp .oe_form .oe_form_invalid select, .openerp .oe_form .oe_form_invalid textarea {
1847   background-color: #ff6666 !important;
1848   border: 1px solid #dd0000 !important;
1849 }
1850 .openerp .oe_form .oe_input_icon {
1851   cursor: pointer;
1852   margin: 3px 0 0 -21px;
1853   vertical-align: top;
1854 }
1855 .openerp .oe_form .oe_input_icon_disabled {
1856   position: absolute;
1857   cursor: default;
1858   opacity: 0.5;
1859   filter: alpha(opacity=50);
1860   right: 5px;
1861   top: 3px;
1862 }
1863 .openerp .oe_form .oe_form_group_cell .oe_kanban_view {
1864   position: static;
1865 }
1866 .openerp .oe_form .oe_form_field_with_button input {
1867   width: 100%;
1868 }
1869 .openerp .oe_form .oe_form_field_with_button > .oe_button {
1870   float: right;
1871   -webkit-border-top-left-radius: 0px;
1872   -webkit-border-bottom-left-radius: 0px;
1873   -moz-border-radius-topleft: 0px;
1874   -moz-border-radius-bottomleft: 0px;
1875   border-top-left-radius: 0px;
1876   border-bottom-left-radius: 0px;
1877   height: 22px;
1878 }
1879 .openerp .oe_form .oe_form_field_with_button > div {
1880   position: relative;
1881   overflow: hidden;
1882 }
1883 .openerp .oe_form .oe_form_title {
1884   width: 65%;
1885 }
1886 .openerp .oe_form .oe_form_button_box {
1887   width: 200px;
1888   text-align: center;
1889 }
1890 .openerp .oe_form .oe_form_group {
1891   margin: 5px 0px 5px 0px;
1892 }
1893 .openerp .oe_form .oe_form_group_cell .oe_kanban_view {
1894   position: static;
1895 }
1896 .openerp .oe_form .oe_form_button.oe_button {
1897   height: 22px;
1898   white-space: nowrap;
1899 }
1900 .openerp .oe_form .oe_form_button.oe_button span {
1901   position: relative;
1902   vertical-align: top;
1903 }
1904 .openerp .oe_form .oe_form_button > img {
1905   vertical-align: -3px;
1906   padding: 0 2px;
1907 }
1908 .openerp .oe_form .oe-binary-file-set {
1909   overflow: hidden;
1910   position: relative;
1911   display: inline-block;
1912   width: 45px;
1913   height: 30px;
1914 }
1915 .openerp .oe_form input.oe-binary-file {
1916   z-index: 0;
1917   line-height: 0;
1918   font-size: 12px;
1919   position: absolute;
1920   top: 1px;
1921   right: 10px;
1922   opacity: 0;
1923   filter: alpha(opacity=0);
1924   -ms-filter: "alpha(opacity=0)";
1925   margin: 0;
1926   padding: 0;
1927 }
1928 .openerp .oe_form .oe_binary_image {
1929   display: inline-block;
1930 }
1931 .openerp .oe_horizontal_border {
1932   border-bottom: 1px solid black;
1933 }
1934 .openerp .oe_horizontal_separator {
1935   font-weight: bold;
1936   font-size: 20px;
1937   margin: 20px 0px 10px 0px;
1938   color: #aaaabb;
1939 }
1940 .openerp .oe_horizontal_separator:empty {
1941   height: 5px;
1942 }
1943 .openerp .oe_vertical_separator {
1944   border-left: 1px solid #666666;
1945   padding: 0 4px 0 4px;
1946 }
1947 .openerp .oe_form_notebook {
1948   margin: 8px 0;
1949   padding: 0 8px;
1950   list-style: none;
1951   zoom: 1;
1952 }
1953 .openerp .oe_form_notebook:before, .openerp .oe_form_notebook:after {
1954   display: table;
1955   content: "";
1956   zoom: 1;
1957 }
1958 .openerp .oe_form_notebook:after {
1959   clear: both;
1960 }
1961 .openerp .oe_form_notebook > li {
1962   float: left;
1963 }
1964 .openerp .oe_form_notebook > li > a {
1965   display: block;
1966   color: #4c4c4c;
1967 }
1968 .openerp .oe_form_notebook {
1969   border-color: #dddddd;
1970   border-style: solid;
1971   border-width: 0 0 1px;
1972 }
1973 .openerp .oe_form_notebook > li {
1974   position: relative;
1975   margin-bottom: -1px;
1976 }
1977 .openerp .oe_form_notebook > li > a {
1978   padding: 0 12px;
1979   margin-right: 2px;
1980   line-height: 30px;
1981   border: 1px solid transparent;
1982   -moz-border-radius: 4px 4px 0 0;
1983   -webkit-border-radius: 4px 4px 0 0;
1984   border-radius: 4px 4px 0 0;
1985 }
1986 .openerp .oe_form_notebook > li > a:hover {
1987   text-decoration: none;
1988   background-color: #eeeeee;
1989   border-color: #eeeeee #eeeeee #dddddd;
1990 }
1991 .openerp .oe_form_notebook > li.ui-state-active > a, .openerp .oe_form_notebook > li.ui-state-active > a:hover {
1992   background-color: white;
1993   border: 1px solid #dddddd;
1994   border-bottom-color: transparent;
1995   cursor: default;
1996 }
1997 .openerp .oe_form_notebook_page {
1998   padding: 0;
1999 }
2000 .openerp div.ui-tabs {
2001   padding: 3px 0px 3px 0px;
2002 }
2003 .openerp .ui-tabs-hide {
2004   display: none;
2005 }
2006 .openerp .oe_form .oe_form_field_progressbar {
2007   display: inline-block;
2008   min-width: 70px;
2009 }
2010 .openerp .oe_form .oe_form_field_progressbar.ui-progressbar {
2011   height: 22px;
2012   font-size: 10px;
2013   -moz-box-sizing: border-box;
2014   -webkit-box-sizing: border-box;
2015   -ms-box-sizing: border-box;
2016   box-sizing: border-box;
2017   border: 1px solid #999999;
2018   -moz-border-radius: 3px;
2019   -webkit-border-radius: 3px;
2020   border-radius: 3px;
2021   background: white;
2022   min-width: 50px;
2023 }
2024 .openerp .oe_form .oe_form_field_progressbar.ui-progressbar span {
2025   position: absolute;
2026   margin-left: 10px;
2027   font-weight: bold;
2028 }
2029 .openerp .oe_form .oe_form_field_progressbar.ui-progressbar .ui-widget-header {
2030   background: #cccccc url(/web/static/lib/jquery.ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
2031 }
2032 .openerp .oe_form .oe_view_manager_header2 td {
2033   padding: 0px 8px;
2034   line-height: 16px;
2035 }
2036 .openerp .oe_form .oe_view_manager_header2 td .oe_i {
2037   font-size: 13px;
2038 }
2039 .openerp .oe_form .oe_view_manager_header2 td .oe_pager_group {
2040   height: auto;
2041   line-height: 16px;
2042 }
2043 .openerp .oe_form .oe_view_manager_header2 td .oe_pager_group li {
2044   height: auto;
2045   line-height: 16px;
2046 }
2047 .openerp .oe-select-create-popup-view-form > .oe_formview > .oe_form_pager {
2048   display: none;
2049 }
2050 .openerp .oe_form td.oe_form_group_cell_label {
2051   border-right: 1px solid #dddddd;
2052   padding: 2px 0px 2px 0px;
2053 }
2054 .openerp .oe_form td.oe_form_group_cell_label label {
2055   line-height: 18px;
2056   display: block;
2057   min-width: 120px;
2058 }
2059 .openerp .oe_form td.oe_form_group_cell + .oe_form_group_cell {
2060   padding-left: 8px;
2061 }
2062 .openerp .oe_form .oe_form_subtotal_footer {
2063   float: right;
2064 }
2065 .openerp .oe_form .oe_form_subtotal_footer > div {
2066   text-align: right;
2067   padding: 3px;
2068 }
2069 .openerp .oe_form .oe_form_subtotal_footer label {
2070   font-weight: normal !important;
2071 }
2072 .openerp .oe_form .oe_form_subtotal_footer span {
2073   display: inline-block;
2074   min-width: 80px;
2075   text-align: right;
2076 }
2077 .openerp .oe_form .oe_form_subtotal_footer .oe_form_subtotal_footer_separator {
2078   border-top: 1px solid #cacaca;
2079   font-size: 120%;
2080   font-weight: bold;
2081 }
2082 .openerp .oe_form .oe_form_subtotal_footer .oe_form_subtotal_footer_separator label {
2083   font-weight: bold !important;
2084 }
2085 .openerp .oe-listview-content {
2086   width: 100%;
2087 }
2088 .openerp .oe-listview-content > thead {
2089   border-bottom: 2px solid #cacaca;
2090   background: #eeeeee;
2091   vertical-align: top;
2092 }
2093 .openerp .oe-listview-content > thead td, .openerp .oe-listview-content > thead th {
2094   padding: 3px 6px;
2095   line-height: 18px;
2096 }
2097 .openerp .oe-listview-content > thead th:after {
2098   content: "";
2099   float: right;
2100   margin-top: 7px;
2101   border-width: 0 4px 4px;
2102   border-style: solid;
2103   border-color: black transparent;
2104   visibility: hidden;
2105 }
2106 .openerp .oe-listview-content > thead th.sortup:after {
2107   visibility: visible;
2108   filter: alpha(opacity=60);
2109   opacity: 0.6;
2110 }
2111 .openerp .oe-listview-content > thead th.sortdown:after {
2112   border-bottom: none;
2113   border-left: 4px solid transparent;
2114   border-right: 4px solid transparent;
2115   border-top: 4px solid black;
2116   visibility: visible;
2117   -moz-box-shadow: none;
2118   -webkit-box-shadow: none;
2119   -box-shadow: none;
2120   filter: alpha(opacity=60);
2121   opacity: 0.6;
2122 }
2123 .openerp .oe-listview-content > tbody {
2124   cursor: pointer;
2125   background: white;
2126 }
2127 .openerp .oe-listview-content > tbody > tr {
2128   border-top: 1px solid #dddddd;
2129 }
2130 .openerp .oe-listview-content > tbody > tr > td.oe-field-cell {
2131   padding: 3px 6px;
2132 }
2133 .openerp .oe-listview-content > tbody > tr > td, .openerp .oe-listview-content > tbody > tr > th {
2134   line-height: 18px;
2135 }
2136 .openerp .oe-listview-content > tbody > tr > td > button, .openerp .oe-listview-content > tbody > tr > th > button {
2137   border: none;
2138   background: transparent;
2139   padding: 0;
2140   -moz-box-shadow: none;
2141   -webkit-box-shadow: none;
2142   -box-shadow: none;
2143 }
2144 .openerp .oe-listview-content > tbody > tr > td.oe_list_checkbox:first-child, .openerp .oe-listview-content > tbody > tr th.oe_list_checkbox:first-child {
2145   width: 17px;
2146 }
2147 .openerp .oe-listview-content > tbody > tr > td.oe_list_checkbox:first-child:after, .openerp .oe-listview-content > tbody > tr th.oe_list_checkbox:first-child:after {
2148   border-width: 0;
2149 }
2150 .openerp .oe-listview-content > tbody > tr > td.oe_number {
2151   text-align: right !important;
2152 }
2153 .openerp .oe-listview-content > tbody > tr:nth-child(odd) {
2154   background-color: #f0f0fa;
2155   background-color: #f0f0fa;
2156   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
2157   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
2158   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
2159   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
2160   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
2161   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
2162 }
2163 .openerp .oe-listview-content > tfoot {
2164   border-top: 2px solid #cacaca;
2165   border-bottom: 1px solid #cacaca;
2166   background: #eeeeee;
2167   font-weight: bold;
2168 }
2169 .openerp .oe-listview-content > tbody tr:hover td, .openerp .oe-listview-content tbody tr:hover th {
2170   background-color: #eeeeee;
2171   background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dedede));
2172   background-image: -webkit-linear-gradient(top, #eeeeee, #dedede);
2173   background-image: -moz-linear-gradient(top, #eeeeee, #dedede);
2174   background-image: -ms-linear-gradient(top, #eeeeee, #dedede);
2175   background-image: -o-linear-gradient(top, #eeeeee, #dedede);
2176   background-image: linear-gradient(to bottom, #eeeeee, #dedede);
2177 }
2178 .openerp .oe-listview-content .numeric {
2179   text-align: right;
2180   width: 82px;
2181 }
2182 .openerp .oe-listview-content .numeric input {
2183   text-align: right;
2184 }
2185 .openerp .oe_trad_field.touched {
2186   border: 1px solid green !important;
2187 }
2188 .openerp.oe_tooltip {
2189   font-size: 12px;
2190 }
2191 .openerp.oe_tooltip .oe_tooltip_string {
2192   color: #ffdd55;
2193   font-weight: bold;
2194   font-size: 13px;
2195 }
2196 .openerp.oe_tooltip .oe_tooltip_help {
2197   white-space: pre-wrap;
2198 }
2199 .openerp.oe_tooltip .oe_tooltip_technical {
2200   padding: 0 0 4px 0;
2201   margin: 5px 0 0 15px;
2202 }
2203 .openerp.oe_tooltip .oe_tooltip_technical li {
2204   list-style: circle;
2205 }
2206 .openerp.oe_tooltip .oe_tooltip_technical_title {
2207   font-weight: bold;
2208 }
2209 .openerp .oe_layout_debugging .oe_form_group {
2210   outline: 2px dashed green;
2211 }
2212 .openerp .oe_layout_debugging .oe_form_group_cell {
2213   outline: 1px solid blue;
2214 }
2215 .openerp .oe_layout_debugging .oe_form_group:hover, .openerp .oe_layout_debugging .oe_form_group_cell:hover {
2216   outline-color: red;
2217 }
2218 .openerp .oe_layout_debugging .oe_form_group_row_incomplete > td:last-child:after {
2219   content: "[Incomplete Row]";
2220   background: red;
2221   padding: 2px;
2222   font-weight: bold;
2223   color: white;
2224   float: right;
2225 }
2226 .openerp .oe_layout_debugging .oe_form_group_row_incomplete.oe_form_group_row_newline > td:last-child:after {
2227   content: "[newline]";
2228 }
2229 .openerp .oe_debug_view {
2230   float: left;
2231 }
2232 .openerp .oe_debug_view_log {
2233   font-size: 95%;
2234 }
2235 .openerp .oe_debug_view_log label {
2236   display: block;
2237   width: 49%;
2238   text-align: right;
2239   float: left;
2240   font-weight: bold;
2241   color: #000099;
2242 }
2243 .openerp .oe_debug_view_log span {
2244   display: block;
2245   width: 49%;
2246   float: right;
2247   color: #333333;
2248 }
2249
2250 .kitten-mode-activated {
2251   background-image: url(http://placekitten.com/g/1365/769);
2252   background-size: cover;
2253   background-attachment: fixed;
2254 }
2255 .kitten-mode-activated > * {
2256   opacity: 0.7;
2257 }
2258
2259 .openerp .oe_form_field_many2one td:first-child {
2260   position: relative;
2261 }
2262 .openerp .oe_form_field_many2one span.oe-m2o-drop-down-button {
2263   position: absolute;
2264   top: 3px;
2265   right: 2px;
2266 }