blob: 16857e3a69f7efc262b52bf65c52f5c298a2186b [file] [log] [blame]
Rushabh Mehta5d0e8de2016-04-11 17:34:25 +05301@import "../../../../frappe/frappe/public/less/variables.less";
2
Anand Doshida858cc2015-02-24 17:50:44 +05303.erpnext-footer {
4 margin: 11px auto;
5 text-align: center;
6}
7
8.show-all-reports {
9 margin-top: 5px;
10 font-size: 11px;
11}
12
13/* toolbar */
14.toolbar-splash {
15 width: 32px;
16 height: 32px;
17 margin: -10px auto;
18}
19
20/* pos */
Rushabh Mehta203cc962016-04-07 15:25:43 +053021
Faris Ansari1f261a82017-03-06 18:01:58 +053022// .pos-item-area {
23// padding: 0px 10px;
24// }
Rushabh Mehta203cc962016-04-07 15:25:43 +053025
26.pos-item-wrapper {
27 padding: 5px;
Anand Doshida858cc2015-02-24 17:50:44 +053028}
29
30.pos-item {
Anand Doshida858cc2015-02-24 17:50:44 +053031 overflow: hidden;
32 text-overflow: ellipsis;
33 cursor: pointer;
34 padding: 5px;
Rushabh Mehta203cc962016-04-07 15:25:43 +053035 padding-bottom: 15px;
Anand Doshida858cc2015-02-24 17:50:44 +053036 border: 1px solid #d1d8dd;
Rushabh Mehta203cc962016-04-07 15:25:43 +053037 margin-bottom: 5px;
Anand Doshida858cc2015-02-24 17:50:44 +053038}
39
40.pos-item-text {
41 padding: 0px 5px;
42}
43
44.pos-item .item-code {
45 margin-bottom: 0px;
46}
47
48.pos-item .no-image {
49 background-color: #fafbfc;
50 border: 1px dashed #d1d8dd;
51}
52
53.pos-item-image {
Rushabh Mehta203cc962016-04-07 15:25:43 +053054 width: 100%;
55 height: 0px;
56 padding: 50% 0;
57 text-align: center;
58 line-height: 0;
Rushabh Mehta5d0e8de2016-04-11 17:34:25 +053059 color: @text-extra-muted;
Rushabh Mehta203cc962016-04-07 15:25:43 +053060 font-size: 30px;
Faris Ansarid2173872016-08-09 14:15:31 +053061 background-size: contain;
Anand Doshida858cc2015-02-24 17:50:44 +053062 border: 1px solid transparent;
Faris Ansarid2173872016-08-09 14:15:31 +053063 background-position: center;
64 background-repeat: no-repeat;
Anand Doshida858cc2015-02-24 17:50:44 +053065}
66
67.pos-item-area {
Faris Ansari1f261a82017-03-06 18:01:58 +053068 // border: 1px solid #d1d8dd;
69 // border-top: none;
Anand Doshida858cc2015-02-24 17:50:44 +053070}
71
72.pos-item-toolbar {
Faris Ansari1f261a82017-03-06 18:01:58 +053073 height: 51px; // remove later
Anand Doshida858cc2015-02-24 17:50:44 +053074 padding: 10px 0px;
75 border-bottom: 1px solid #d1d8dd;
76}
77
Faris Ansari1f261a82017-03-06 18:01:58 +053078// .item-list-area, .list-customers {
79// padding: 15px 0px;
80// overflow-y: scroll;
81// height: ~"calc(100vh - 162px)";
82// }
Anand Doshida858cc2015-02-24 17:50:44 +053083
84.pos-toolbar, .pos-bill-toolbar {
85 padding: 10px 0px;
rohitwaghchaurec13dbd42017-02-01 18:07:22 +053086 // border-bottom: 1px solid #d1d8dd;
Anand Doshida858cc2015-02-24 17:50:44 +053087 height: 51px;
88}
89
90.pos-item-toolbar .form-group {
91 margin-bottom: 0px;
92}
93
94.pos-bill-wrapper {
Faris Ansari1f261a82017-03-06 18:01:58 +053095 // border: 1px solid #d1d8dd;
96 // border-top: none;
97 // margin-right: -1px;
Anand Doshida858cc2015-02-24 17:50:44 +053098}
99
100.pos-bill {
Faris Ansari1f261a82017-03-06 18:01:58 +0530101 // border-top: 1px solid @border-color;
102 // margin-left: -15px;
103 // margin-right: -15px;
Rohit Waghchauree30f83a2017-02-24 18:02:50 +0530104}
105
106.edit-pos-item {
Rohit Waghchauref0c7ba42017-02-28 16:51:17 +0530107 height: 50px;
Rohit Waghchauree30f83a2017-02-24 18:02:50 +0530108 font-size: 14px;
109 border-top: 1px solid @border-color;
Rohit Waghchauref0c7ba42017-02-28 16:51:17 +0530110 padding-top: 12px;
Rohit Waghchauree30f83a2017-02-24 18:02:50 +0530111}
112
113.pos-bill-item:hover {
114 background-color: #f5f7fa;
115 cursor: pointer;
116}
117
Anand Doshida858cc2015-02-24 17:50:44 +0530118.pos-item-qty {
119 display: inline-block;
120}
121
122.pos-qty-row > div {
123 padding: 5px 0px;
124}
125
126.pos-qty-btn {
127 margin-top: 3px;
128 cursor: pointer;
129 font-size: 120%;
130}
131
132.pos .search-area .form-group {
133 max-width: 100% !important;
134}
135
136.pos .tax-table {
137 margin-bottom: 10px;
138}
139
Anand Doshi906c2ba2015-07-17 15:11:24 +0530140.erpnext-icon {
Rushabh Mehta3d2622c2016-04-25 17:53:42 +0530141 width: 24px;ack
Anand Doshi906c2ba2015-07-17 15:11:24 +0530142 margin-right: 0px;
143 margin-top: -3px;
144}
Nabin Hait3769d872015-12-18 13:12:02 +0530145
146.pos .discount-amount-area {
147 .discount-field-col {
148 padding-left: 0px;
149 }
Rushabh Mehta203cc962016-04-07 15:25:43 +0530150
Nabin Hait3769d872015-12-18 13:12:02 +0530151 .input-group {
152 margin-top: 2px;
153 }
Rushabh Mehta3d2622c2016-04-25 17:53:42 +0530154}
155
156.dashboard-list-item {
157 background-color: inherit;
Rushabh Mehtad1eba512016-06-13 17:46:55 +0530158 padding: 5px 0px;
Rushabh Mehta3d2622c2016-04-25 17:53:42 +0530159 border-bottom: 1px solid @border-color;
160}
161
Rushabh Mehtad1eba512016-06-13 17:46:55 +0530162#page-stock-balance .dashboard-list-item {
163 padding: 5px 15px;
164}
165
Rushabh Mehta3d2622c2016-04-25 17:53:42 +0530166.dashboard-list-item:last-child {
167 border-bottom: none;
168}
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530169
170.payment-toolbar {
Faris Ansari8e282c22016-07-24 11:36:19 +0530171 .row {
172 width: 323px;
173 margin: 0 auto;
174 }
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530175}
176
177.payment-mode {
178 cursor: pointer;
179 font-family: sans-serif;
180 font-size: 15px;
181}
182
183.pos-payment-row .col-xs-6 {
Rohit Waghchaurebaef2622016-08-05 15:41:36 +0530184 padding :15px;
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530185}
186
187.pos-payment-row {
188 border-bottom:1px solid #d1d8dd;
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +0530189 margin: 2px 0px 5px 0px;
190 height: 60px;
Rohit Waghchaurebaef2622016-08-05 15:41:36 +0530191 margin-top: 0px;
192 margin-bottom: 0px;
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530193}
194
195.pos-payment-row:hover, .pos-keyboard-key:hover{
196 background-color: #FAFBFC;
197 cursor: pointer;
198}
199
200.pos-keyboard-key, .delete-btn {
201 border: 1px solid #d1d8dd;
Rohit Waghchauref0c7ba42017-02-28 16:51:17 +0530202 height:85px;
203 width:85px;
204 margin:10px 10px;
205 font-size:24px;
206 font-weight:200;
207 background-color: #FDFDFD;
208 border-color: #e8e8e8;
209}
210
Faris Ansari1f261a82017-03-06 18:01:58 +0530211
Rohit Waghchauref0c7ba42017-02-28 16:51:17 +0530212.numeric-keypad {
Faris Ansari1f261a82017-03-06 18:01:58 +0530213 // border: 1px solid #d1d8dd;
214 height: 60px;
215 width: 60px;
216 font-size: 20px;
217 font-weight: 200;
218 border-radius: 0;
219 background-color: #fff;
220 // background-color: #FDFDFD;
221 // border-color: #e8e8e8;
Rohit Waghchauree30f83a2017-02-24 18:02:50 +0530222 margin-left:-4px;
223}
224
Faris Ansari1f261a82017-03-06 18:01:58 +0530225.numeric_keypad {
226 margin-left: -15px;
227
228 & > .row > button {
229 border: none;
230 border-right: 1px solid @border-color;
231 border-bottom: 1px solid @border-color;
232
233 &:first-child {
234 border-left: 1px solid @border-color;
235 }
236 }
237
238 & > .row:first-child > button {
239 border-top: 1px solid @border-color;
240 }
241}
242
Rohit Waghchauree30f83a2017-02-24 18:02:50 +0530243.pos-pay {
Faris Ansari1f261a82017-03-06 18:01:58 +0530244
245 background-color: @brand-primary;
246 border: none;
247
248 // height:69px;
249 // width:69px;
250 // font-size:17px;
251 // font-weight:200;
252 // margin-left:-4px;
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530253}
254
Faris Ansari8e282c22016-07-24 11:36:19 +0530255.multimode-payments {
256 padding-left: 30px;
257}
258
259.payment-toolbar {
260 padding-right: 30px;
261}
262
rohitwaghchaurec13dbd42017-02-01 18:07:22 +0530263.list-row-head.pos-invoice-list {
264 border-top: 1px solid @border-color;
265}
266
Faris Ansari8e282c22016-07-24 11:36:19 +0530267body[data-route="pos"] .modal-dialog {
268 width: 750px;
269
270 @media (max-width: @screen-xs) {
271 width: auto;
272
273 .modal-content {
274 height: auto;
275 }
276 }
277}
278
279@media (max-width: @screen-xs) {
280 .amount-row h3 {
281 font-size: 15px;
282 }
283 .pos-keyboard-key, .delete-btn {
284 height: 50px;
285 }
286 .multimode-payments {
287 padding-left: 15px;
288 }
289 .payment-toolbar {
290 padding-right: 15px;
291 }
292}
293
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530294.amount-label {
295 font-size: 16px;
296}
297
298.selected-payment-mode {
299 background-color: #FAFBFC;
300 cursor: pointer;
301}
302
303.pos-invoice-list {
304 padding: 15px 10px;
305}
Rohit Waghchaurebaef2622016-08-05 15:41:36 +0530306
307.write_off_amount, .change_amount {
308 margin: 15px;
309 width: 130px;
310}
Neil Trini Lasrado2a9e0f62017-01-09 18:25:43 +0530311
312// assessment tool
313.frappe-control[data-fieldname='result_html'] {
314 overflow: scroll;
315}
316.assessment-result-tool {
317 table-layout: fixed;
318
319 input {
320 width: 100%;
321 border: 0;
322 outline: none;
323 text-align: right;
324 }
325
326 th {
327 white-space: nowrap;
328 overflow: hidden;
329 text-overflow: ellipsis;
330 }
331
332 .total-score, .grade, .score {
333 text-align: right;
334 }
Faris Ansari1f261a82017-03-06 18:01:58 +0530335}
336
337.pos-list-row {
338 display: table;
339 table-layout: fixed;
340 width: 100%;
341 padding: 9px 15px;
342 font-size: 12px;
343 margin: 0px;
344 border-bottom: 1px solid @border-color;
345
346 .cell {
347 display: table-cell;
348 vertical-align: middle;
349 }
350
351 .subject {
352 width: 50%
353 }
354
355 .list-row-checkbox, .list-select-all {
356 margin-right: 7px;
357 }
358}
359
360.pos-bill-header {
361 background-color: #f5f7fa;
362 border: 1px solid @border-color;
363}
364
365.pos-bill-item.active {
366 background-color: @light-yellow;
367}
368
369.totals-area {
370 border-right: 1px solid @border-color;
371 border-left: 1px solid @border-color;
372 margin-bottom: 15px;
373}
374
375body[data-route="pos"] .page-body {
376 height: ~"calc(100vh - 40px)";
377}
378
379.item-cart-items {
380 height: 30vh;
381 overflow: auto;
382 border: 1px solid @border-color;
383 border-top: none;
384
385 .no-items-message {
386 display: flex;
387 align-items: center;
388 justify-content: center;
389 height: 100%;
390 }
391}
392
393.pos .items .pos-list-row:last-child {
394 border-bottom: none;
395}
396
397.pos .form-section-heading {
398 padding: 0;
399}
400
401.pos {
402 overflow: hidden;
403}
404
405.pos .item-list {
406 border-left: 1px solid @border-color;
407 border-right: 1px solid @border-color;
Neil Trini Lasrado2a9e0f62017-01-09 18:25:43 +0530408}