blob: ae1c818ef85d83981d1d5ce49fb9e98ffb5c8837 [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 {
Faris Ansariadcb3c62017-03-06 21:02:17 +0530141 width: 24px;
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 Waghchaure56a79742017-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
211.numeric-keypad {
212 border: 1px solid #d1d8dd;
Rohit Waghchaure86ab6a92017-02-24 18:02:50 +0530213 height:69px;
214 width:69px;
215 font-size:20px;
Rohit Waghchauref0c7ba42017-02-28 16:51:17 +0530216 font-weight:200;
217 background-color: #FDFDFD;
218 border-color: #e8e8e8;
Rohit Waghchaure86ab6a92017-02-24 18:02:50 +0530219 margin-left:-4px;
220}
221
222.pos-pay {
223 height:69px;
224 width:69px;
225 font-size:17px;
226 font-weight:200;
227 margin-left:-4px;
Rohit Waghchauref0c7ba42017-02-28 16:51:17 +0530228}
229
Faris Ansari1f261a82017-03-06 18:01:58 +0530230
Rohit Waghchauref0c7ba42017-02-28 16:51:17 +0530231.numeric-keypad {
Faris Ansari1f261a82017-03-06 18:01:58 +0530232 // border: 1px solid #d1d8dd;
233 height: 60px;
234 width: 60px;
235 font-size: 20px;
236 font-weight: 200;
237 border-radius: 0;
238 background-color: #fff;
239 // background-color: #FDFDFD;
240 // border-color: #e8e8e8;
Rohit Waghchauree30f83a2017-02-24 18:02:50 +0530241 margin-left:-4px;
242}
243
Faris Ansari1f261a82017-03-06 18:01:58 +0530244.numeric_keypad {
245 margin-left: -15px;
246
247 & > .row > button {
248 border: none;
249 border-right: 1px solid @border-color;
250 border-bottom: 1px solid @border-color;
251
252 &:first-child {
253 border-left: 1px solid @border-color;
254 }
255 }
256
257 & > .row:first-child > button {
258 border-top: 1px solid @border-color;
259 }
260}
261
Rohit Waghchauree30f83a2017-02-24 18:02:50 +0530262.pos-pay {
Faris Ansari1f261a82017-03-06 18:01:58 +0530263
264 background-color: @brand-primary;
265 border: none;
266
267 // height:69px;
268 // width:69px;
269 // font-size:17px;
270 // font-weight:200;
271 // margin-left:-4px;
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530272}
273
Faris Ansari8e282c22016-07-24 11:36:19 +0530274.multimode-payments {
275 padding-left: 30px;
276}
277
278.payment-toolbar {
279 padding-right: 30px;
280}
281
rohitwaghchaurec13dbd42017-02-01 18:07:22 +0530282.list-row-head.pos-invoice-list {
283 border-top: 1px solid @border-color;
284}
285
Faris Ansari8e282c22016-07-24 11:36:19 +0530286body[data-route="pos"] .modal-dialog {
287 width: 750px;
288
289 @media (max-width: @screen-xs) {
290 width: auto;
291
292 .modal-content {
293 height: auto;
294 }
295 }
296}
297
298@media (max-width: @screen-xs) {
299 .amount-row h3 {
300 font-size: 15px;
301 }
302 .pos-keyboard-key, .delete-btn {
303 height: 50px;
304 }
305 .multimode-payments {
306 padding-left: 15px;
307 }
308 .payment-toolbar {
309 padding-right: 15px;
310 }
311}
312
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530313.amount-label {
314 font-size: 16px;
315}
316
317.selected-payment-mode {
318 background-color: #FAFBFC;
319 cursor: pointer;
320}
321
322.pos-invoice-list {
323 padding: 15px 10px;
324}
Rohit Waghchaurebaef2622016-08-05 15:41:36 +0530325
326.write_off_amount, .change_amount {
327 margin: 15px;
328 width: 130px;
329}
Neil Trini Lasrado2a9e0f62017-01-09 18:25:43 +0530330
331// assessment tool
332.frappe-control[data-fieldname='result_html'] {
333 overflow: scroll;
334}
335.assessment-result-tool {
336 table-layout: fixed;
337
338 input {
339 width: 100%;
340 border: 0;
341 outline: none;
342 text-align: right;
343 }
344
345 th {
346 white-space: nowrap;
347 overflow: hidden;
348 text-overflow: ellipsis;
349 }
350
351 .total-score, .grade, .score {
352 text-align: right;
353 }
Faris Ansari1f261a82017-03-06 18:01:58 +0530354}
355
356.pos-list-row {
357 display: table;
358 table-layout: fixed;
359 width: 100%;
360 padding: 9px 15px;
361 font-size: 12px;
362 margin: 0px;
363 border-bottom: 1px solid @border-color;
364
365 .cell {
366 display: table-cell;
367 vertical-align: middle;
368 }
369
370 .subject {
371 width: 50%
372 }
373
374 .list-row-checkbox, .list-select-all {
375 margin-right: 7px;
376 }
377}
378
379.pos-bill-header {
380 background-color: #f5f7fa;
381 border: 1px solid @border-color;
Faris Ansari339d9c92017-03-07 18:14:06 +0530382 padding: 13px 15px;
Faris Ansari1f261a82017-03-06 18:01:58 +0530383}
384
Faris Ansari339d9c92017-03-07 18:14:06 +0530385.pos-list-row.active {
Faris Ansari1f261a82017-03-06 18:01:58 +0530386 background-color: @light-yellow;
387}
388
389.totals-area {
390 border-right: 1px solid @border-color;
391 border-left: 1px solid @border-color;
392 margin-bottom: 15px;
393}
394
Faris Ansari339d9c92017-03-07 18:14:06 +0530395// body[data-route="pos"] .page-body {
396// height: ~"calc(100vh - 40px)";
397// }
Faris Ansari1f261a82017-03-06 18:01:58 +0530398
399.item-cart-items {
Faris Ansari339d9c92017-03-07 18:14:06 +0530400 height: ~"calc(100vh - 500px)";
Faris Ansari1f261a82017-03-06 18:01:58 +0530401 overflow: auto;
402 border: 1px solid @border-color;
403 border-top: none;
404
405 .no-items-message {
406 display: flex;
407 align-items: center;
408 justify-content: center;
409 height: 100%;
410 }
411}
412
413.pos .items .pos-list-row:last-child {
414 border-bottom: none;
415}
416
417.pos .form-section-heading {
418 padding: 0;
419}
420
421.pos {
422 overflow: hidden;
423}
424
425.pos .item-list {
426 border-left: 1px solid @border-color;
427 border-right: 1px solid @border-color;
Faris Ansari339d9c92017-03-07 18:14:06 +0530428 height: ~"calc(100vh - 180px)";
429 overflow: auto;
430
431 .image-field {
432 height: 140px;
433 }
434}
435
436.pos-bill-toolbar {
437 margin-top: 10px;
438}
439
440.pos .search-item .form-group {
441 margin: 0;
442}
443
444.item-list-area .pos-bill-header {
445 padding: 5px;
446 padding-left: 15px;
447}
448
449.pos-selected-item-action > .pos-list-row {
450 border: none;
Neil Trini Lasrado2a9e0f62017-01-09 18:25:43 +0530451}