blob: 9358f0a24c3204024ec1c74a25b0a474e3036380 [file] [log] [blame]
Faris Ansari519cc092017-08-10 11:22:03 +05301@import "../../../../frappe/frappe/public/less/variables.less";
2
3.pos {
4 // display: flex;
5 padding: 15px;
6}
7
Faris Ansari65c4bd62017-08-10 17:17:34 +05308.cart-container {
Faris Ansari519cc092017-08-10 11:22:03 +05309 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
Faris Ansarif7c7ff42017-08-10 18:28:05 +053024.search-field {
25 width: 60%;
26
27 input::placeholder {
28 font-size: @text-medium;
29 }
30}
31
Faris Ansari519cc092017-08-10 11:22:03 +053032.item-group-field {
Faris Ansarif7c7ff42017-08-10 18:28:05 +053033 width: 40%;
Faris Ansari519cc092017-08-10 11:22:03 +053034 margin-left: 15px;
35}
36
37.cart-wrapper {
38 .list-item__content:not(:first-child) {
39 justify-content: flex-end;
40 }
41}
42
43.cart-items {
44 height: 200px;
45 overflow: auto;
Faris Ansari519cc092017-08-10 11:22:03 +053046}
47
48.fields {
49 display: flex;
50}
51
52.pos-items-wrapper {
53 max-height: 480px;
Faris Ansari5a130872017-08-11 15:49:23 +053054 overflow-y: auto;
55}
56
57.pos-items {
58 overflow: hidden;
Faris Ansari519cc092017-08-10 11:22:03 +053059}
60
61.pos-item-wrapper {
Faris Ansarif7c7ff42017-08-10 18:28:05 +053062 display: flex;
63 flex-direction: column;
64 justify-content: space-between;
Faris Ansari519cc092017-08-10 11:22:03 +053065}
66
67.image-view-container {
68 display: block;
69}
70
71.image-view-container .image-field {
72 height: auto;
73}
74
75.empty-state {
76 height: 100%;
77 position: relative;
78
79 span {
80 position: absolute;
81 color: @text-muted;
82 font-size: @text-medium;
83 top: 50%;
84 left: 50%;
85 transform: translate(-50%, -50%);
86 }
87}