File tree 1 file changed +38
-0
lines changed
assets/src/frontend/components
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 8
8
</div >
9
9
<div class =" content" >
10
10
<table class =" sale-summary" >
11
+ <thead >
12
+ <tr class =" item-header" >
13
+ <th class =" name" >{{ __( 'Product', 'wepos' ) }}</th >
14
+ <th class =" quantity" >{{ __( 'Quantity', 'wepos' ) }}</th >
15
+ <th class =" price" >{{ __( 'Total', 'wepos' ) }}</th >
16
+ </tr >
17
+ <tr class =" divider" >
18
+ <td colspan =" 3" ></td >
19
+ </tr >
20
+ </thead >
11
21
<tbody >
12
22
<tr v-for =" item in printdata.line_items" >
13
23
<td class =" name" >
@@ -165,6 +175,34 @@ export default {
165
175
table .sale-summary {
166
176
width : 100% ;
167
177
border-collapse : collapse ;
178
+
179
+ thead {
180
+ tr {
181
+ th {
182
+ padding : 0 10px 8px ;
183
+
184
+ & .name {
185
+ width : 60% ;
186
+ text-align : left ;
187
+ }
188
+
189
+ & .quantity {
190
+ width : 12% ;
191
+ text-align : center ;
192
+ }
193
+
194
+ & .price {
195
+ text-align : right ;
196
+ }
197
+ }
198
+
199
+ & .divider {
200
+ border-bottom : 1px dashed #b7b7b7 ;
201
+ color : #b5b5b5 ;
202
+ }
203
+ }
204
+ }
205
+
168
206
tbody {
169
207
tr {
170
208
td {
You can’t perform that action at this time.
0 commit comments