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
parent
commit
afb4534acc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions
  1. +1
    -1
      src/Web/WebMVC/Views/Order/Detail.cshtml
  2. +1
    -1
      src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml
  3. +1
    -0
      src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css

+ 1
- 1
src/Web/WebMVC/Views/Order/Detail.cshtml View File

@ -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>


+ 1
- 1
src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml View File

@ -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">


+ 1
- 0
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css View File

@ -37,6 +37,7 @@
right: 0;
top: 2.5rem;
transition: height 0.35s;
z-index: 1;
}
.esh-identity:hover .esh-identity-drop {


Loading…
Cancel
Save