Faris Ansari | 519cc09 | 2017-08-10 11:22:03 +0530 | [diff] [blame^] | 1 | @import "../../../../frappe/frappe/public/less/variables.less"; |
| 2 | |
| 3 | .pos { |
| 4 | // display: flex; |
| 5 | padding: 15px; |
| 6 | } |
| 7 | |
| 8 | .customer-container { |
| 9 | padding: 0 15px; |
| 10 | // flex: 2; |
| 11 | display: inline-block; |
| 12 | width: 39%; |
| 13 | vertical-align: top; |
| 14 | } |
| 15 | |
| 16 | .item-container { |
| 17 | padding: 0 15px; |
| 18 | // flex: 3; |
| 19 | display: inline-block; |
| 20 | width: 60%; |
| 21 | vertical-align: top; |
| 22 | } |
| 23 | |
| 24 | .item-group-field { |
| 25 | margin-left: 15px; |
| 26 | } |
| 27 | |
| 28 | .cart-wrapper { |
| 29 | .list-item__content:not(:first-child) { |
| 30 | justify-content: flex-end; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | .cart-items { |
| 35 | height: 200px; |
| 36 | overflow: auto; |
| 37 | |
| 38 | // .list-item { |
| 39 | // background-color: @light-yellow; |
| 40 | // transition: background-color 1s linear; |
| 41 | // } |
| 42 | |
| 43 | // .list-item.added { |
| 44 | // background-color: white; |
| 45 | // } |
| 46 | } |
| 47 | |
| 48 | .fields { |
| 49 | display: flex; |
| 50 | } |
| 51 | |
| 52 | .pos-items-wrapper { |
| 53 | max-height: 480px; |
| 54 | overflow: auto; |
| 55 | } |
| 56 | |
| 57 | .pos-item-wrapper { |
| 58 | height: 250px; |
| 59 | } |
| 60 | |
| 61 | .image-view-container { |
| 62 | display: block; |
| 63 | } |
| 64 | |
| 65 | .image-view-container .image-field { |
| 66 | height: auto; |
| 67 | } |
| 68 | |
| 69 | .empty-state { |
| 70 | height: 100%; |
| 71 | position: relative; |
| 72 | |
| 73 | span { |
| 74 | position: absolute; |
| 75 | color: @text-muted; |
| 76 | font-size: @text-medium; |
| 77 | top: 50%; |
| 78 | left: 50%; |
| 79 | transform: translate(-50%, -50%); |
| 80 | } |
| 81 | } |