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