Browse Source
Fixes #1581: Fixed total decimal place issue and User hover menu display/usability issue. (#1582)
pull/1583/head
Hetal Kapadia
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
3 additions and
2 deletions
-
src/Web/WebMVC/Views/Order/Detail.cshtml
-
src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml
-
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css
|
|
@ -84,7 +84,7 @@ |
|
|
|
|
|
|
|
<article class="esh-orders_detail-items row"> |
|
|
|
<section class="esh-orders_detail-item col-9"></section> |
|
|
|
<section class="esh-orders_detail-item esh-orders_detail-item--mark col-2">$ @Model.Total</section> |
|
|
|
<section class="esh-orders_detail-item esh-orders_detail-item--mark col-2">$ @Model.Total.ToString("N2")</section> |
|
|
|
</article> |
|
|
|
</section> |
|
|
|
</div> |
|
|
|
|
|
@ -64,7 +64,7 @@ |
|
|
|
|
|
|
|
<article class="esh-basket-items row"> |
|
|
|
<section class="esh-basket-item col-10"></section> |
|
|
|
<section class="esh-basket-item esh-basket-item--mark col-2">$ @Model.Total()</section> |
|
|
|
<section class="esh-basket-item esh-basket-item--mark col-2">$ @Model.Total().ToString("N2")</section> |
|
|
|
</article> |
|
|
|
|
|
|
|
<article class="esh-basket-items row"> |
|
|
|
|
|
@ -37,6 +37,7 @@ |
|
|
|
right: 0; |
|
|
|
top: 2.5rem; |
|
|
|
transition: height 0.35s; |
|
|
|
z-index: 1; |
|
|
|
} |
|
|
|
|
|
|
|
.esh-identity:hover .esh-identity-drop { |
|
|
|