diff --git a/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-detail/orders-detail.component.html b/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-detail/orders-detail.component.html index ccc89836d..9a4b1ae44 100644 --- a/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-detail/orders-detail.component.html +++ b/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-detail/orders-detail.component.html @@ -65,7 +65,7 @@
-
$ XX
+
$ {{order.total}}
diff --git a/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.html b/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.html index 0da0cdb88..bf5b7ce79 100644 --- a/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.html +++ b/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.html @@ -1,77 +1,79 @@ -
- +
+
-
+
-

SHIPPING ADDRESS

-
-
-
- - -
Required field.
+
+

SHIPPING ADDRESS

+
+
+
+ + +
Required field.
+
-
-
-
- - -
Required field.
+
+
+ + +
Required field.
+
-
-
-
- - -
Required field.
+
+
+ + +
Required field.
+
-
-
-
- - -
Required field.
+
+
+ + +
Required field.
+
-
-
-

PAYMENT METHOD

-
-
-
- - -
Required field.
+
+
+

PAYMENT METHOD

+
+
+
+ + +
Required field.
+
-
-
-
- - -
Required field.
+
+
+ + +
Required field.
+
-
-
-
- - -
Required field.
+
+
+ + +
Required field.
+
-
-
-
- - -
Required field.
+
+
+ + +
Required field.
+
-
-
-
-
+
+
+
@@ -80,9 +82,6 @@ - - @@ -113,20 +111,22 @@
- - BRAND PRICE @@ -99,7 +98,6 @@
{{item.productname}}ROSLYN $ {{item.unitprice}} {{item.units}} $ {{item.units * item.unitprice}}
TOTAL
- {{order.total}} + $ {{order.total}}
-
-
-
-
-
- +
+
+
+
+
+
+ +
-
+
\ No newline at end of file diff --git a/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.scss b/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.scss index 2376a4780..36d400a06 100644 --- a/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.scss +++ b/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.scss @@ -1,42 +1,34 @@ @import '../../_variables.scss'; -.esh-orders-new { +.esh-orders_new { min-height: 80vh; + $header-height: 4rem; + &-header { background-color: #00A69C; - height: 63px; - - li { - list-style: none; - display: inline; - opacity: 0.5; - margin-top: 25px; - margin-left: 10px; - float: right; - cursor: pointer; - color: white; - } - - li a { - color: white; - } + height: $header-height; + } - &-back { - float: left !important; - margin-top: 20px !important; - text-transform: uppercase; - } + &-back { + color: rgba($color-foreground-brighter, .4); + line-height: $header-height; + text-transform: uppercase; + text-decoration: none; + transition: color $animation-speed-default; - li a:hover { - text-decoration: none; + &:hover { + color: $color-foreground-brighter; + transition: color $animation-speed-default; } } - &-container { - min-height: 70vh; - padding-top: 40px; - margin-bottom: 30px; + &-section { + padding: 1rem 0; + + &--right { + text-align: right; + } } &-placeOrder { @@ -57,3 +49,25 @@ font-weight: normal; } } + + +@media screen and (min-width: 992px) { + .form-input { + width: 360px; + max-width: 360px; + } +} + +.form-input { + border-radius: 0; + padding: 10px; + height: 45px; +} + +.form-input-small { + max-width: 100px!important; +} + +.form-input-medium { + width: 150px!important; +} diff --git a/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.ts b/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.ts index 276c4bec3..e218216c9 100644 --- a/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.ts +++ b/src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-new/orders-new.component.ts @@ -6,7 +6,7 @@ import { FormGroup, FormBuilder, Validators } from '@angular/forms'; import { Router } from '@angular/router'; @Component({ - selector: 'esh-orders-new .esh-orders-new', + selector: 'esh-orders_new', styleUrls: ['./orders-new.component.scss'], templateUrl: './orders-new.component.html' })