From afb4534acc7af6ff94611ab98b70f1eae4b40299 Mon Sep 17 00:00:00 2001
From: Hetal Kapadia <31979831+hetal-kapadia@users.noreply.github.com>
Date: Mon, 18 Jan 2021 03:13:12 -0800
Subject: [PATCH] Fixes #1581: Fixed total decimal place issue and User hover
menu display/usability issue. (#1582)
---
src/Web/WebMVC/Views/Order/Detail.cshtml | 2 +-
src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml | 2 +-
.../WebMVC/wwwroot/css/shared/components/identity/identity.css | 1 +
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/Web/WebMVC/Views/Order/Detail.cshtml b/src/Web/WebMVC/Views/Order/Detail.cshtml
index 6b7c0b46e..757700793 100644
--- a/src/Web/WebMVC/Views/Order/Detail.cshtml
+++ b/src/Web/WebMVC/Views/Order/Detail.cshtml
@@ -84,7 +84,7 @@
-
+ $ @Model.Total.ToString("N2")
diff --git a/src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml b/src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml
index 7531494a6..19e1bd9b1 100644
--- a/src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml
+++ b/src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml
@@ -64,7 +64,7 @@
-
+ $ @Model.Total().ToString("N2")
diff --git a/src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css b/src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css
index cd386000c..0212a345e 100644
--- a/src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css
+++ b/src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css
@@ -37,6 +37,7 @@
right: 0;
top: 2.5rem;
transition: height 0.35s;
+ z-index: 1;
}
.esh-identity:hover .esh-identity-drop {