From 61473fe8a999f45b941cfb5947d66fa1f100b727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=96=C2=96AsTroLog?= Date: Sat, 16 Dec 2023 20:47:27 +0000 Subject: [PATCH] SA-216 Add coming soon --- .../Pages/Index.razor | 41 ++++++++----------- .../Pages/Index.razor.cs | 1 - .../Pages/Index.razor.css | 34 +++++++++++++++ 3 files changed, 51 insertions(+), 25 deletions(-) diff --git a/ShoppingAssistantWebClient.Web/Pages/Index.razor b/ShoppingAssistantWebClient.Web/Pages/Index.razor index 18f5001..f2cadad 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Index.razor +++ b/ShoppingAssistantWebClient.Web/Pages/Index.razor @@ -11,18 +11,18 @@ -
+
New chat
What you're looking for
-
+
-
- Gift -
+ +
@@ -53,13 +53,13 @@
- + Send message
- +
@@ -73,11 +73,11 @@ var choose = "Product"; function switchGift() { - choose_gift.style.backgroundColor = "#0052CC"; - choose_product.style.backgroundColor = "transparent"; - switchGi.style.color = "white"; - switchProd.style.color = "#202124"; - choose = "Gift"; + // choose_gift.style.backgroundColor = "#0052CC"; + // choose_product.style.backgroundColor = "transparent"; + // switchGi.style.color = "white"; + //switchProd.style.color = "#202124"; + //choose = "Gift"; } @@ -91,17 +91,10 @@ } function myJavaScriptFunction(wishlistId) { - UpdateMenu(wishlistId); + UpdateMenu(wishlistId); } - - - - - - - document.getElementById('choose_gift').addEventListener('click', switchGift); document.getElementById('choose_product').addEventListener('click', switchProduct); @@ -113,14 +106,14 @@ private void Сhoose_product() { selectedChoice = "Product"; } - private void Сhoose_gift() { + private void Сhoose_gift() { selectedChoice = "Gift"; } private async Task UpdateSideMenu(string wishlistId) { - await JSRuntime.InvokeVoidAsync("myJavaScriptFunction", wishlistId); + await JSRuntime.InvokeVoidAsync("myJavaScriptFunction", wishlistId); } diff --git a/ShoppingAssistantWebClient.Web/Pages/Index.razor.cs b/ShoppingAssistantWebClient.Web/Pages/Index.razor.cs index c6cd6ab..7fd361c 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Index.razor.cs +++ b/ShoppingAssistantWebClient.Web/Pages/Index.razor.cs @@ -26,7 +26,6 @@ namespace ShoppingAssistantWebClient.Web.Pages private MessageCreateDto messageCreateDto; private string inputValue = ""; - private async Task CreateNewChat() { try diff --git a/ShoppingAssistantWebClient.Web/Pages/Index.razor.css b/ShoppingAssistantWebClient.Web/Pages/Index.razor.css index 6459264..863df0f 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Index.razor.css +++ b/ShoppingAssistantWebClient.Web/Pages/Index.razor.css @@ -159,7 +159,41 @@ transition: 0.8s; color: #202124; } +button::before { + content: attr(text); +} + +button:hover::before { + content: attr(hover-text); +} +button { + outline: none; /* Для синий ободки */ + border: 0; + background: transparent; +} +.message { + right: 0; + position: absolute; + border-radius: 0.6em; + margin: 0.3125em; + width: calc(50% - 0.625em); + height: calc(100% - 0.625em); + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + transition: 0.8s; + color: #202124; + padding: 4px; /* Добавьте подходящий отступ, если необходимо */ +} +.hidden { + display: none; +} + +.show { + display: block; +} .chat_message { position: relative; overflow-y: auto;