Merge lp:~openerp-dev/openerp-web/trunk-statusbar-folded-chm2 into lp:openerp-web

Proposed by Christophe Matthieu (OpenERP)
Status: Work in progress
Proposed branch: lp:~openerp-dev/openerp-web/trunk-statusbar-folded-chm2
Merge into: lp:openerp-web
Diff against target: 6338 lines (+3383/-2692)
4 files modified
addons/web/static/src/css/base.css (+3307/-2653)
addons/web/static/src/css/base.sass (+23/-22)
addons/web/static/src/js/view_form.js (+40/-16)
addons/web/static/src/xml/base.xml (+13/-1)
To merge this branch: bzr merge lp:~openerp-dev/openerp-web/trunk-statusbar-folded-chm2
Reviewer Review Type Date Requested Status
OpenERP R&D Web Team Pending
Review via email: mp+162080@code.launchpad.net
To post a comment you must log in.

Unmerged revisions

3729. By Christophe Matthieu (OpenERP)

[MERGE] trunk-statusbar-folded-chm

Preview Diff

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