|
13 | 13 | <div class="container"> |
14 | 14 | <section class="esh-orders_detail-section"> |
15 | 15 | <article class="esh-orders_detail-titles row"> |
16 | | - <section class="esh-orders_detail-title col-xs-3">Order number</section> |
17 | | - <section class="esh-orders_detail-title col-xs-3">Date</section> |
18 | | - <section class="esh-orders_detail-title col-xs-3">Total</section> |
19 | | - <section class="esh-orders_detail-title col-xs-3">Status</section> |
| 16 | + <section class="esh-orders_detail-title col-3">Order number</section> |
| 17 | + <section class="esh-orders_detail-title col-3">Date</section> |
| 18 | + <section class="esh-orders_detail-title col-3">Total</section> |
| 19 | + <section class="esh-orders_detail-title col-3">Status</section> |
20 | 20 | </article> |
21 | 21 |
|
22 | 22 | <article class="esh-orders_detail-items row"> |
23 | | - <section class="esh-orders_detail-item col-xs-3">@Model.OrderNumber</section> |
24 | | - <section class="esh-orders_detail-item col-xs-3">@Model.Date</section> |
25 | | - <section class="esh-orders_detail-item col-xs-3">$@Model.Total</section> |
26 | | - <section class="esh-orders_detail-title col-xs-3">@Model.Status</section> |
| 23 | + <section class="esh-orders_detail-item col-3">@Model.OrderNumber</section> |
| 24 | + <section class="esh-orders_detail-item col-3">@Model.Date</section> |
| 25 | + <section class="esh-orders_detail-item col-3">$@Model.Total</section> |
| 26 | + <section class="esh-orders_detail-title col-3">@Model.Status</section> |
27 | 27 | </article> |
28 | 28 | </section> |
29 | 29 |
|
30 | 30 | <section class="esh-orders_detail-section"> |
31 | 31 | <article class="esh-orders_detail-titles row"> |
32 | | - <section class="esh-orders_detail-title col-xs-12">Description</section> |
| 32 | + <section class="esh-orders_detail-title col-12">Description</section> |
33 | 33 | </article> |
34 | 34 |
|
35 | 35 | <article class="esh-orders_detail-items row"> |
36 | | - <section class="esh-orders_detail-item col-xs-12">@Model.Description</section> |
| 36 | + <section class="esh-orders_detail-item col-12">@Model.Description</section> |
37 | 37 | </article> |
38 | 38 | </section> |
39 | 39 |
|
40 | 40 | <section class="esh-orders_detail-section"> |
41 | 41 | <article class="esh-orders_detail-titles row"> |
42 | | - <section class="esh-orders_detail-title col-xs-12">Shiping address</section> |
| 42 | + <section class="esh-orders_detail-title col-12">Shiping address</section> |
43 | 43 | </article> |
44 | 44 |
|
45 | 45 | <article class="esh-orders_detail-items row"> |
46 | | - <section class="esh-orders_detail-item col-xs-12">@Model.Street</section> |
| 46 | + <section class="esh-orders_detail-item col-12">@Model.Street</section> |
47 | 47 | </article> |
48 | 48 |
|
49 | 49 | <article class="esh-orders_detail-items row"> |
50 | | - <section class="esh-orders_detail-item col-xs-12">@Model.City</section> |
| 50 | + <section class="esh-orders_detail-item col-12">@Model.City</section> |
51 | 51 | </article> |
52 | 52 |
|
53 | 53 | <article class="esh-orders_detail-items row"> |
54 | | - <section class="esh-orders_detail-item col-xs-12">@Model.Country</section> |
| 54 | + <section class="esh-orders_detail-item col-12">@Model.Country</section> |
55 | 55 | </article> |
56 | 56 | </section> |
57 | 57 |
|
58 | 58 | <section class="esh-orders_detail-section"> |
59 | 59 | <article class="esh-orders_detail-titles row"> |
60 | | - <section class="esh-orders_detail-title col-xs-12">ORDER DETAILS</section> |
| 60 | + <section class="esh-orders_detail-title col-12">ORDER DETAILS</section> |
61 | 61 | </article> |
62 | 62 |
|
63 | 63 | @for (int i = 0; i < Model.OrderItems.Count; i++) |
|
67 | 67 | <section class="esh-orders_detail-item col-md-4 hidden-md-down"> |
68 | 68 | <img class="esh-orders_detail-image" src="@item.PictureUrl"> |
69 | 69 | </section> |
70 | | - <section class="esh-orders_detail-item esh-orders_detail-item--middle col-xs-4">@item.ProductName</section> |
71 | | - <section class="esh-orders_detail-item esh-orders_detail-item--middle col-xs-1">$ @item.UnitPrice.ToString("N2")</section> |
72 | | - <section class="esh-orders_detail-item esh-orders_detail-item--middle col-xs-1">@item.Units</section> |
73 | | - <section class="esh-orders_detail-item esh-orders_detail-item--middle col-xs-2">$ @Math.Round(item.Units * item.UnitPrice, 2).ToString("N2")</section> |
| 70 | + <section class="esh-orders_detail-item esh-orders_detail-item--middle col-4">@item.ProductName</section> |
| 71 | + <section class="esh-orders_detail-item esh-orders_detail-item--middle col-1">$ @item.UnitPrice.ToString("N2")</section> |
| 72 | + <section class="esh-orders_detail-item esh-orders_detail-item--middle col-1">@item.Units</section> |
| 73 | + <section class="esh-orders_detail-item esh-orders_detail-item--middle col-2">$ @Math.Round(item.Units * item.UnitPrice, 2).ToString("N2")</section> |
74 | 74 | </article> |
75 | 75 | } |
76 | 76 | </section> |
77 | 77 |
|
78 | 78 | <section class="esh-orders_detail-section esh-orders_detail-section--right"> |
79 | 79 | <article class="esh-orders_detail-titles esh-basket-titles--clean row"> |
80 | | - <section class="esh-orders_detail-title col-xs-9"></section> |
81 | | - <section class="esh-orders_detail-title col-xs-2">TOTAL</section> |
| 80 | + <section class="esh-orders_detail-title col-9"></section> |
| 81 | + <section class="esh-orders_detail-title col-2">TOTAL</section> |
82 | 82 | </article> |
83 | 83 |
|
84 | 84 | <article class="esh-orders_detail-items row"> |
85 | | - <section class="esh-orders_detail-item col-xs-9"></section> |
86 | | - <section class="esh-orders_detail-item esh-orders_detail-item--mark col-xs-2">$ @Model.Total</section> |
| 85 | + <section class="esh-orders_detail-item col-9"></section> |
| 86 | + <section class="esh-orders_detail-item esh-orders_detail-item--mark col-2">$ @Model.Total</section> |
87 | 87 | </article> |
88 | 88 | </section> |
89 | 89 | </div> |
|
0 commit comments